using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MaterialTraceability.WebService.Param { /// /// 首工序获取SFC接口、自动入账接口、卷绕自动上料接口 /// public class MiFirstOperationForsfcServiceServiceParam { /// /// 设备所在的站点 /// public string site {get;set;} /// /// SFC /// public string sfc {get;set;} /// /// 托盘信息 /// public string processLot {get;set;} /// /// 工位 /// public string operation {get;set;} /// /// 工位版本 /// public string operationRevision {get;set;} /// /// 设备资源号 /// public string resource {get;set;} /// /// 操作用户 /// public string user {get;set;} /// /// 执行作业 /// public string activity {get;set;} /// /// 过账模式 /// public string modeProcessSfc { get; set; } public string url { get; set; } public string loginUser { get; set; } public string password { get; set; } } }