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.

75 lines
1.8 KiB
C#

using MaterialTraceability.WebService.MiBatchCompleteSfcAndAdujustQtyServiceService;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.WebService.Param
{
/// <summary>
/// 新自动完工接口请求参数
/// </summary>
public class MiBatchCompleteSfcAndAdujustQtyServiceServiceParam
{
/// <summary>
/// 设备所在的站点
/// </summary>
public string site { get; set; }
/// <summary>
/// 入账SFC
/// </summary>
public string sfcPre { get; set; }
/// <summary>
/// 入账托盘信息
/// </summary>
public string processLotPre { get; set; }
/// <summary>
/// 工位
/// </summary>
public string operation { get; set; }
/// <summary>
/// 工位版本
/// </summary>
public string operationRevision { get; set; }
/// <summary>
/// 设备资源号
/// </summary>
public string resource { get; set; }
/// <summary>
/// 操作用户
/// </summary>
public string user { get; set; }
/// <summary>
/// 执行作业
/// </summary>
public string activity { get; set; }
/// <summary>
/// 过账模式
/// </summary>
public ModeProcessSfc modeProcessSfc { get; set; }
public miBatchCompleteSfcAndAdujustQtySfcEntity[] sfcList { get; set; }
public string url { get; set; }
public string loginUser { get; set; }
public string password { get; set; }
/// <summary>
/// 最后一卷
/// </summary>
public string tailmark { get; set; }
}
}