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.

63 lines
1.5 KiB
C#

using MaterialTraceability.WebService.MiReleaseSfcWithActivityServiceService;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.WebService.Param
{
/// <summary>
/// 涂布工单下达接口请求参数
/// </summary>
public class MiReleaseSfcWithActivityServiceServiceParam : BaseWebServiceParam
{
/// <summary>
/// 设备所在的站点
/// </summary>
public string site { get; set; }
/// <summary>
/// 操作用户
/// </summary>
public string user { get; set; }
/// <summary>
/// 工位
/// </summary>
public string operation { get; set; }
/// <summary>
/// 工位版本
/// </summary>
public string operationRevision { get; set; }
public string activityId { get; set; }
/// <summary>
/// 设备资源号
/// </summary>
public string Resource { get; set; }
public decimal sfcQty { get; set; }
public string processlot { get; set; }
/// <summary>
/// 过站模式
/// </summary>
public modeProcessSFC modeProcessSfc { get; set; }
public bool isCarrierType { get; set; }
public columnOrRow ColumnOrRowFirst { get; set; }
public string[] location { get; set; }
/// <summary>
/// DC参数数组
/// </summary>
public string[] parameterArray { get; set; }
}
}