|
|
@@ -1,15 +1,25 @@
|
|
|
package com.xunmei.system.api.domain;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.xunmei.common.core.web.domain.BaseEntity;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* 操作日志记录表 oper_log
|
|
|
- *
|
|
|
+ *
|
|
|
* @author xunmei
|
|
|
*/
|
|
|
+@EqualsAndHashCode(callSuper = false)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("sys_oper_log")
|
|
|
+@ApiModel(value = "SysOperLog对象", description = "【请填写功能名称】")
|
|
|
public class SysOperLog extends BaseEntity
|
|
|
{
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
@@ -24,6 +34,7 @@ public class SysOperLog extends BaseEntity
|
|
|
private Integer businessType;
|
|
|
|
|
|
/** 业务类型数组 */
|
|
|
+ @TableField(exist = false)
|
|
|
private Integer[] businessTypes;
|
|
|
|
|
|
/** 请求方法 */
|