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.
40 lines
1.0 KiB
40 lines
1.0 KiB
using System;
|
|
|
|
namespace XS_Model
|
|
{
|
|
/// <summary>
|
|
/// IO_INTERFACE_LOG实体类
|
|
/// </summary>
|
|
[Serializable]
|
|
public class IO_INTERFACE_LOG
|
|
{
|
|
/// <summary>
|
|
/// 顺序编码
|
|
/// </summary>
|
|
public decimal 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; }
|
|
}
|
|
}
|