using SqlSugar; using System; using System.ComponentModel; using System.Linq; using System.Text; namespace DataEntity.Rack { /// /// 暂存架配置表 /// [SugarTable("rackset_config")] public partial class RackConfigModel { /// /// 配置表主键ID /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string id { get; set; } /// /// 板架数:1、2、3... /// [SugarColumn(ColumnName = "rack_num")] public int rack_num { get; set; } /// /// 层数 /// [SugarColumn(ColumnName = "rack_layer")] public int rack_layer { get; set; } /// /// 名称 /// [SugarColumn(ColumnName = "software_information_id")] public string software_information_id { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "creat_name")] public string creat_name { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "create_time")] public DateTime? create_time { get; set; } /// /// 修改人 /// [SugarColumn(ColumnName = "modify_name")] public string modify_name { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "modify_time")] public DateTime? modify_time { get; set; } } }