using Mapster; namespace Model { /// /// 好哒终端替换记录 hd_change_record /// [SugarTable("hd_change_record", "好哒终端替换记录")] [Tenant("0")] public class HdChangeRecord { /// /// ID /// [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int id { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")] public int version { get; set; } /// /// 删除标记 /// [SugarColumn(ColumnDescription = "删除标记", ColumnName = "del_flag")] public int delFlag { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")] public DateTime? createTime { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")] public DateTime? updateTime { get; set; } /// /// 平台商户号 /// [SugarColumn(ColumnDescription = "平台商户号", Length = 50, ColumnName = "mcht_no")] public string? mchtNo { get; set; } /// /// 新的TUSN编码 /// [SugarColumn(ColumnDescription = "新的TUSN编码", Length = 50, ColumnName = "sn_no")] public string? snNo { get; set; } /// /// 设备类型 /// [SugarColumn(ColumnDescription = "设备类型", Length = 20, ColumnName = "device_type")] public string? deviceType { get; set; } /// /// 新的TUSN编码 /// [SugarColumn(ColumnDescription = "新的TUSN编码", Length = 50, ColumnName = "new_sn_no")] public string? newSnNo { get; set; } /// /// 旧的的TUSN编码 /// [SugarColumn(ColumnDescription = "旧的的TUSN编码", Length = 50, ColumnName = "old_sn_no")] public string? oldSnNo { get; set; } /// /// 换绑时间 /// [SugarColumn(ColumnDescription = "换绑时间", Length = 20, ColumnName = "opr_time")] public string? oprTime { get; set; } } }