using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MaterialTraceability.WebService.Param { /// /// 托盘绑定与解绑接口请求参数 /// public class ProcessLotServiceWSServiceParam : BaseWebServiceParam { /// /// 设备所在的站点 /// public string site { get; set; } /// /// 托盘码 /// public string processlotref { get; set; } /// /// 膜卷号 /// public string[] memberlist { get; set; } } }