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