123456789101112131415161718 |
- package com.fdkankan.manage.vo.request;
- import com.baomidou.mybatisplus.annotation.TableField;
- import lombok.Data;
- import java.util.List;
- @Data
- public class DictFileParam extends RequestBase{
- private String name;
- private Integer dictId;
- private String typeKey;
- private Integer fileType;
- private List<String> fileFormats;
- private List<Integer> dictIds;
- private Long sysUserId;
- private String useType;
- }
|