using Mapster; namespace Model { /// /// 好哒押金记录 hd_deposit_record /// [SplitTable(SplitType.Month)] [SugarTable("hd_deposit_record_{year}{month}{day}", "好哒押金记录")] [Tenant("0")] public class HdDepositRecord { /// /// ID /// [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, ColumnName = "id")] public long id { get; set; } /// /// 绑定/激活日期 /// [SugarColumn(ColumnDescription = "绑定/激活日期", Length = 30, ColumnName = "effective_time")] public string? effectiveTime { get; set; } /// /// 设备类型 /// [SugarColumn(ColumnDescription = "设备类型", Length = 20, ColumnName = "device_type")] public string? deviceType { get; set; } /// /// 商户类型 /// [SugarColumn(ColumnDescription = "商户类型", Length = 30, ColumnName = "channel_kind")] public string? channelKind { get; set; } /// /// 新的TUSN编码 /// [SugarColumn(ColumnDescription = "新的TUSN编码", Length = 30, ColumnName = "sn_no")] public string? snNo { get; set; } /// /// 押金金额 /// [SugarColumn(ColumnDescription = "押金金额", Length = 20, ColumnName = "deposit_amount")] public string? depositAmount { get; set; } /// /// 押金活动编号 /// [SugarColumn(ColumnDescription = "押金活动编号", Length = 20, ColumnName = "activity_id")] public string? activityId { get; set; } /// /// 平台商户名称 /// [SugarColumn(ColumnDescription = "平台商户名称", Length = 50, ColumnName = "mcht_nm")] public string? mchtNm { get; set; } /// /// 平台商户号 /// [SugarColumn(ColumnDescription = "平台商户号", Length = 50, ColumnName = "mcht_no")] public string? mchtNo { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")] public DateTime? updateTime { get; set; } /// /// 创建时间 /// [SplitField] [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")] public DateTime? createTime { get; set; } /// /// 删除标记 /// [SugarColumn(ColumnDescription = "删除标记", ColumnName = "del_flag")] public int delFlag { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")] public int version { get; set; } /// /// 商户入网日期 /// [SugarColumn(ColumnDescription = "商户入网日期", ColumnName = "through_date")] public string? throughDate { get; set; } } }