using System; using System.Collections.Generic; using System.Text; namespace wms.dto.request { /// /// 物料基础信息同步请求参数 /// public class SyncMaterInfoRequest: BaseRequest { /// /// 开始时间 /// public DateTime StartTime { get; set; } = DateTime.Parse("1900-1-1"); /// /// 结束时间 /// public DateTime EndTime { get; set; } = DateTime.Parse("1900-1-1"); /// /// 物料编码 /// public string MatCode { get; set; } /// /// 请求条数 /// public int Count { get; set; } /// /// 当前页 /// public int PageIndex { get; set; } /// /// 每页显示条数 /// public int PageSize { get; set; } /// /// 同步类型(1初始化 2job 3手动) /// public int SyncType { get; set; } } }