天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

55 lines
1.5 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QMAPP.FJC.TRACING.DAInterface
{
/// <summary>
/// 采集输入参数
/// </summary>
[Serializable]
public class DAArgs
{
/// <summary>
/// 工序编码
/// </summary>
public string WorkCellCode { get; set; }
/// <summary>
/// 工位编码
/// </summary>
public string WorkLocCode { get; set; }
/// <summary>
/// 采集点编码
/// </summary>
public string DACode { get; set; }
/// <summary>
/// 采集点值
/// </summary>
public object DAValue { get; set; }
/// <summary>
/// 物料号
/// </summary>
public string MaterialCode { get; set; }
/// <summary>
/// 设备代码
/// </summary>
public string MachineCode { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string MachineName { get; set; }
/// <summary>
/// 设备控制类型 0:不发送不读取 1:只发送不读取 2:不发送至读取 3:即发送也读取
/// </summary>
public string IsControl { get; set; }
/// <summary>
/// 模架号
/// </summary>
public string MouldCode { get; set; }
/// <summary>
/// 附加数据
/// </summary>
public Dictionary<string, string> AttachData { get; set; }
}
}