Files
T-DAS/Epost.Model/SchedulingModel.cs
2023-01-13 15:30:20 +08:00

119 lines
4.3 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class SchedulingModel
{
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 string batchid { get; set; }
public string fromlocation { get; set; }
public string orderstate { get; set; }
public int truequantity { get; set; }
public int checkquantity { 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 State { get; set; }//状态
public string umcomplete { get; set; }//未完成
public string complete { get; set; }//完成
public string Sum { get; set; }//总和
public string Percentage { get; set; }//百分比
public string LINE_ID { get; set; }//线路顺序
public string WAREHOUSE_NAME { get; set; }//仓库名称
public string SEQUENCE { get; set; }//装载顺序
public int PageIndex { get; set; }
public int PageSize { get; set; }
//分享
public SchedulingModel()
{
}
public SchedulingModel(int ID, string shopid, string orderid, string tolocation, string boxcode, string downdate, int quantity, int truequantity, int PageSize, int PageIndex, long Row, string oprationtime, string shopname
)
{
//
this.umcomplete = umcomplete;
this.complete = complete;
this.Sum = Sum;
this.Percentage = Percentage;
this.ID = ID;
this.shopid = shopid;
this.orderid = orderid;
this.tolocation = tolocation;
this.boxcode = boxcode;
this.downdate = downdate;
this.quantity = quantity;
this.truequantity = truequantity;
this.PageIndex = PageIndex;
this.PageSize = PageSize;
this.Row = Row;
this.oprationtime = oprationtime;
this.shopname = shopname;
this.state = state;
//this.umcomplete = umcomplete;
//this.complete = complete;
//this.Sum = Sum;
//this.Percentage = Percentage;
}
public SchedulingModel(string orderid)
{
this.orderid = orderid;
}
}
}