using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEAWCS_DTO { public class EPLightSendDTO { /// /// 订单号 /// public string DOCNO { get; set; } /// /// 任务号 /// public string TASKNO { get; set; } /// /// 货位号 /// public string LOCATION { get; set; } /// /// 亮灯数量 /// public int QUANTITY { get; set; } /// /// 亮灯颜色 /// public string LIGHTCOLOR { get; set; } /// /// 亮灯状态:1:亮:2灭 /// public string ORDERTYPE { get; set; } /// /// 业务类型 1:入库亮灯 2:出库亮灯 /// public string LIGHTTYPE { get; set; } } }