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