123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- using Mapster;
- namespace Model
- {
-
-
-
- [SugarTable("pri_prize_object_table", "奖励发放对象表")]
- [Tenant("0")]
- public class PriPrizeObjectTable
- {
-
-
-
- [SugarColumn(ColumnDescription = "项目", ColumnName = "project_id")]
- public int projectId { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "查询表", Length = 50, ColumnName = "table_en_name")]
- public string? tableEnName { 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; }
-
-
-
- [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 = 50, ColumnName = "select_field")]
- public string? selectField { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "查询库", ColumnName = "database_id")]
- public int databaseId { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "备注", Length = 200, ColumnName = "note")]
- public string? note { get; set; }
- }
- }
|