using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace wms.sqlsugar.model.pt { [Tenant("pt")] [SugarTable("WCS_PlcData")] public partial class ptWCSPlcdata { /// /// ID /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "int", IsNullable = false, ColumnDescription = "ID")] public int ID { get; set; } /// /// 仓库 /// [SugarColumn(ColumnDataType = "varchar", Length = 255, IsNullable = false, ColumnDescription = "仓库")] public string WAREHOUSE { get; set; } /// /// 内容 /// [SugarColumn(ColumnDataType = "text", Length = 2147483647, IsNullable = false, ColumnDescription = "内容")] public string CONTENT { get; set; } /// /// 创建用户 /// [SugarColumn(ColumnDataType = "varchar", Length = 50, IsNullable = false, ColumnDescription = "创建用户")] public string AddWho { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDataType = "datetime", IsNullable = false, ColumnDescription = "创建时间")] public DateTime AddTime { get; set; } } }