using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Entity { /// /// 出货记录列表 /// public class OutProductList : YB_OutProduct { /// /// 服务商名称 /// public string BusinessName { get; set; } /// /// 快递 /// public string ExpressName { get; set; } /// /// 设备类型名称 /// public string TypeName { get; set; } } /// /// 出货设备列表 /// public class OutProductDevList:YB_OutProductDev { /// /// 设备名称 /// public string DevName { get; set; } } /// /// 批量设置 /// public class OutProductBatchSetDto { /// /// 订单列表 /// public List ids { get; set; } /// /// 1-分配,2-回收 /// public int type { get; set; } } /// /// 出货上传失败信息 /// public class OutProductUploadFileDto { /// /// 设备序列号 /// public string code { get; set; } /// /// 失败原因 /// public string msg { get; set; } } }