171 lines
3.9 KiB
C#
171 lines
3.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class DownLoadOrdersModel
|
|
{
|
|
private string _OrderID = string.Empty;
|
|
private string _DownDate = string.Empty;
|
|
private string _Classes = string.Empty;//类别1 订单任务 2 盘点任务
|
|
|
|
public string OrderID
|
|
{
|
|
get
|
|
{
|
|
return _OrderID;
|
|
}
|
|
|
|
set
|
|
{
|
|
_OrderID = value;
|
|
}
|
|
}
|
|
public string DownDate
|
|
{
|
|
get
|
|
{
|
|
return _DownDate;
|
|
}
|
|
|
|
set
|
|
{
|
|
_DownDate = value;
|
|
}
|
|
}
|
|
public List<DetailModel> DetailList
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Classes { get => _Classes; set => _Classes = value; }
|
|
}
|
|
public class DetailModel
|
|
{
|
|
|
|
private string _BatchId = string.Empty;
|
|
private string _Sku = string.Empty;
|
|
private string _GoodsName = string.Empty;
|
|
private string _Tolocation = string.Empty;
|
|
private int _Quantity = 0;
|
|
private string _LotNo = string.Empty;
|
|
private string _Shopid = string.Empty;
|
|
private string _Wmsboxcode = string.Empty;
|
|
private string _Discount = string.Empty;
|
|
private string _GoodsType = string.Empty;
|
|
private string _CorlorCode = string.Empty;
|
|
private string _Manufactor = string.Empty;//厂家
|
|
private string _EffectivePeriod = string.Empty;//效期
|
|
private int _Stock = 0;//库存
|
|
private string _WindowNO = string.Empty;//药房窗口
|
|
private string _BgColor = string.Empty;//设备背景色
|
|
public string BatchId
|
|
{
|
|
get
|
|
{
|
|
return _BatchId;
|
|
}
|
|
|
|
set
|
|
{
|
|
_BatchId = value;
|
|
}
|
|
}
|
|
|
|
public string Sku
|
|
{
|
|
get
|
|
{
|
|
return _Sku;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Sku = value;
|
|
}
|
|
}
|
|
|
|
public string GoodsName
|
|
{
|
|
get
|
|
{
|
|
return _GoodsName;
|
|
}
|
|
|
|
set
|
|
{
|
|
_GoodsName = value;
|
|
}
|
|
}
|
|
|
|
public string Tolocation
|
|
{
|
|
get
|
|
{
|
|
return _Tolocation;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Tolocation = value;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public string LotNo
|
|
{
|
|
get
|
|
{
|
|
return _LotNo;
|
|
}
|
|
|
|
set
|
|
{
|
|
_LotNo = value;
|
|
}
|
|
}
|
|
|
|
public string Shopid
|
|
{
|
|
get
|
|
{
|
|
return _Shopid;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Shopid = value;
|
|
}
|
|
}
|
|
|
|
public string Wmsboxcode
|
|
{
|
|
get
|
|
{
|
|
return _Wmsboxcode;
|
|
}
|
|
|
|
set
|
|
{
|
|
_Wmsboxcode = value;
|
|
}
|
|
}
|
|
|
|
public string Manufactor { get => _Manufactor; set => _Manufactor = value; }
|
|
public string EffectivePeriod { get => _EffectivePeriod; set => _EffectivePeriod = value; }
|
|
|
|
public string Discount { get => _Discount; set => _Discount = value; }
|
|
public string GoodsType { get => _GoodsType; set => _GoodsType = value; }
|
|
public string CorlorCode { get => _CorlorCode; set => _CorlorCode = value; }
|
|
public int Quantity { get => _Quantity; set => _Quantity = value; }
|
|
public string WindowNO { get => _WindowNO; set => _WindowNO = value; }
|
|
public string BgColor { get => _BgColor; set => _BgColor = value; }
|
|
public int Stock { get => _Stock; set => _Stock = value; }
|
|
}
|
|
|
|
}
|