| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /*
- *
- * * | Licensed 未经许可不能去掉「OPENIITA」相关版权
- * * +----------------------------------------------------------------------
- * * | Author: xw2sy@163.com
- * * +----------------------------------------------------------------------
- *
- * Copyright [2024] [OPENIITA]
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * /
- */
- package cc.iotkit.data.model;
- import cc.iotkit.model.system.SysOperLog;
- import io.github.linpeilie.annotations.AutoMapper;
- import io.swagger.annotations.ApiModel;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import org.hibernate.annotations.GenericGenerator;
- import javax.persistence.*;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 操作日志记录表 oper_log
- *
- * @author Lion Li
- */
- @Data
- @Entity
- @Table(name = "oper_log")
- @AutoMapper(target = SysOperLog.class)
- @ApiModel(value = "操作日志记录表")
- public class TbSysOperLog implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 日志主键
- */
- @Id
- @GeneratedValue(generator = "SnowflakeIdGenerator")
- @GenericGenerator(name = "SnowflakeIdGenerator", strategy = "cc.iotkit.data.config.id.SnowflakeIdGenerator")
- @ApiModelProperty(value = "日志主键")
- private Long id;
- /**
- * 租户编号
- */
- @ApiModelProperty(value = "租户编号")
- private Long tenantId;
- /**
- * 操作模块
- */
- @ApiModelProperty(value = "操作模块")
- private String title;
- /**
- * 业务类型(0其它 1新增 2修改 3删除)
- */
- @ApiModelProperty(value = "业务类型(0其它 1新增 2修改 3删除)")
- private Integer businessType;
- /**
- * 请求方法
- */
- @ApiModelProperty(value = "请求方法")
- private String method;
- /**
- * 请求方式
- */
- @ApiModelProperty(value = "请求方式")
- private String requestMethod;
- /**
- * 操作类别(0其它 1后台用户 2手机端用户)
- */
- @ApiModelProperty(value = "操作类别(0其它 1后台用户 2手机端用户)")
- private Integer operatorType;
- /**
- * 操作人员
- */
- @ApiModelProperty(value = "操作人员")
- private String operName;
- /**
- * 部门名称
- */
- @ApiModelProperty(value = "部门名称")
- private String deptName;
- /**
- * 请求url
- */
- @ApiModelProperty(value = "请求url")
- private String operUrl;
- /**
- * 操作地址
- */
- @ApiModelProperty(value = "操作地址")
- private String operIp;
- /**
- * 操作地点
- */
- @ApiModelProperty(value = "操作地点")
- private String operLocation;
- /**
- * 请求参数
- */
- @ApiModelProperty(value = "请求参数")
- @Column(length = 2000)
- private String operParam;
- /**
- * 返回参数
- */
- @ApiModelProperty(value = "返回参数")
- @Column(length = 2000)
- private String jsonResult;
- /**
- * 操作状态(0正常 1异常)
- */
- @ApiModelProperty(value = "操作状态(0正常 1异常)")
- private Integer status;
- /**
- * 错误消息
- */
- @ApiModelProperty(value = "错误消息")
- @Column(length = 2000)
- private String errorMsg;
- /**
- * 操作时间
- */
- @ApiModelProperty(value = "操作时间")
- private Date operTime;
- /**
- * 消耗时间
- */
- @ApiModelProperty(value = "消耗时间")
- private Long costTime;
- }
|