| | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | /** |
| | | * @author mitao |
| | | * @date 2024/3/13 |
| | | */ |
| | | @ApiModel("部门条件查询对象") |
| | | @Data |
| | | @ApiModel("部门条件查询对象") |
| | | @EqualsAndHashCode(callSuper = true) |
| | | public class DeptQuery extends BasePage { |
| | | |
| | | private static final long serialVersionUID = 2925694647205543161L; |
| | | |
| | | @ApiModelProperty("部门名称") |
| | | private String areaName; |
| | | |
| | | @ApiModelProperty(value = "登录账号") |
| | | private String account; |
| | | private String userName; |
| | | |
| | | @ApiModelProperty(value = "联系电话") |
| | | private String phone; |