using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.Mcp.Mch.Mcms.entity { /// /// 数据库表CMM_WEIGHT_RESULT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2020-11-09 /// public class CmmWeightResultEntity { /// /// 磅单号/单据号 /// private string resultNo = ""; /// /// 第一次过磅记录流水号 /// private string recordNo1 = ""; /// /// 第二次过磅记录流水号 /// private string recordNo2 = ""; /// /// 第一次过磅检斤人 /// private string recoder1 = ""; /// /// 第二次过磅检斤人 /// private string recoder2 = ""; /// /// 第一次过磅类型 101- 空车过皮 102-钢坯采购 103-钢坯采购 104-采购辅料 105-修复返厂 106-设备采购 107-其他内转 108-内转钢管 109-内转钢坯 201- 配车单称重 202-废料销售 203-修复出厂 204-其他内转 205-内转钢管 206-内转钢坯 207-空车回皮 /// private string recordType1 = ""; /// /// 第二次过磅类型 101- 空车过皮 102-钢坯采购 103-钢坯采购 104-采购辅料 105-修复返厂 106-设备采购 107-其他内转 108-内转钢管 109-内转钢坯 201- 配车单称重 202-废料销售 203-修复出厂 204-其他内转 205-内转钢管 206-内转钢坯 207-空车回皮 /// private string recordType2 = ""; /// /// 皮重 /// private decimal? tareWt = null; /// /// 毛重 /// private decimal? grossWt = null; /// /// 净重 /// private decimal? netWt = null; /// /// 第一次过磅检斤时间 /// private string recordDate1 = ""; /// /// 第一次过磅检斤时间 /// private string recordDate2 = ""; /// /// 物资名称 /// private string matName = ""; /// /// 称重类型 /// private string matType = ""; /// /// 装车单号 /// private string loadvehicleNo = ""; /// /// 收货单位 /// private string receiveName = ""; /// /// 订货单位 /// private string orderName = ""; /// /// 发货单位 /// private string shippersName = ""; /// /// 运输单位 /// private string transportName = ""; /// /// 备注 /// private string memo = ""; /// /// 作废时间 /// private string deleteDate = ""; /// /// 作废人 /// private string deleteUser = ""; /// /// 第一次过磅磅房编号 /// private string recoderLocation1 = ""; /// /// 第二次过磅磅房编号 /// private string recoderLocation2 = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 实发重 /// private decimal? realWt = null; private decimal? matNum = null; private string carNo = ""; /// /// 磅单号/单据号 /// [Description("磅单号/单据号")] [Nullable(false)] [DataLength(20)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 第一次过磅记录流水号 /// [Description("第一次过磅记录流水号")] [Nullable(true)] [DataLength(20)] public string RecordNo1 { get { return recordNo1; } set { recordNo1 = value; } } /// /// 第二次过磅记录流水号 /// [Description("第二次过磅记录流水号")] [Nullable(true)] [DataLength(20)] public string RecordNo2 { get { return recordNo2; } set { recordNo2 = value; } } /// /// 第一次过磅检斤人 /// [Description("第一次过磅检斤人")] [Nullable(true)] [DataLength(10)] public string Recoder1 { get { return recoder1; } set { recoder1 = value; } } /// /// 第二次过磅检斤人 /// [Description("第二次过磅检斤人")] [Nullable(true)] [DataLength(10)] public string Recoder2 { get { return recoder2; } set { recoder2 = value; } } /// /// 第一次过磅类型 101- 空车过皮 102-钢坯采购 103-钢坯采购 104-采购辅料 105-修复返厂 106-设备采购 107-其他内转 108-内转钢管 109-内转钢坯 201- 配车单称重 202-废料销售 203-修复出厂 204-其他内转 205-内转钢管 206-内转钢坯 207-空车回皮 /// [Description("第一次过磅类型")] [Nullable(true)] [DataLength(2)] public string RecordType1 { get { return recordType1; } set { recordType1 = value; } } /// /// 第二次过磅类型 101- 空车过皮 102-钢坯采购 103-钢坯采购 104-采购辅料 105-修复返厂 106-设备采购 107-其他内转 108-内转钢管 109-内转钢坯 201- 配车单称重 202-废料销售 203-修复出厂 204-其他内转 205-内转钢管 206-内转钢坯 207-空车回皮 /// [Description("第二次过磅类型")] [Nullable(true)] [DataLength(2)] public string RecordType2 { get { return recordType2; } set { recordType2 = value; } } /// /// 皮重 /// [Description("皮重")] [Nullable(true)] [DataLength(8)] public decimal? TareWt { get { return tareWt; } set { tareWt = value; } } /// /// 毛重 /// [Description("毛重")] [Nullable(true)] [DataLength(8)] public decimal? GrossWt { get { return grossWt; } set { grossWt = value; } } /// /// 净重 /// [Description("净重")] [Nullable(true)] [DataLength(8)] public decimal? NetWt { get { return netWt; } set { netWt = value; } } /// /// 第一次过磅检斤时间 /// [Description("第一次过磅检斤时间")] [Nullable(true)] public string RecordDate1 { get { return recordDate1; } set { recordDate1 = value; } } /// /// 第一次过磅检斤时间 /// [Description("第一次过磅检斤时间")] [Nullable(true)] public string RecordDate2 { get { return recordDate2; } set { recordDate2 = value; } } /// /// 物资名称 /// [Description("物资名称")] [Nullable(true)] [DataLength(100)] public string MatName { get { return matName; } set { matName = value; } } /// /// 称重类型 /// [Description("称重类型")] [Nullable(true)] [DataLength(22)] public string MatType { get { return matType; } set { matType = value; } } /// /// 装车单号 /// [Description("装车单号")] [Nullable(true)] [DataLength(22)] public string LoadvehicleNo { get { return loadvehicleNo; } set { loadvehicleNo = value; } } /// /// 收货单位 /// [Description("收货单位")] [Nullable(true)] [DataLength(120)] public string ReceiveName { get { return receiveName; } set { receiveName = value; } } /// /// 订货单位 /// [Description("订货单位")] [Nullable(true)] [DataLength(120)] public string OrderName { get { return orderName; } set { orderName = value; } } /// /// 发货单位 /// [Description("发货单位")] [Nullable(true)] [DataLength(120)] public string ShippersName { get { return shippersName; } set { shippersName = value; } } /// /// 运输单位 /// [Description("运输单位")] [Nullable(true)] [DataLength(120)] public string TransportName { get { return transportName; } set { transportName = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(1000)] public string Memo { get { return memo; } set { memo = value; } } /// /// 作废时间 /// [Description("作废时间")] [Nullable(true)] public string DeleteDate { get { return deleteDate; } set { deleteDate = value; } } /// /// 作废人 /// [Description("作废人")] [Nullable(true)] [DataLength(10)] public string DeleteUser { get { return deleteUser; } set { deleteUser = value; } } /// /// 第一次过磅磅房编号 /// [Description("第一次过磅磅房编号")] [Nullable(true)] [DataLength(2)] public string RecoderLocation1 { get { return recoderLocation1; } set { recoderLocation1 = value; } } /// /// 第二次过磅磅房编号 /// [Description("第二次过磅磅房编号")] [Nullable(true)] [DataLength(2)] public string RecoderLocation2 { get { return recoderLocation2; } set { recoderLocation2 = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 实发重 /// [Description("实发重")] [Nullable(true)] [DataLength(8)] public decimal? RealWt { get { return realWt; } set { realWt = value; } } /// /// 车牌号 /// [Description("车牌号")] [Nullable(false)] [DataLength(1)] public string CarNo { get { return carNo; } set { carNo = value; } } /// /// 实发重 /// [Description("支数")] [Nullable(true)] [DataLength(8)] public decimal? MatNum { get { return matNum; } set { matNum = value; } } } }