using Mapster; namespace Model { /// /// 奖励项目 pri_project /// [SugarTable("pri_project", "奖励项目")] [Tenant("0")] public class PriProject { /// /// 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 = "project_name")] public string? projectName { get; set; } /// /// 项目介绍 /// [SugarColumn(ColumnDescription = "项目介绍", Length = 200, ColumnName = "project_detail")] public string? projectDetail { get; set; } /// /// 调用方式 /// [SugarColumn(ColumnDescription = "调用方式", Length = 50, ColumnName = "request_mode")] public string? requestMode { get; set; } /// /// 是否通知 /// [SugarColumn(ColumnDescription = "是否通知", ColumnName = "notice_flag")] public bool noticeFlag { get; set; } /// /// 通知地址 /// [SugarColumn(ColumnDescription = "通知地址", Length = 200, ColumnName = "notice_url")] public string? noticeUrl { get; set; } /// /// 请求地址 /// [SugarColumn(ColumnDescription = "请求地址", Length = 200, ColumnName = "request_url")] public string? requestUrl { get; set; } /// /// 返回数据类型 /// [SugarColumn(ColumnDescription = "返回数据类型", Length = 20, ColumnName = "return_type")] public string? returnType { get; set; } /// /// 日志开关 /// [SugarColumn(ColumnDescription = "日志开关", ColumnName = "log_flag")] public bool logFlag { get; set; } } }