123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace QM.KJGH.CGGL.Model.NMCghj
- {
- /// <summary>
- /// MD5请求参数
- /// </summary>
- public class NmCgMd5Io
- {
- /**
- * 成果包名称
- */
- public string fileName { set; get; }
- /**
- * 分片大小
- */
- public long fileSize { set; get; }
- /**
- * zip压缩包的md5值
- */
- public string fileMd5 { set; get; }
- /**
- * 总分片数量, 单位取值:1-n
- */
- public int totalSliceNum { set; get; }
- /**
- * 当前分片所属顺序 单位取值: 0-(totalSliceNum-1)
- */
- public int curSliceOrder { set; get; }
- /**
- * 是否重置分片到0 (用于上传一半后, 又从0开始)
- */
- public bool resetSliceOrder2Zero { set; get; } = true;
- /**
- * 流程主键(补正流程需要)
- */
- public string instId { set; get; }
- }
- }
|