using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.Util { /// /// 界面传递的json格式对象 /// public class ViewParams { /// /// 供应商编码 /// public string txt_Supper { get; set; } /// /// 仓库编码 /// public string txt_WarehouseNo { get; set; } public string txt_F_BATCHNO { get; set; } public int txt_BarCodeNum { get; set; } public DateTime? txt_ProDate { get; set; } public string txt_ProOrder { get; set; } public string txt_F_VERSION { get; set; } public string txt_BoxNo { get; set; } public string txt_F_GEAR { get; set; } public string txt_F_MATSPE { get; set; } public string txt_F_PACKMETHOD { get; set; } public string txt_WareaNo { get; set; } public string txt_WareaCellNo { get; set; } public string txt_MatNo { get; set; } public string txt_BarCodeType { get; set; } /// /// 打印内容:补打时有效 /// public string txt_BarCode { get; set; } /// /// 打印原因 /// public string txt_PRINGCAUSAL { get; set; } /// /// 标签重复数 /// public int? txt_OverNum { get; set; } /// /// 打印标签数 /// public int? txt_PrintNum { get; set; } /// /// 开始数量 /// public int? txt_PrintSta { get; set; } /// /// 结束数量 /// public int? txt_PrintEnd { get; set; } } }