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 fileFormats; private List dictIds; private Long sysUserId; private String useType; }