Commit 8d33467d by jianan

操作日志3

parent ba97fa1a
package com.yd.csf.api.dto;
import com.yd.common.dto.PageDto;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class AuditLogQueryRequest extends PageDto {
@Schema(description = "业务模块")
private String module;
@Schema(description = "操作人")
private String operName;
@Schema(description = "操作结果:0-成功 1-失败")
private Integer status;
@Schema(description = "操作时间开始")
private String startTime;
@Schema(description = "操作时间结束")
private String endTime;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment