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.YdmBcPipeManage.Entity { /// /// 数据库表TMS_COM_UNLOADING所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2020-04-16 /// public class TmsComUnloadingEntity { /// /// 装卸点代码(ZX+4位流水) /// private string unloadingCode = ""; /// /// 装卸点描叙 /// private string unloadingDesc = ""; /// /// 装卸点位置区分代码( 厂内 /厂外)(A01005) /// private string unloadingLocationCode = ""; /// /// 装卸点位置区分 /// private string unloadingLocationDesc = ""; /// /// 装卸点所属区域代码(产销系统中库房/产线代码) /// private string unloadingAreaCode = ""; /// /// 装卸点所属区域 /// private string unloadingAreaDesc = ""; /// /// 经度 /// private string longitudeVal = ""; /// /// 纬度 /// private string latitudeVal = ""; /// /// 电子围栏范围(公里) /// private string rangeVal = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// 创建人ID /// private string createUserid = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人ID /// private string updateUserid = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 废除人ID /// private string deleteUserid = ""; /// /// 废除人 /// private string deleteName = ""; /// /// 废除时间 /// private string deleteTime = ""; /// /// 需要吊车(1:需要, 0-不需要) /// private string needCrane = ""; /// /// 是否离线库 /// private string ifOffline = ""; /// /// 装卸点代码(ZX+4位流水) /// [Description("装卸点代码(ZX+4位流水)")] [Nullable(false)] [DataLength(16)] public string UnloadingCode { get { return unloadingCode; } set { unloadingCode = value; } } /// /// 装卸点描叙 /// [Description("装卸点描叙")] [Nullable(true)] [DataLength(32)] public string UnloadingDesc { get { return unloadingDesc; } set { unloadingDesc = value; } } /// /// 装卸点位置区分代码( 厂内 /厂外)(A01005) /// [Description("装卸点位置区分代码( 厂内 /厂外)(A01005)")] [Nullable(true)] [DataLength(8)] public string UnloadingLocationCode { get { return unloadingLocationCode; } set { unloadingLocationCode = value; } } /// /// 装卸点位置区分 /// [Description("装卸点位置区分")] [Nullable(true)] [DataLength(16)] public string UnloadingLocationDesc { get { return unloadingLocationDesc; } set { unloadingLocationDesc = value; } } /// /// 装卸点所属区域代码(产销系统中库房/产线代码) /// [Description("装卸点所属区域代码(产销系统中库房/产线代码)")] [Nullable(true)] [DataLength(8)] public string UnloadingAreaCode { get { return unloadingAreaCode; } set { unloadingAreaCode = value; } } /// /// 装卸点所属区域 /// [Description("装卸点所属区域")] [Nullable(true)] [DataLength(60)] public string UnloadingAreaDesc { get { return unloadingAreaDesc; } set { unloadingAreaDesc = value; } } /// /// 经度 /// [Description("经度")] [Nullable(true)] [DataLength(16)] public string LongitudeVal { get { return longitudeVal; } set { longitudeVal = value; } } /// /// 纬度 /// [Description("纬度")] [Nullable(true)] [DataLength(16)] public string LatitudeVal { get { return latitudeVal; } set { latitudeVal = value; } } /// /// 电子围栏范围(公里) /// [Description("电子围栏范围(公里)")] [Nullable(true)] [DataLength(10)] public string RangeVal { get { return rangeVal; } set { rangeVal = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [Nullable(true)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Memo { get { return memo; } set { memo = value; } } /// /// 创建人ID /// [Description("创建人ID")] [Nullable(true)] [DataLength(20)] public string CreateUserid { get { return createUserid; } set { createUserid = 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; } } /// /// 修改人ID /// [Description("修改人ID")] [Nullable(true)] [DataLength(20)] public string UpdateUserid { get { return updateUserid; } set { updateUserid = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 废除人ID /// [Description("废除人ID")] [Nullable(true)] [DataLength(20)] public string DeleteUserid { get { return deleteUserid; } set { deleteUserid = value; } } /// /// 废除人 /// [Description("废除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 废除时间 /// [Description("废除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 需要吊车(1:需要, 0-不需要) /// [Description("需要吊车(1:需要, 0-不需要)")] [Nullable(true)] [DataLength(1)] public string NeedCrane { get { return needCrane; } set { needCrane = value; } } /// /// 是否离线库 /// [Description("是否离线库")] [Nullable(true)] [DataLength(1)] public string IfOffline { get { return ifOffline; } set { ifOffline = value; } } } }