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