68 lines
1.8 KiB
C#
68 lines
1.8 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///接口调用日志
|
|
///</summary>
|
|
[SugarTable("isvr_interfacecalllog")]
|
|
public partial class IsvrInterfacecalllog
|
|
{
|
|
public IsvrInterfacecalllog(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:日志id
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="logid")]
|
|
public int Logid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:客户端ip
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="clientip")]
|
|
public string? Clientip {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:接口服务
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="clienturl")]
|
|
public string? Clienturl {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:调用参数
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="clientkey")]
|
|
public string? Clientkey {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:调用时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="ctime")]
|
|
public DateTime? Ctime {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="clientkeyencode")]
|
|
public string? Clientkeyencode {get;set;}
|
|
|
|
}
|
|
}
|