using Newtonsoft.Json; namespace Vo.Admin { /// /// 详情 /// public class GetAppProjectQueryVo { /// /// ID /// public int id { 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启动图 /// public string appStartBg { get; set; } /// /// APP启动介绍图 /// public string appStartListPhoto { get; set; } /// /// 请求接口主机头 /// public string apiHost { get; set; } /// /// 静态文件 /// public string staticFile { get; set; } /// /// 首次加载界面 /// public string initPage { get; set; } } }