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.
66 lines
1.5 KiB
C#
66 lines
1.5 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 MiFirstOperationForsfcServiceServiceParam
|
|
{
|
|
/// <summary>
|
|
/// 设备所在的站点
|
|
/// </summary>
|
|
public string site {get;set;}
|
|
|
|
/// <summary>
|
|
/// SFC
|
|
/// </summary>
|
|
public string sfc {get;set;}
|
|
|
|
/// <summary>
|
|
/// 托盘信息
|
|
/// </summary>
|
|
public string processLot {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 string modeProcessSfc { get; set; }
|
|
|
|
public string url { get; set; }
|
|
|
|
public string loginUser { get; set; }
|
|
|
|
public string password { get; set; }
|
|
}
|
|
}
|