com.didiglobal.logi.security.common.dto.oplog.OplogQueryDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logi-security-spring-boot-starter Show documentation
Show all versions of logi-security-spring-boot-starter Show documentation
logi-security 提供项目大多都需要的一些基础功能(用户、角色、权限、登录、注册、操作记录)
package com.didiglobal.logi.security.common.dto.oplog;
import com.didiglobal.logi.security.common.dto.PageParamDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* @author cjm
*/
@EqualsAndHashCode(callSuper = true)
@Data
@ApiModel(description = "操作日志查找条件信息")
public class OplogQueryDTO extends PageParamDTO {
/**
* 操作类型
*/
@ApiModelProperty(value = "操作类型(精确)", dataType = "String", required = false)
private String operateType;
/**
* 操作者ip
*/
@ApiModelProperty(value = "操作者详情(模糊)", dataType = "String", required = false)
private String detail;
/**
* 操作者用户账号
*/
@ApiModelProperty(value = "操作者用户账号(模糊)", dataType = "String", required = false)
private String operator;
/**
* 操作对象
*/
@ApiModelProperty(value = "操作对象(模糊)", dataType = "String", required = false)
private String target;
/**
* 操作对象
*/
@ApiModelProperty(value = "操作模块(精确)", dataType = "String", required = false)
private String targetType;
/**
* 操作方法
*/
@ApiModelProperty(value = "操作方式(精确)", dataType = "String", required = false)
private String operationMethods;
/**
* 操作起始时间
*/
@ApiModelProperty(value = "操作起始时间(时间戳ms)", dataType = "Long", required = false)
private Long startTime;
/**
* 操作结束时间
*/
@ApiModelProperty(value = "操作结束时间(时间戳ms)", dataType = "Long", required = false)
private Long endTime;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy