using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.YdmBcPipeManage.Entity { /// /// 数据库表YDM_BS_SLING所对应的实体类(生成工具:代码生成工具3.0) /// 作者:milu 时间:2021-12-14 /// public class YdmBsSlingEntity { /// /// 主键 /// private string resultNo = ""; /// /// 类型 /// private string type = ""; /// /// 原吊带数 /// private decimal? slingOld = null; /// /// 新吊带数 /// private decimal? slingNew = null; /// /// 吊带数 /// private decimal? sling = null; /// /// 仓库代码 /// private string storageNo = ""; /// /// 仓库代码描述 /// private string storageName = ""; /// /// 料位代码 /// private string locationNo = ""; /// /// 料位名称 /// private string locationName = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// (目标)仓库代码 /// private string tarStorageNo = ""; /// /// (目标)仓库代码描述 /// private string tarStorageName = ""; /// /// 调拨单号 /// private string slingNo = ""; /// /// 状态 /// private string flag = ""; /// /// 主键 /// [Description("主键")] [Nullable(false)] [DataLength(50)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 类型 1-维护记录 2-出库记录 3-入库记录 /// [Description("类型")] [Nullable(true)] [DataLength(1)] public string Type { get { return type; } set { type = value; } } /// /// 原吊带数 /// [Description("原吊带数")] [Nullable(true)] [DataLength(6)] public decimal? SlingOld { get { return slingOld; } set { slingOld = value; } } /// /// 新吊带数 /// [Description("新吊带数")] [Nullable(true)] [DataLength(6)] public decimal? SlingNew { get { return slingNew; } set { slingNew = value; } } /// /// 吊带数 /// [Description("吊带数")] [Nullable(true)] [DataLength(6)] public decimal? Sling { get { return sling; } set { sling = value; } } /// /// 仓库代码 /// [Description("仓库代码")] [Nullable(true)] [DataLength(5)] public string StorageNo { get { return storageNo; } set { storageNo = value; } } /// /// 仓库代码描述 /// [Description("仓库代码描述")] [Nullable(true)] [DataLength(50)] public string StorageName { get { return storageName; } set { storageName = value; } } /// /// 料位代码 /// [Description("料位代码")] [Nullable(true)] [DataLength(10)] public string LocationNo { get { return locationNo; } set { locationNo = value; } } /// /// 料位名称 /// [Description("料位名称")] [Nullable(true)] [DataLength(32)] public string LocationName { get { return locationName; } set { locationName = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// (目标)仓库代码 /// [Description("(目标)仓库代码")] [Nullable(true)] [DataLength(5)] public string TarStorageNo { get { return tarStorageNo; } set { tarStorageNo = value; } } /// /// (目标)仓库代码描述 /// [Description("(目标)仓库代码描述")] [Nullable(true)] [DataLength(50)] public string TarStorageName { get { return tarStorageName; } set { tarStorageName = value; } } /// /// 调拨单号 /// [Description("调拨单号")] [Nullable(true)] [DataLength(10)] public string SlingNo { get { return slingNo; } set { slingNo = value; } } /// /// 状态 /// [Description("状态")] [Nullable(true)] [DataLength(1)] public string Flag { get { return flag; } set { flag = value; } } } }