|
@@ -1,5 +1,8 @@
|
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
+import com.ym.mec.biz.dal.enums.JobNatureEnum;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
@@ -28,6 +31,17 @@ public class TeacherServeDto {
|
|
|
|
|
|
private String operatorName;
|
|
|
|
|
|
+ @ApiModelProperty(value = "工作性质(兼职 PART_JOB、全职FULL_JOB)", required = false)
|
|
|
+ private JobNatureEnum jobNature;
|
|
|
+
|
|
|
+ public JobNatureEnum getJobNature() {
|
|
|
+ return jobNature;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJobNature(JobNatureEnum jobNature) {
|
|
|
+ this.jobNature = jobNature;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getTeacherId() {
|
|
|
return teacherId;
|
|
|
}
|