namespace WIDESEA_Entity.DomainModels.TongRi { public class ReportTask { /// /// 反馈编号 /// public string reqID { get; set; } /// /// 任务编号(请求时的那个) /// public string taskNo { get; set; } /// /// 任务类型 1入库,2出库 /// public string taskType { get; set; } /// /// 物料编码 /// public string containerCode { get; set; } /// /// 物料类型 /// public string containerType { get; set; } /// /// 来源编码 /// public string fromLocationCode { get; set; } /// /// 优先级 /// public string priority { get; set; } /// /// 备注 /// public string remark { get; set; } /// /// 请求时间 /// public string requestTime { get; set; } } }