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.
39 lines
803 B
39 lines
803 B
11 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace SiaSun.LMS.Model
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// MES 接口重试报文表
|
||
|
/// </summary>
|
||
|
public class MES_INTERFACE_RETRY
|
||
|
{
|
||
|
private int _id;
|
||
|
private string _who;
|
||
|
private string _bizType;
|
||
|
private string _message;
|
||
|
|
||
|
/// <summary>
|
||
|
/// ID
|
||
|
/// </summary>
|
||
|
public int ID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 任务号
|
||
|
/// </summary>
|
||
|
public string WHO { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 业务类型
|
||
|
/// </summary>
|
||
|
public string BIZ_TYPE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 重试报文信息
|
||
|
/// </summary>
|
||
|
public string MESSAGE { get; set; }
|
||
|
}
|
||
|
}
|