luohairen
2024-11-29 40d262e091d43b15c082260b7279daf4e89b2799
1
2
3
4
5
6
7
8
9
10
11
12
package com.ycl.domain.form;
 
import com.ycl.domain.entity.File;
import lombok.Data;
 
import java.util.List;
 
@Data
public class DocumentInfoForm {
    private List<File> fileList;
    private Long projectId;
}