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.
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
using MaterialTraceability.WebService.MachineIntegrationServiceService;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaterialTraceability.WebService.Param
|
|
{
|
|
/// <summary>
|
|
/// 数据上传参数
|
|
/// </summary>
|
|
public class MachineIntegrationServiceParam : BaseWebServiceParam
|
|
{
|
|
/// <summary>
|
|
/// 设备所在的站点
|
|
/// </summary>
|
|
public string site { get; set; }
|
|
public string user { get; set; }
|
|
/// <summary>
|
|
/// SFC
|
|
/// </summary>
|
|
public string sfc { get; set; }
|
|
|
|
public string operation { get; set; }
|
|
|
|
public string operationRevision { get; set; }
|
|
|
|
public string activityId { get; set; }
|
|
|
|
public string resource { get; set; }
|
|
|
|
public string dcGroup { get; set; }
|
|
|
|
public string dcGroupRevision { get; set; }
|
|
|
|
public string ncGroup { get; set; }
|
|
|
|
public string parametricDatas { get; set; }
|
|
|
|
public string ncCodes { get; set; }
|
|
|
|
public string searchSfcByShopOrder { get; set; }
|
|
|
|
public ModeProcessSfc modeProcessSfc { get; set; }
|
|
|
|
public machineIntegrationParametricData[] parametricArray { get; set; }
|
|
|
|
}
|
|
}
|
|
|