| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PlnSaleOrd.Entity
- {
- public class PreGxInfoEntity
- {
- private string weigthS;
- [Description("排产重量")]
- public string WeigthS
- {
- get { return weigthS; }
- set { weigthS = value; }
- }
- private string numS;
- [Description("排产支数")]
- public string NumS
- {
- get { return numS; }
- set { numS = value; }
- }
- private string plineName;
- [Description("工序产线")]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- 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 processName;
- [Description("工序")]
- public string ProcessName
- {
- get { return processName; }
- set { processName = value; }
- }
- private string proPlanId;
- [Description("订单编号")]
- public string ProPlanId
- {
- get { return proPlanId; }
- set { proPlanId = value; }
- }
- private string gxPlanNo;
- [Description("排产序号")]
- public string GxPlanNo
- {
- get { return gxPlanNo; }
- set { gxPlanNo = value; }
- }
- }
- }
|