|
@@ -1,5 +1,7 @@
|
|
package com.fuzamei.entity;
|
|
package com.fuzamei.entity;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 查询项目文档的实体类
|
|
* 查询项目文档的实体类
|
|
*
|
|
*
|
|
@@ -7,86 +9,41 @@ package com.fuzamei.entity;
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
public class ProjectFile {
|
|
public class ProjectFile {
|
|
- private Integer project_id;
|
|
|
|
- private String project_name;
|
|
|
|
- private Integer project_file_id;
|
|
|
|
- private String attachment_name;
|
|
|
|
- private String url;
|
|
|
|
- private Integer upload_person_id;
|
|
|
|
- private String create_time;
|
|
|
|
- private String update_time;
|
|
|
|
- private String hash;
|
|
|
|
-
|
|
|
|
|
|
+ private Integer id; //主键id
|
|
|
|
+ private Integer project_id; //项目id号
|
|
|
|
+ private String project_name; //项目名称
|
|
|
|
+ private String update_time; //更新时间
|
|
|
|
+ private List<Attachment> attachments; //附件集合
|
|
|
|
+ public Integer getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+ public void setId(Integer id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
public Integer getProject_id() {
|
|
public Integer getProject_id() {
|
|
return project_id;
|
|
return project_id;
|
|
}
|
|
}
|
|
-
|
|
|
|
public void setProject_id(Integer project_id) {
|
|
public void setProject_id(Integer project_id) {
|
|
this.project_id = project_id;
|
|
this.project_id = project_id;
|
|
}
|
|
}
|
|
-
|
|
|
|
public String getProject_name() {
|
|
public String getProject_name() {
|
|
return project_name;
|
|
return project_name;
|
|
}
|
|
}
|
|
-
|
|
|
|
public void setProject_name(String project_name) {
|
|
public void setProject_name(String project_name) {
|
|
this.project_name = project_name;
|
|
this.project_name = project_name;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public Integer getProject_file_id() {
|
|
|
|
- return project_file_id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setProject_file_id(Integer project_file_id) {
|
|
|
|
- this.project_file_id = project_file_id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getAttachment_name() {
|
|
|
|
- return attachment_name;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setAttachment_name(String attachment_name) {
|
|
|
|
- this.attachment_name = attachment_name;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getUrl() {
|
|
|
|
- return url;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUrl(String url) {
|
|
|
|
- this.url = url;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Integer getUpload_person_id() {
|
|
|
|
- return upload_person_id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUpload_person_id(Integer upload_person_id) {
|
|
|
|
- this.upload_person_id = upload_person_id;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getCreate_time() {
|
|
|
|
- return create_time;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCreate_time(String create_time) {
|
|
|
|
- this.create_time = create_time;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public String getUpdate_time() {
|
|
public String getUpdate_time() {
|
|
return update_time;
|
|
return update_time;
|
|
}
|
|
}
|
|
-
|
|
|
|
public void setUpdate_time(String update_time) {
|
|
public void setUpdate_time(String update_time) {
|
|
this.update_time = update_time;
|
|
this.update_time = update_time;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public String getHash() {
|
|
|
|
- return hash;
|
|
|
|
|
|
+ public List<Attachment> getAttachments() {
|
|
|
|
+ return attachments;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public void setHash(String hash) {
|
|
|
|
- this.hash = hash;
|
|
|
|
|
|
+ public void setAttachments(List<Attachment> attachments) {
|
|
|
|
+ this.attachments = attachments;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|