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.
44 lines
1.1 KiB
44 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XS_Model
|
|
{
|
|
/// <summary>
|
|
/// IO_INTERFACE实体类
|
|
/// </summary>
|
|
[Serializable]
|
|
public class IO_INTERFACE
|
|
{
|
|
/// <summary>
|
|
/// 顺序编码
|
|
/// </summary>
|
|
public int INTERFACE_ID { get; set; }
|
|
/// <summary>
|
|
/// 接口名称
|
|
/// </summary>
|
|
public string INTERFACE_NAME { get; set; }
|
|
/// <summary>
|
|
/// 接口数据流向
|
|
/// </summary>
|
|
public string INTERFACE_FLOW { get; set; }
|
|
/// <summary>
|
|
/// 接口请求
|
|
/// </summary>
|
|
public string INTERFACE_REQUEST { get; set; }
|
|
/// <summary>
|
|
/// 接口返回
|
|
/// </summary>
|
|
public string INTERFACE_FEEDBACK { get; set; }
|
|
/// <summary>
|
|
/// 时间
|
|
/// </summary>
|
|
public string INTERFACE_DATETIME { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string INTERFACE_MENO{ get; set; }
|
|
}
|
|
}
|