123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- using Mapster;
- namespace Model
- {
-
-
-
- [SugarTable("pri_prize_in_query_field", "奖励入库条件字段")]
- [Tenant("0")]
- public class PriPrizeInQueryField
- {
-
-
-
- [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 = "字段名称", Length = 50, ColumnName = "field_name")]
- public string? fieldName { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "字段名", Length = 50, ColumnName = "field_en_name")]
- public string? fieldEnName { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "匹配条件", Length = 50, ColumnName = "field_query_kind")]
- public string? fieldQueryKind { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "匹配方式", Length = 20, ColumnName = "field_query_model")]
- public string? fieldQueryModel { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "匹配值", Length = 50, ColumnName = "field_query_value")]
- public string? fieldQueryValue { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "匹配值类型", Length = 20, ColumnName = "field_query_value_type")]
- public string? fieldQueryValueType { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "入库表", ColumnName = "in_table_id")]
- public int inTableId { get; set; }
- }
- }
|