|
@@ -25,6 +25,9 @@ public class EmployeeInfoQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "职位", required = false)
|
|
|
private JobTypeEnum position;
|
|
|
|
|
|
+ @ApiModelProperty(value = "意向城市", required = false)
|
|
|
+ private String intentionCity;
|
|
|
+
|
|
|
@ApiModelProperty(value = "状态", required = false)
|
|
|
private StaffStatusEnum status;
|
|
|
|
|
@@ -105,4 +108,12 @@ public class EmployeeInfoQueryInfo extends QueryInfo {
|
|
|
public void setOperator(String operator) {
|
|
|
this.operator = operator;
|
|
|
}
|
|
|
+
|
|
|
+ public String getIntentionCity() {
|
|
|
+ return intentionCity;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIntentionCity(String intentionCity) {
|
|
|
+ this.intentionCity = intentionCity;
|
|
|
+ }
|
|
|
}
|