using Mapster; namespace Model { /// /// 奖励发放日志 pri_log /// [SugarTable("pri_log", "奖励发放日志")] [Tenant("0")] public class PriLog { /// /// ID /// [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int id { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", ColumnName = "status")] public int status { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序", ColumnName = "sort")] public int sort { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")] public int version { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")] public DateTime? createDate { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")] public DateTime? updateDate { get; set; } /// /// 项目 /// [SugarColumn(ColumnDescription = "项目", ColumnName = "project_id")] public int projectId { get; set; } /// /// 配置ID /// [SugarColumn(ColumnDescription = "配置ID", ColumnName = "list_id")] public int listId { get; set; } /// /// 批次号 /// [SugarColumn(ColumnDescription = "批次号", Length = 50, ColumnName = "batch_no")] public string? batchNo { get; set; } /// /// 入口 /// [SugarColumn(ColumnDescription = "入口", ColumnName = "prize_in")] public int prizeIn { get; set; } /// /// 奖励金额 /// [SugarColumn(ColumnDescription = "奖励金额", ColumnName = "prize_amount")] public decimal prizeAmount { get; set; } /// /// 请求参数 /// [SugarColumn(ColumnDescription = "请求参数", Length = 200, ColumnName = "request_param")] public string? requestParam { get; set; } /// /// 奖励条件明细 /// [SugarColumn(ColumnDescription = "奖励条件明细", ColumnName = "step_list")] public string? stepList { get; set; } } }