using SqlSugar; using System; using System.Runtime.Serialization; namespace SlnMesnac.Model.domain { /// /// 字典表 /// [SugarTable("wcs_base_dictionary"), TenantAttribute("wcs")] [DataContract(Name = "字典表")] public class WcsBaseDictionary { /// /// 主键 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 字典名 /// [SugarColumn(ColumnName = "dic_name")] public string DicName { get; set; } /// /// 对应名 /// [SugarColumn(ColumnName = "dic_key")] public string DicKey { get; set; } /// /// 模板 /// [SugarColumn(ColumnName = "dic_value")] public string DicValue { get; set; } /// /// 是否可用 0:不可用 1:可用 /// [SugarColumn(ColumnName = "use_flag")] public int UseFlag { get; set; } /// /// 小车拿放类型,如果是叉车,背负式一定是00-00,如果是CTU,可能05,00,05代表库位,00是设备 /// [SugarColumn(ColumnName = "agv_type")] public string AgvType { get; set; } /// /// 小车执行类型 /// [SugarColumn(ColumnName = "agv_task_type")] public string AgvTaskType { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "created_by")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "created_time")] public DateTime CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "updated_by")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "updated_time")] public DateTime UpdatedTime { get; set; } } }