using Mapster; namespace Model { /// /// 奖励入口配置表 pri_prize_in_set /// [SugarTable("pri_prize_in_set", "奖励入口配置表")] [Tenant("0")] public class PriPrizeInSet { /// /// 项目 /// [SugarColumn(ColumnDescription = "项目", ColumnName = "project_id")] public int projectId { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")] public DateTime? updateDate { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")] public DateTime? createDate { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")] public int version { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序", ColumnName = "sort")] public int sort { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", ColumnName = "status")] public int status { get; set; } /// /// ID /// [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int id { get; set; } /// /// 指定奖励配置 /// [SugarColumn(ColumnDescription = "指定奖励配置", Length = 200, ColumnName = "prize_list_ids")] public string? prizeListIds { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 200, ColumnName = "note")] public string? note { get; set; } } }