首次提交后端接口

This commit is contained in:
super
2026-01-27 20:48:47 +08:00
commit 40db55e85d
177 changed files with 18905 additions and 0 deletions

View 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;
}