|
@@ -42,6 +42,9 @@ public class EmployeeSearch extends QueryInfo{
|
|
|
@ApiModelProperty("用户状态")
|
|
|
private String userStatus;
|
|
|
|
|
|
+ @ApiModelProperty("是否客服")
|
|
|
+ private Boolean customerService;
|
|
|
+
|
|
|
public String getSearch() {
|
|
|
return search;
|
|
|
}
|
|
@@ -111,4 +114,12 @@ public class EmployeeSearch extends QueryInfo{
|
|
|
public void setUserStatus(String userStatus) {
|
|
|
this.userStatus = userStatus;
|
|
|
}
|
|
|
+
|
|
|
+ public Boolean getCustomerService() {
|
|
|
+ return customerService;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCustomerService(Boolean customerService) {
|
|
|
+ this.customerService = customerService;
|
|
|
+ }
|
|
|
}
|