using System; using System.ComponentModel.DataAnnotations; using Model.Base; namespace Dto.Admin { /// /// 克隆表 /// public class AddAppProjectDto { /// /// ID /// ColumnName = "id")] public int id { get; set; } /// /// 版本号 /// public int version { get; set; } /// /// 删除标记 /// public int delFlag { get; set; } /// /// 创建时间 /// public DateTime? createTime { get; set; } /// /// 更新时间 /// public DateTime? updateTime { get; set; } /// /// 创建人 /// public string? createBy { get; set; } /// /// 更新人 /// public string? updateBy { get; set; } /// /// APP名称 /// public string? appName { get; set; } /// /// APP介绍 /// public string? appDetail { get; set; } /// /// APP终端类型 /// public string? appKind { get; set; } /// /// 包名 /// public string? packageName { get; set; } /// /// APP图标 /// public string? appIcon { get; set; } /// /// APP启动图 /// "app_start_bg")] public string? appStartBg { get; set; } /// /// APP启动介绍图 /// "app_start_list_photo")] public string? appStartListPhoto { get; set; } /// /// 请求接口主机头 /// public string? apiHost { get; set; } /// /// 静态文件 /// public string? staticFile { get; set; } /// /// 首次加载界面 /// public string? initPage { get; set; } /// /// 模块列表 /// public string? moduleList { get; set; } /// /// 项目ID /// public int projectId { get; set; } } }