| 123456789101112131415161718 |
- package com.xjrsoft.module.system.dto;
- import com.xjrsoft.common.page.ListInput;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import org.hibernate.validator.constraints.Length;
- /**
- * @Author: tzx
- * @Date: 2022/7/28 9:34
- */
- @Data
- public class FileDownloadDto {
- /**
- * 文件夹id
- */
- private Long folderId;
- }
|