|
@@ -0,0 +1,106 @@
|
|
|
+using Mapster;
|
|
|
+
|
|
|
+
|
|
|
+namespace Model
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarTable("pri_project", "奖励项目")]
|
|
|
+ [Tenant("0")]
|
|
|
+ public class PriProject
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [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; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+}
|