123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace QM.KJGH.CGGL.Model.NMCghj
- {
-
-
-
- public class NmCgMd5Io
- {
-
- public string fileName { set; get; }
-
- public long fileSize { set; get; }
-
- public string fileMd5 { set; get; }
-
- public int totalSliceNum { set; get; }
-
- public int curSliceOrder { set; get; }
-
- public bool resetSliceOrder2Zero { set; get; } = true;
-
- public string instId { set; get; }
- }
- }
|