using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IBKLinker_Minio.Entity.MinioController { /// /// 文件上传标准清单model /// public class StandardListGenerationModel { /// /// 清单名称 /// public string InventoryName { get; set; } /// /// 清单类型 0为标准类型一个单一文件夹的清单,1为特殊模式多个文件夹的清单 /// public string InventoryType { get; set; } /// /// 开始时间 /// public string BeginTime { set; get; } /// /// 结束时间 /// public string EndTime { set; get; } } }