You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
695 B
C#

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