yuhdemo/jnpf-java-boot/jnpf-exception/src/main/java/jnpf/model/PaginationLogModel.java
2026-01-30 14:02:18 +08:00

35 lines
565 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package jnpf.model;
import jnpf.base.PaginationTime;
import lombok.Data;
/**
* 日志分页参数
*
* @author JNPF开发平台组
* @version: V3.1.0
* @copyright 引迈信息技术有限公司
* @date 2022/3/18 9:50
*/
@Data
public class PaginationLogModel extends PaginationTime {
/**
* 操作用户
*/
private String userName;
/**
* 操作ip
*/
private String ipaddress;
/**
* 操作模块
*/
private String moduleName;
/**
* 操作类型
*/
private String requestMethod;
}