• This project
    • Loading...
  • Sign in

crp / crp-operation

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • crp-operation
  • ..
  • dto
  • OperationLogDto.java
  • 日志查询字段修改 · d2e3ee1f
    d2e3ee1f Browse Files
    wanghongbo authored 2025-08-20 10:12:58 +0800
OperationLogDto.java 329 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.wondertek.dto;

import lombok.Data;
import org.springframework.web.bind.annotation.RequestParam;

/**
 * @Description: 日志查询参数
 * @Author W5669
 * @Create 2025/8/14
 * @Version 1.0
 */
@Data
public class OperationLogDto {
    private String name;
    private Integer page=1;
    private Integer size=10;
}