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.
98 lines
2.9 KiB
98 lines
2.9 KiB
3 days ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using SqlSugar;
|
||
|
namespace medical.transfomer.entity
|
||
|
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 医保交易日志表
|
||
|
///</summary>
|
||
|
[SugarTable("STD_TRANSACTION_LOG")]
|
||
|
public class STD_TRANSACTION_LOG
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 备 注:日志ID
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="LOG_ID", IsPrimaryKey = true, IsIdentity = true)]
|
||
|
public decimal? LOG_ID { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:方法ID
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="METHOD_ID")]
|
||
|
public string METHOD_ID { get; set; } = null!;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:方法名称
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="METHOD_NAME")]
|
||
|
public string METHOD_NAME { get; set; } = null!;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:请求时间
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="REQUEST_TIME")]
|
||
|
public DateTime REQUEST_TIME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:请求数据
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="REQUEST_DATA", ColumnDataType = "CLOB", IsNullable = true)]
|
||
|
public string? REQUEST_DATA { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:响应时间
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="RESPONSE_TIME")]
|
||
|
public DateTime RESPONSE_TIME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:响应数据
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="RESPONSE_DATA", ColumnDataType = "CLOB", IsNullable = true)]
|
||
|
public string? RESPONSE_DATA { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:状态(1:成功, 0:失败)
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="STATUS")]
|
||
|
public int STATUS { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:错误信息
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="ERROR_MESSAGE", IsNullable = true)]
|
||
|
public string? ERROR_MESSAGE { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:交易耗时(毫秒)
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="ELAPSED_TIME", IsNullable = true)]
|
||
|
public long? ELAPSED_TIME { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:IP地址
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="CLIENT_IP", IsNullable = true)]
|
||
|
public string? CLIENT_IP { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备 注:用户ID
|
||
|
/// 默认值:
|
||
|
///</summary>
|
||
|
[SugarColumn(ColumnName="USER_ID", IsNullable = true)]
|
||
|
public string? USER_ID { get; set; }
|
||
|
}
|
||
|
}
|