New file |
| | |
| | | package com.ruoyi.system.query; |
| | | |
| | | import com.ruoyi.common.core.web.page.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/8/10 14:10 |
| | | */ |
| | | @Data |
| | | @ApiModel |
| | | public class GetSysUserList extends BasePage { |
| | | @ApiModelProperty(value = "账号名称") |
| | | private String search; |
| | | @ApiModelProperty(value = "联系电话") |
| | | private String phonenumber; |
| | | @ApiModelProperty(value = "所属部门") |
| | | private Integer deptId; |
| | | private Integer objectId; |
| | | } |