using System; namespace WIDESEA_Entity.DomainModels.TongRi { public class ReportTaskComplete { public string reqSource { get; set; } = "MES"; /// /// 唯一任务号 /// public string taskId { get; set; } = Guid.NewGuid().ToString(); /// /// 出入库申请的任务号 /// public string refTaskId { 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 DateTime reqTime { get; set; } = DateTime.Now; } }