using System.Collections.Generic; namespace JinYuan.MES.Models { /// /// 箱唛/栈板信息获取接口参数类 /// public class QueryCartonPalletParam { /// /// 工厂代码 /// public string siteCode { get; set; } /// /// 产线编号 /// public string lineCode { get; set; } /// /// 设备编号 /// public string equipNum { get; set; } /// /// 卡板码 /// public string containerCode { get; set; } }; }