AppProject.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. using Mapster;
  2. namespace Model
  3. {
  4. /// <summary>
  5. /// APP项目 app_project
  6. /// </summary>
  7. [SugarTable("app_project", "APP项目")]
  8. [Tenant("0")]
  9. public class AppProject
  10. {
  11. /// <summary>
  12. /// ID
  13. /// </summary>
  14. [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
  15. public int id { get; set; }
  16. /// <summary>
  17. /// 版本号
  18. /// </summary>
  19. [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
  20. public int version { get; set; }
  21. /// <summary>
  22. /// 删除标记
  23. /// </summary>
  24. [SugarColumn(ColumnDescription = "删除标记", ColumnName = "del_flag")]
  25. public int delFlag { get; set; }
  26. /// <summary>
  27. /// 创建时间
  28. /// </summary>
  29. [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")]
  30. public DateTime? createTime { get; set; }
  31. /// <summary>
  32. /// 更新时间
  33. /// </summary>
  34. [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")]
  35. public DateTime? updateTime { get; set; }
  36. /// <summary>
  37. /// 创建人
  38. /// </summary>
  39. [SugarColumn(ColumnDescription = "创建人", Length = 32, ColumnName = "create_by")]
  40. public string? createBy { get; set; }
  41. /// <summary>
  42. /// 更新人
  43. /// </summary>
  44. [SugarColumn(ColumnDescription = "更新人", Length = 32, ColumnName = "update_by")]
  45. public string? updateBy { get; set; }
  46. /// <summary>
  47. /// APP名称
  48. /// </summary>
  49. [SugarColumn(ColumnDescription = "APP名称", Length = 10, ColumnName = "app_name")]
  50. public string? appName { get; set; }
  51. /// <summary>
  52. /// APP介绍
  53. /// </summary>
  54. [SugarColumn(ColumnDescription = "APP介绍", Length = 255, ColumnName = "app_detail")]
  55. public string? appDetail { get; set; }
  56. /// <summary>
  57. /// APP终端类型
  58. /// </summary>
  59. [SugarColumn(ColumnDescription = "APP终端类型", Length = 20, ColumnName = "app_kind")]
  60. public string? appKind { get; set; }
  61. /// <summary>
  62. /// 包名
  63. /// </summary>
  64. [SugarColumn(ColumnDescription = "包名", Length = 50, ColumnName = "package_name")]
  65. public string? packageName { get; set; }
  66. /// <summary>
  67. /// APP图标
  68. /// </summary>
  69. [SugarColumn(ColumnDescription = "APP图标", Length = 200, ColumnName = "app_icon")]
  70. public string? appIcon { get; set; }
  71. /// <summary>
  72. /// APP启动图
  73. /// </summary>
  74. [SugarColumn(ColumnDescription = "APP启动图", Length = 200, ColumnName = "app_start_bg")]
  75. public string? appStartBg { get; set; }
  76. /// <summary>
  77. /// APP启动介绍图
  78. /// </summary>
  79. [SugarColumn(ColumnDescription = "APP启动介绍图", Length = 200, ColumnName = "app_start_list_photo")]
  80. public string? appStartListPhoto { get; set; }
  81. /// <summary>
  82. /// 请求接口主机头
  83. /// </summary>
  84. [SugarColumn(ColumnDescription = "请求接口主机头", Length = 200, ColumnName = "api_host")]
  85. public string? apiHost { get; set; }
  86. /// <summary>
  87. /// 静态文件
  88. /// </summary>
  89. [SugarColumn(ColumnDescription = "静态文件", Length = 200, ColumnName = "static_file")]
  90. public string? staticFile { get; set; }
  91. /// <summary>
  92. /// 首次加载界面
  93. /// </summary>
  94. [SugarColumn(ColumnDescription = "首次加载界面", Length = 100, ColumnName = "init_page")]
  95. public string? initPage { get; set; }
  96. }
  97. }