File was renamed from business/src/main/java/com/ycl/domain/vo/ProjectProgressFileListsRequest.java |
| | |
| | | package com.ycl.domain.vo; |
| | | package com.ycl.domain.form; |
| | | |
| | | import com.ycl.domain.entity.File; |
| | | import lombok.AllArgsConstructor; |
| | |
| | | @Data |
| | | @AllArgsConstructor |
| | | @NoArgsConstructor |
| | | public class ProjectProgressFileListsRequest { |
| | | private Integer projectReportId; |
| | | public class ProjectProgressFileListsForm { |
| | | private Long projectReportId; |
| | | private List<File> completedReportFileList; |
| | | private List<File> situationDescriptionFileList; |
| | | } |