namespace HH.WCS.Mobox3.Template.Entity.Dto { /// /// 提升机DTO /// public class HoisterDto { /// /// 订单id /// public int id { get; set; } /// /// 订单名称 /// public string order_name { get; set; } /// /// 优先级 /// public int priority { get; set; } /// /// 订单业务类型 /// public string order_type { get; set; } /// /// 起点 /// public string src_loc { get; set; } /// /// 终点 /// public string dst_loc { get; set; } /// /// 托盘名称 /// public string pallet_name { get; set; } } }