121 lines
4.8 KiB
C#
121 lines
4.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Epost.Model
|
|
{
|
|
public class OrdersModel:Base
|
|
{
|
|
//public int PageIndex { get; set; }
|
|
//public int PageSize { get; set; }
|
|
public long Row { get; set; }
|
|
public int Count { get; set; }//Count
|
|
public int ID { get; set; }//ID
|
|
public string orderid { get; set; }
|
|
public string sku { get; set; }
|
|
public string matchid { get; set; }
|
|
public int quantity { get; set; }
|
|
public string tolocation { get; set; }
|
|
public int batchid { get; set; }
|
|
public string fromlocation { get; set; }
|
|
public string orderstate { get; set; }
|
|
public int truequantity { get; set; }
|
|
public int checkquantity { get; set; }
|
|
public int truecheckquantity { get; set; }
|
|
public string downdate { get; set; }
|
|
public string readtime { get; set; }
|
|
public string returntime { get; set; }
|
|
public string lighttime { get; set; }
|
|
public string oprationtime { get; set; }
|
|
public string oprationstate { get; set; }
|
|
public string shopid { get; set; }
|
|
public string classes { get; set; }
|
|
public string goodssize { get; set; }
|
|
public string oprationcode { get; set; }
|
|
public string boxcode { get; set; }
|
|
public string goodscode { get; set; }
|
|
public string corlorcode { get; set; }
|
|
public string sizecode { get; set; }
|
|
public string price { get; set; }
|
|
public string discount { get; set; }
|
|
public string supperliercode { get; set; }
|
|
public string clientcode { get; set; }
|
|
public string partcode { get; set; }
|
|
public string barcode { get; set; }
|
|
public string goodsname { get; set; }
|
|
public string goodstype { get; set; }
|
|
public string prodarea { get; set; }
|
|
public string lotno { get; set; }
|
|
public string tasktype { get; set; }
|
|
public string checkuser { get; set; }
|
|
public string prino { get; set; }
|
|
public string wmsboxcode { get; set; }
|
|
public string orderway { get; set; }
|
|
public string boxweight { get; set; }
|
|
public string clientname { get; set; }
|
|
public string bkbarcode { get; set; }
|
|
public string wmsorderid { get; set; }
|
|
public string shopname { get; set; }
|
|
public string goodsweight { get; set; }
|
|
public string state { get; set; }
|
|
public string warehouseid { get; set; }
|
|
public string Warehousename { get; set; }
|
|
public string Orderwayname { get; set; }
|
|
//public string Workblock { get; set; }
|
|
public string workblock { get; set; }
|
|
/// <summary>
|
|
public int uncomplete { get; set; }//未完成
|
|
public int complete { get; set; }//完成
|
|
public int Sum { get; set; }//总和
|
|
public string Percentage { get; set; }//百分比
|
|
|
|
public string name { get; set; }//门店名称
|
|
/// </summary>
|
|
//-----
|
|
public string LINE_ID { get; set; }//线路顺序
|
|
public string WAREHOUSE_NAME { get; set; }//仓库名称
|
|
public string SEQUENCE { get; set; }//装载顺序
|
|
public string unit { get => _unit; set => _unit = value; }
|
|
public string wholeunit { get => _wholeunit; set => _wholeunit = value; }
|
|
|
|
private string _unit = string.Empty;
|
|
private string _wholeunit = string.Empty;
|
|
|
|
|
|
public OrdersModel()
|
|
{
|
|
}
|
|
//public OrdersModel(string orderid, string goodstype, string goodsname, string discount,
|
|
// string tolocation, string matchid,
|
|
// string suppliercode, int quantity,int PageIndex,int PageSize)
|
|
//{
|
|
// this.orderid = orderid;
|
|
// this.goodstype = goodstype;
|
|
// this.goodsname = goodsname;
|
|
// this.discount = discount;
|
|
// this.tolocation = tolocation;
|
|
// this.matchid = matchid;
|
|
// this.supperliercode = supperliercode;
|
|
// this.quantity = quantity;
|
|
// this.PageIndex = PageIndex;
|
|
// this.PageSize = PageSize;
|
|
|
|
//}
|
|
////'ID',shopid as '门店号',orderid as '订单号',tolocation as '货位号',boxcode as '箱号',downdate as '下发时间',quantity as '应播种',truequantity as '已播种'
|
|
|
|
//public OrdersModel(int ID, string shopid, string orderid, string tolocation, string boxcode, string downdate, int quantity, int truequantity)
|
|
//{
|
|
// this.ID = ID;
|
|
// this.shopid = shopid;
|
|
// this.orderid = orderid;
|
|
// this.tolocation = tolocation;
|
|
// this.boxcode = boxcode;
|
|
// this.downdate = downdate;
|
|
// this.quantity = quantity;
|
|
// this.truequantity = truequantity;
|
|
//}
|
|
}
|
|
}
|