吉安感知网项目-后端
xiebin
2026-01-16 041fa12f2b00770ed4592ece9bcd36a7ad3f687c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package org.sxkj.core.log.param;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @Description 操作日志查询参数
 * @Author AIX
 * @Date 2026/1/16 10:21
 * @Version 1.0
 */
@Data
public class OperationLogPageParam {
 
    @ApiModelProperty(value = "日志类型(0菜单/1按钮)")
    private String title;
 
    @ApiModelProperty(value = "操作人")
    private String createBy;
 
    @ApiModelProperty(value = "开始时间")
    private String startTime;
 
    @ApiModelProperty(value = "结束时间")
    private String endTime;
 
}