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.

51 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MaterialTraceability.WebService.Param
{
/// <summary>
/// 注销SFC接口请求参数
/// </summary>
public class MiSignOffSFCsServiceServiceParam : 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 string amount { get; set; }
/// <summary>
/// SFC模组号
/// </summary>
public string sfc {get;set;}
public string[] sfcDataArray { get;set; }
}
}