using MaterialTraceability.WebService.MachineIntegrationServiceService; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MaterialTraceability.WebService.Param { /// /// 数据上传参数 /// public class MachineIntegrationServiceParam : BaseWebServiceParam { /// /// 设备所在的站点 /// public string site { get; set; } public string user { get; set; } /// /// SFC /// 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; } } }