using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Pur.Entity { /// /// 数据库表PRE_TRACK_NOTICE所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-I2IGVKJC 时间:2021-08-20 /// public class PreTrackNoticeEntity { /// /// 通知单号 /// private string noticeNo = ""; /// /// 物料编号 /// private string matterNo = ""; /// /// 物料名称 /// private string matterName = ""; /// /// 合同号 /// private string contractNo = ""; /// /// 批次号 /// private string batchNo = ""; /// /// 供应商编号 /// private string customerSupplierNo = ""; /// /// 供应商名称 /// private string customerSupplierName = ""; /// /// 原产地 /// private string sourceArea = ""; /// /// 发货单位编号 /// private string forwardingUnitNo = ""; /// /// 发货单位名称 /// private string forwardingUnitName = ""; /// /// 收货单位编号 /// private string receivingUintNo = ""; /// /// 收货单位名称 /// private string receivingUintName = ""; /// /// 材质编号 /// private string materialNo = ""; /// /// 材质名称 /// private string materialName = ""; /// /// 规格编号 /// private string specNo = ""; /// /// 规格名称 /// private string specName = ""; /// /// 卸货地点编号 /// private string loadPointNo = ""; /// /// 卸货地点名称 /// private string loadPointName = ""; /// /// 承运单位编号 /// private string carrierUnitNo = ""; /// /// 承运单位名称 /// private string carrierUnitName = ""; /// /// 计量类型编号 /// private string meterTypeNo = ""; /// /// 计量类型名称 /// private string meterTypeName = ""; /// /// 状态(0=有效;1=作废) /// private string valueFlag = ""; /// /// 创建人编号 /// private string createManNo = ""; /// /// 创建人姓名 /// private string createManName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 读取标识 /// private string readFlag = ""; /// /// 运输类型/检斤方式 /// private string transportTypeName = ""; /// /// 总量 /// private decimal? total = null; /// /// 超差比例 /// private decimal? toleranceRatio = null; /// /// 备注 /// private string memo = ""; /// /// 索引码 /// private string indexCode = ""; /// /// 修改人编号 /// private string updateManNo = ""; /// /// 修改人姓名 /// private string updateManName = ""; /// /// 修改时间(YYYY-MM-DD HH:mm:SS) /// private string updateTime = ""; /// /// 通知单号 /// [Description("通知单号")] [Nullable(false)] [DataLength(20)] public string NoticeNo { get { return noticeNo; } set { noticeNo = value; } } /// /// 物料编号 /// [Description("物料编号")] [Nullable(false)] [DataLength(20)] public string MatterNo { get { return matterNo; } set { matterNo = value; } } /// /// 物料名称 /// [Description("物料名称")] [Nullable(false)] [DataLength(200)] public string MatterName { get { return matterName; } set { matterName = value; } } /// /// 合同号 /// [Description("合同号")] [Nullable(true)] [DataLength(40)] public string ContractNo { get { return contractNo; } set { contractNo = value; } } /// /// 批次号 /// [Description("批次号")] [Nullable(true)] [DataLength(40)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 供应商编号 /// [Description("供应商编号")] [Nullable(true)] [DataLength(20)] public string CustomerSupplierNo { get { return customerSupplierNo; } set { customerSupplierNo = value; } } /// /// 供应商名称 /// [Description("供应商名称")] [Nullable(true)] [DataLength(100)] public string CustomerSupplierName { get { return customerSupplierName; } set { customerSupplierName = value; } } /// /// 原产地 /// [Description("原产地")] [Nullable(true)] [DataLength(50)] public string SourceArea { get { return sourceArea; } set { sourceArea = value; } } /// /// 发货单位编号 /// [Description("发货单位编号")] [Nullable(true)] [DataLength(20)] public string ForwardingUnitNo { get { return forwardingUnitNo; } set { forwardingUnitNo = value; } } /// /// 发货单位名称 /// [Description("发货单位名称")] [Nullable(true)] [DataLength(100)] public string ForwardingUnitName { get { return forwardingUnitName; } set { forwardingUnitName = value; } } /// /// 收货单位编号 /// [Description("收货单位编号")] [Nullable(true)] [DataLength(20)] public string ReceivingUintNo { get { return receivingUintNo; } set { receivingUintNo = value; } } /// /// 收货单位名称 /// [Description("收货单位名称")] [Nullable(true)] [DataLength(100)] public string ReceivingUintName { get { return receivingUintName; } set { receivingUintName = value; } } /// /// 材质编号 /// [Description("材质编号")] [Nullable(true)] [DataLength(20)] public string MaterialNo { get { return materialNo; } set { materialNo = value; } } /// /// 材质名称 /// [Description("材质名称")] [Nullable(true)] [DataLength(100)] public string MaterialName { get { return materialName; } set { materialName = value; } } /// /// 规格编号 /// [Description("规格编号")] [Nullable(true)] [DataLength(20)] public string SpecNo { get { return specNo; } set { specNo = value; } } /// /// 规格名称 /// [Description("规格名称")] [Nullable(true)] [DataLength(100)] public string SpecName { get { return specName; } set { specName = value; } } /// /// 卸货地点编号 /// [Description("卸货地点编号")] [Nullable(true)] [DataLength(20)] public string LoadPointNo { get { return loadPointNo; } set { loadPointNo = value; } } /// /// 卸货地点名称 /// [Description("卸货地点名称")] [Nullable(true)] [DataLength(100)] public string LoadPointName { get { return loadPointName; } set { loadPointName = value; } } /// /// 承运单位编号 /// [Description("承运单位编号")] [Nullable(true)] [DataLength(20)] public string CarrierUnitNo { get { return carrierUnitNo; } set { carrierUnitNo = value; } } /// /// 承运单位名称 /// [Description("承运单位名称")] [Nullable(true)] [DataLength(100)] public string CarrierUnitName { get { return carrierUnitName; } set { carrierUnitName = value; } } /// /// 计量类型编号 /// [Description("计量类型编号")] [Nullable(true)] [DataLength(20)] public string MeterTypeNo { get { return meterTypeNo; } set { meterTypeNo = value; } } /// /// 计量类型名称 /// [Description("计量类型名称")] [Nullable(true)] [DataLength(30)] public string MeterTypeName { get { return meterTypeName; } set { meterTypeName = value; } } /// /// 状态(0=有效;1=作废) /// [Description("状态(0=有效;1=作废)")] [Nullable(true)] [DataLength(1)] public string ValueFlag { get { return valueFlag; } set { valueFlag = value; } } /// /// 创建人编号 /// [Description("创建人编号")] [Nullable(true)] [DataLength(20)] public string CreateManNo { get { return createManNo; } set { createManNo = value; } } /// /// 创建人姓名 /// [Description("创建人姓名")] [Nullable(true)] [DataLength(100)] public string CreateManName { get { return createManName; } set { createManName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 读取标识 /// [Description("读取标识")] [Nullable(true)] [DataLength(1)] public string ReadFlag { get { return readFlag; } set { readFlag = value; } } /// /// 运输类型/检斤方式 /// [Description("运输类型/检斤方式")] [Nullable(true)] [DataLength(32)] public string TransportTypeName { get { return transportTypeName; } set { transportTypeName = value; } } /// /// 总量 /// [Description("总量")] [Nullable(true)] [DataLength(18)] public decimal? Total { get { return total; } set { total = value; } } /// /// 超差比例 /// [Description("超差比例")] [Nullable(true)] [DataLength(3)] public decimal? ToleranceRatio { get { return toleranceRatio; } set { toleranceRatio = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Memo { get { return memo; } set { memo = value; } } /// /// 索引码 /// [Description("索引码")] [Nullable(true)] [DataLength(40)] public string IndexCode { get { return indexCode; } set { indexCode = value; } } /// /// 修改人编号 /// [Description("修改人编号")] [Nullable(true)] [DataLength(20)] public string UpdateManNo { get { return updateManNo; } set { updateManNo = value; } } /// /// 修改人姓名 /// [Description("修改人姓名")] [Nullable(true)] [DataLength(50)] public string UpdateManName { get { return updateManName; } set { updateManName = value; } } /// /// 修改时间(YYYY-MM-DD HH:mm:SS) /// [Description("修改时间(YYYY-MM-DD HH:mm:SS)")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } } }