using System; namespace WIDESEA_Entity.DomainModels.TongRi { public class RequestParm { /// /// 请求来源 /// public string reqSource { get; set; } = "MES"; /// /// 任务号(唯一) /// public string taskId { get; set; } /// /// 库区(1,正极。2,负极) /// public string wareHouse { get; set; } /// /// 物料编码 /// public string containerCode { get; set; } /// /// 物料类型 /// public string containerType { get; set; } /// /// 包装方式 /// public string package { get; set; } = "1"; /// /// 优先级,数字越大。越优先 /// public string priority { get; set; } = "0"; /// /// 请求时间(必须) /// public string reqTime { get; set; } = DateTime.Now.ToString(); } }