- 新增应用密钥凭证的创建、重置和状态管理功能 - 实现AppSecret自动生成功能并添加脱敏显示机制 - 增加应用操作动态的最新记录查询和批量清理功能 - 添加应用成员邀请和角色修改功能 - 优化查询条件支持精确匹配和租户隔离 - 集成网站信息关联查询并完善数据脱敏处理
60 lines
1.7 KiB
Java
60 lines
1.7 KiB
Java
package com.gxwebsoft.app.param;
|
|
|
|
import com.gxwebsoft.common.core.annotation.QueryField;
|
|
import com.gxwebsoft.common.core.annotation.QueryType;
|
|
import com.gxwebsoft.common.core.web.BaseParam;
|
|
import com.fasterxml.jackson.annotation.JsonInclude;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 应用成员查询参数
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2026-03-28 21:29:44
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
@Schema(name = "AppUserParam对象", description = "应用成员查询参数")
|
|
public class AppUserParam extends BaseParam {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Schema(description = "自增ID")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Long id;
|
|
|
|
@Schema(description = "关联应用ID")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Long websiteId;
|
|
|
|
@Schema(description = "用户ID")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer userId;
|
|
|
|
@Schema(description = "用户名(模糊搜索)")
|
|
private String username;
|
|
|
|
@Schema(description = "角色: owner/admin/developer/viewer")
|
|
@QueryField(type = QueryType.EQ)
|
|
private String role;
|
|
|
|
@Schema(description = "邀请人用户ID")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Long inviteBy;
|
|
|
|
@Schema(description = "排序(数字越小越靠前)")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer sortNumber;
|
|
|
|
@Schema(description = "状态, 0正常, 1冻结")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer status;
|
|
|
|
@Schema(description = "租户ID")
|
|
@QueryField(type = QueryType.EQ)
|
|
private Integer tenantId;
|
|
|
|
}
|