| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace com.steering.pss.plnsaleord.processOrder.entity
- {
- class FrmRclInfoEntity
- {
- 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; }
- }
- }
- }
|