// 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995 // // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证 namespace Admin.NET.Plugin.GoView.Service.Dto; /// /// GoView 项目 Item /// public class GoViewProItemOutput { /// /// 项目Id /// public long Id { get; set; } /// /// 项目名称 /// public string ProjectName { get; set; } /// /// 项目状态 /// public GoViewProState State { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 预览图片url /// public string IndexImage { get; set; } /// /// 创建者Id /// public long? CreateUserId { get; set; } /// /// 项目备注 /// public string Remarks { get; set; } } /// /// GoView 项目详情 /// public class GoViewProDetailOutput : GoViewProItemOutput { /// /// 项目内容 /// public string Content { get; set; } } /// /// GoView 新增项目输出 /// public class GoViewProCreateOutput { /// /// 项目Id /// public long Id { get; set; } } /// /// GoView 上传项目输出 /// public class GoViewProUploadOutput { /// /// Id /// public long Id { get; set; } /// /// 仓储名称 /// public string BucketName { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 创建者Id /// public long? CreateUserId { get; set; } /// /// 文件名称 /// public string FileName { get; set; } /// /// 文件大小KB /// public int FileSize { get; set; } /// /// 文件后缀 /// public string FileSuffix { get; set; } /// /// 文件 Url /// [JsonProperty("fileurl")] public string FileUrl { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// 修改者Id /// public long? UpdateUserId { get; set; } }