using System; using System.Linq; using System.Text; using SqlSugar; namespace Model.Entities { /// /// /// [SugarTable("sys_operate_log")] public partial class sys_operate_log { public sys_operate_log(){ } /// /// Desc:日志主键 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public long operate_id {get;set;} /// /// Desc:模块标题 /// Default: /// Nullable:True /// public string title {get;set;} /// /// Desc:业务类型(0其它 1新增 2修改 3删除) /// Default: /// Nullable:False /// public int business_type {get;set;} /// /// Desc:方法名称 /// Default: /// Nullable:True /// public string method {get;set;} /// /// Desc:请求方式 /// Default: /// Nullable:True /// public string request_method {get;set;} /// /// Desc:操作类别(0其它 1后台用户 2手机端用户) /// Default: /// Nullable:False /// public int operator_type {get;set;} /// /// Desc:操作人员 /// Default: /// Nullable:True /// public string oper_name {get;set;} /// /// Desc:部门名称 /// Default: /// Nullable:True /// public string dept_name {get;set;} /// /// Desc:请求URL /// Default: /// Nullable:True /// public string oper_url {get;set;} /// /// Desc:主机地址 /// Default: /// Nullable:True /// public string oper_ip {get;set;} /// /// Desc:操作地点 /// Default: /// Nullable:True /// public string oper_location {get;set;} /// /// Desc:请求参数 /// Default: /// Nullable:True /// public string oper_param {get;set;} /// /// Desc:返回参数 /// Default: /// Nullable:True /// public string json_result {get;set;} /// /// Desc:操作状态(0正常 1异常) /// Default: /// Nullable:False /// public int status {get;set;} /// /// Desc:错误消息 /// Default: /// Nullable:True /// public string error_msg {get;set;} /// /// Desc:操作时间 /// Default: /// Nullable:True /// public DateTime? operate_time {get;set;} /// /// Desc:请求用时 /// Default: /// Nullable:True /// public long? elapsed {get;set;} } }