| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- using Mapster;
- namespace Model
- {
- /// <summary>
- /// APP项目 app_project
- /// </summary>
- [SugarTable("app_project", "APP项目")]
- [Tenant("0")]
- public class AppProject
- {
- /// <summary>
- /// ID
- /// </summary>
- [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
- public int id { get; set; }
- /// <summary>
- /// 版本号
- /// </summary>
- [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
- public int version { get; set; }
- /// <summary>
- /// 删除标记
- /// </summary>
- [SugarColumn(ColumnDescription = "删除标记", ColumnName = "del_flag")]
- public int delFlag { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")]
- public DateTime? createTime { get; set; }
- /// <summary>
- /// 更新时间
- /// </summary>
- [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")]
- public DateTime? updateTime { get; set; }
- /// <summary>
- /// 创建人
- /// </summary>
- [SugarColumn(ColumnDescription = "创建人", Length = 32, ColumnName = "create_by")]
- public string? createBy { get; set; }
- /// <summary>
- /// 更新人
- /// </summary>
- [SugarColumn(ColumnDescription = "更新人", Length = 32, ColumnName = "update_by")]
- public string? updateBy { get; set; }
- /// <summary>
- /// APP名称
- /// </summary>
- [SugarColumn(ColumnDescription = "APP名称", Length = 10, ColumnName = "app_name")]
- public string? appName { get; set; }
- /// <summary>
- /// APP介绍
- /// </summary>
- [SugarColumn(ColumnDescription = "APP介绍", Length = 255, ColumnName = "app_detail")]
- public string? appDetail { get; set; }
- /// <summary>
- /// APP终端类型
- /// </summary>
- [SugarColumn(ColumnDescription = "APP终端类型", Length = 20, ColumnName = "app_kind")]
- public string? appKind { get; set; }
- /// <summary>
- /// 包名
- /// </summary>
- [SugarColumn(ColumnDescription = "包名", Length = 50, ColumnName = "package_name")]
- public string? packageName { get; set; }
- /// <summary>
- /// APP图标
- /// </summary>
- [SugarColumn(ColumnDescription = "APP图标", Length = 200, ColumnName = "app_icon")]
- public string? appIcon { get; set; }
- /// <summary>
- /// APP启动图
- /// </summary>
- [SugarColumn(ColumnDescription = "APP启动图", Length = 200, ColumnName = "app_start_bg")]
- public string? appStartBg { get; set; }
- /// <summary>
- /// APP启动介绍图
- /// </summary>
- [SugarColumn(ColumnDescription = "APP启动介绍图", Length = 200, ColumnName = "app_start_list_photo")]
- public string? appStartListPhoto { get; set; }
- /// <summary>
- /// 请求接口主机头
- /// </summary>
- [SugarColumn(ColumnDescription = "请求接口主机头", Length = 200, ColumnName = "api_host")]
- public string? apiHost { get; set; }
- /// <summary>
- /// 静态文件
- /// </summary>
- [SugarColumn(ColumnDescription = "静态文件", Length = 200, ColumnName = "static_file")]
- public string? staticFile { get; set; }
- /// <summary>
- /// 首次加载界面
- /// </summary>
- [SugarColumn(ColumnDescription = "首次加载界面", Length = 100, ColumnName = "init_page")]
- public string? initPage { get; set; }
- }
- }
|