|
@@ -4,12 +4,10 @@ public class MmInfoResume {
|
|
|
|
|
|
private Integer id;
|
|
|
private Integer servant_code;
|
|
|
- private Integer resume_code;
|
|
|
+ private Integer module_code;
|
|
|
private String resume_path;
|
|
|
-
|
|
|
- public MmInfoResume() {
|
|
|
- super();
|
|
|
- }
|
|
|
+ private String rqcode_path;
|
|
|
+ private String resume_comment;
|
|
|
|
|
|
public Integer getId() {
|
|
|
return id;
|
|
@@ -27,12 +25,12 @@ public class MmInfoResume {
|
|
|
this.servant_code = servant_code;
|
|
|
}
|
|
|
|
|
|
- public Integer getResume_code() {
|
|
|
- return resume_code;
|
|
|
+ public Integer getModule_code() {
|
|
|
+ return module_code;
|
|
|
}
|
|
|
|
|
|
- public void setResume_code(Integer resume_code) {
|
|
|
- this.resume_code = resume_code;
|
|
|
+ public void setModule_code(Integer module_code) {
|
|
|
+ this.module_code = module_code;
|
|
|
}
|
|
|
|
|
|
public String getResume_path() {
|
|
@@ -43,13 +41,19 @@ public class MmInfoResume {
|
|
|
this.resume_path = resume_path;
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "MmInfoResume{" +
|
|
|
- "id=" + id +
|
|
|
- ", servant_code='" + servant_code + '\'' +
|
|
|
- ", resume_code='" + resume_code + '\'' +
|
|
|
- ", resume_path='" + resume_path + '\'' +
|
|
|
- '}';
|
|
|
+ public String getRqcode_path() {
|
|
|
+ return rqcode_path;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRqcode_path(String rqcode_path) {
|
|
|
+ this.rqcode_path = rqcode_path;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getResume_comment() {
|
|
|
+ return resume_comment;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setResume_comment(String resume_comment) {
|
|
|
+ this.resume_comment = resume_comment;
|
|
|
}
|
|
|
}
|