namespace GxPress.Request.AppStartPage { public class AppStartPageRequest { } /// /// 修改 /// public class AppStartPageUpdateRequest { /// /// Id /// /// public int Id { get; set; } /// /// 图片 /// public string ImageUrl { get; set; } /// /// 标题 /// /// public string Title { get; set; } /// /// 操作人 /// /// public string Creator { get; set; } /// /// 操作人姓名 /// /// public int AdminId { get; set; } /// /// App类型 1 ios 2 android /// /// public int AppTypeId { get; set; } /// /// 连接类型 1 内部 2 外部 /// /// public int TypeId { get; set; } /// /// 外部连接地址 /// /// public string Url { get; set; } /// /// 数据类型ID /// /// public int DataTypeId { get; set; } /// /// 数据ID /// /// public int DataId { get; set; } /// /// 是否禁用 /// /// public int IsDisable { get; set; } /// /// 启动秒 /// /// public int Second { get; set; } } }