35 lines
844 B
C#
35 lines
844 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JY.MES.MES
|
|
{
|
|
/// <summary>
|
|
/// 产品进站响应信息
|
|
/// </summary>
|
|
public class RespArrivalStation
|
|
{
|
|
/// <summary>
|
|
/// 错误代码,成功不返回
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 成功标识,false失败 true 成功
|
|
/// </summary>
|
|
public bool Success { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数据处理消息,成功不返回
|
|
/// </summary>
|
|
public string Message { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报错消息类型 A:停线、B:排出、C:忽略(需警示)
|
|
/// </summary>
|
|
public string Category { get; set; }
|
|
}
|
|
}
|