| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using Core.Mes.Client.Comm.Attribute;
- namespace Core.StlMes.Client.LgResMgt.Mcms.entity
- {
- public class CmmWeightMatEntityFull : CmmWeightMatEntity
- {
-
- [Description("待入库支")]
- [Nullable(true)]
- [DataLength(22)]
- public string UnInstockNum { get; set; }
- [Description("待入库吨")]
- [Nullable(true)]
- [DataLength(22)]
- public string UnInstockWt { get; set; }
- [Description("清单未入库支")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? TotalNum { get; set; }
- [Description("清单未入库吨")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? TotalWt { get; set; }
- [Description("清单未入库支")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? RemainNum { get; set; }
- [Description("清单未入库吨")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? RemainWt { get; set; }
- [Description("来料清单米单重")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? PerWt { get; set; }
- [Description("入库重量类型")]
- [Nullable(true)]
- [DataLength(40)]
- public string InstoreType { get; set; }
- [Description("预报备注")]
- [Nullable(true)]
- [DataLength(40)]
- public string Memo1 { get; set; }
- public decimal? singleWt { get; set; }
- public bool Chk { get; set; }
- public string LocationNo { get; set; }
- public string LocationName { get; set; }
- public string LaryNo { get; set; }
- public string TypeFlag { get; set; }
- public string OrderFull { get { return OrderNo + "/" + OrderSeq.PadLeft(3, '0'); } }
- }
- }
|