首次提交后端接口
This commit is contained in:
26
src/main/java/com/nanxiislet/admin/dto/system/UserQuery.java
Normal file
26
src/main/java/com/nanxiislet/admin/dto/system/UserQuery.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package com.nanxiislet.admin.dto.system;
|
||||
|
||||
import com.nanxiislet.admin.common.base.BasePageQuery;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 用户查询参数
|
||||
*
|
||||
* @author NanxiIslet
|
||||
* @since 2026-01-09
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class UserQuery extends BasePageQuery {
|
||||
|
||||
@Schema(description = "角色编码")
|
||||
private String role;
|
||||
|
||||
@Schema(description = "部门ID")
|
||||
private Long deptId;
|
||||
|
||||
@Schema(description = "状态 0-禁用 1-正常")
|
||||
private Integer status;
|
||||
}
|
||||
Reference in New Issue
Block a user