• 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
  • BackupMaterialDto.java
  • 素材库接口 · 107352d1
    107352d1 Browse Files
    wanghongbo authored 2025-08-18 17:20:53 +0800
BackupMaterialDto.java 228 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.wondertek.dto;

import lombok.Data;

@Data
public class BackupMaterialDto {

    private Long id;

    /** 垫片名称 */
    private String backupName ;

    private Integer page=1;

    private Integer size=10;
}