using Mapster; namespace Model { /// /// 条件返回字段 pri_return_field /// [SugarTable("pri_return_field", "条件返回字段")] [Tenant("0")] public class PriReturnField { /// /// 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 = "字段名称", Length = 50, ColumnName = "field_name")] public string? fieldName { get; set; } /// /// 字段名 /// [SugarColumn(ColumnDescription = "字段名", Length = 200, ColumnName = "field_en_name")] public string? fieldEnName { get; set; } /// /// 返回类型 /// [SugarColumn(ColumnDescription = "返回类型", Length = 50, ColumnName = "field_return_kind")] public string? fieldReturnKind { get; set; } /// /// 匹配表 /// [SugarColumn(ColumnDescription = "匹配表", ColumnName = "query_table_id")] public int queryTableId { get; set; } /// /// 字段别名 /// [SugarColumn(ColumnDescription = "字段别名", Length = 50, ColumnName = "field_alias_name")] public string? fieldAliasName { get; set; } } }