| | |
| | | import org.apache.ibatis.type.Alias; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | import java.beans.Transient; |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | @Alias("ProjectManage") |
| | | @TableName(schema = "db_experiment",value = "tb_project_manage") |
| | | public class ProjectManage implements Serializable { |
| | | |
| | | /** |
| | | * 存文件地址 |
| | | */ |
| | | private ArrayList<String> fileList ; |
| | | |
| | | private Integer num; |
| | | |
| | | /** |
| | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | public ArrayList<String> getFileList() { |
| | | return fileList; |
| | | } |
| | | |
| | | public void setFileList(ArrayList<String> fileList) { |
| | | this.fileList = fileList; |
| | | } |
| | | |
| | | public Integer getNum() { |
| | | return num; |
| | | } |