namespace GxPress.Result.FlowAttachment { /// /// 工作流附件 /// public class FlowAttachmentResult { /// /// /// /// public int Id { get; set; } /// /// 文件夹类型 1文章 2话题 3 收藏 4笔记 5通知 6站内信 7小组 8 会议详情 14工作流审批 300 文件 /// public int SoureTypeId { get; set; } /// /// 文件夹类型 1 工作 2会议 /// public int TypeId { get; set; } /// /// 来源ID /// public int SoureId { get; set; } /// /// 地址 /// /// public string Url { get; set; } /// /// 标题 /// /// public string Title { get; set; } /// /// 工作Id或者会议 /// /// public int FlowId { get; set; } /// /// 工作流用户Id /// /// public int FlowTodoId { get; set; } /// /// 大小 /// /// public int Size { get; set; } /// /// 缩略图 /// /// public string MinUrl { get; set; } /// /// 结果 /// /// public CollectionContentJsonData Data { get; set; } } }