using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.pss.plnsaleord.processOrder.entity { public class FrmJgxsInfoEntity { private string planTimeB; [Description("计划开始时间")] public string PlanTimeB { get { return planTimeB; } set { planTimeB = value; } } private string planTimeE; [Description("计划结束时间")] public string PlanTimeE { get { return planTimeE; } set { planTimeE = value; } } private string repairType; [Description("类型")] public string RepairType { get { return repairType; } set { repairType = value; } } private string groupId; [Description("计划分组代码")] public string GroupId { get { return groupId; } set { groupId = value; } } private string groupPlan; [Description("计划分组")] public string GroupPlan { get { return groupPlan; } set { groupPlan = value; } } private string plineCode; [Description("产线代码")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } private string plineName; [Description("加工产线")] public string PlineName { get { return plineName; } set { plineName = value; } } private double? remainDay1; [Description("剩余天数")] public double? RemainDay1 { get { return remainDay1; } set { remainDay1 = value; } } private double? wgt1; [Description("排产总量(吨)")] public double? Wgt1 { get { return wgt1; } set { wgt1 = value; } } private double? wgt2; [Description("排产总量(吨)")] public double? Wgt2 { get { return wgt2; } set { wgt2 = value; } } private double? wgt3; [Description("排产总量(吨)")] public double? Wgt3 { get { return wgt3; } set { wgt3 = value; } } private double? remainDay2; [Description("剩余天数")] public double? RemainDay2 { get { return remainDay2; } set { remainDay2 = value; } } private double? remainDay3; [Description("剩余天数")] public double? RemainDay3 { get { return remainDay3; } set { remainDay3 = value; } } private double? planWgt1; [Description("计划余量(吨)")] public double? PlanWgt1 { get { return planWgt1; } set { planWgt1 = value; } } private double? planWgt2; [Description("计划余量(吨)")] public double? PlanWgt2 { get { return planWgt2; } set { planWgt2 = value; } } private double? planWgt3; [Description("计划余量(吨)")] public double? PlanWgt3 { get { return planWgt3; } set { planWgt3 = value; } } } }