package com.iailab.module.system.controller.admin.tenant.vo.tenant;
|
|
import cn.hutool.core.util.ObjectUtil;
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import org.hibernate.validator.constraints.Length;
|
|
import javax.validation.constraints.AssertTrue;
|
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.Pattern;
|
import javax.validation.constraints.Size;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - 租户创建/修改 Request VO")
|
@Data
|
public class TenantSaveReqVO {
|
|
@Schema(description = "租户编号", example = "1024")
|
private Long id;
|
|
@Schema(description = "租户名", requiredMode = Schema.RequiredMode.REQUIRED, example = "平台")
|
@NotNull(message = "租户名不能为空")
|
private String name;
|
|
@Schema(description = "联系人", requiredMode = Schema.RequiredMode.REQUIRED, example = "iailab")
|
@NotNull(message = "联系人不能为空")
|
private String contactName;
|
|
@Schema(description = "联系手机", example = "15601691300")
|
private String contactMobile;
|
|
@Schema(description = "租户状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
@NotNull(message = "租户状态")
|
private Integer status;
|
|
@Schema(description = "绑定域名", example = "https://www.baidu.com")
|
private String website;
|
|
@Schema(description = "租户套餐编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@NotNull(message = "租户套餐编号不能为空")
|
private Long packageId;
|
|
@Schema(description = "数据源", example = "1024")
|
@NotNull(message = "数据源")
|
private Long dataSourceConfigId;
|
|
@Schema(description = "过期时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
@NotNull(message = "过期时间不能为空")
|
private LocalDateTime expireTime;
|
|
@Schema(description = "账号数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
@NotNull(message = "账号数量不能为空")
|
private Integer accountCount;
|
|
// ========== 仅【创建】时,需要传递的字段 ==========
|
|
@Schema(description = "用户账号", requiredMode = Schema.RequiredMode.REQUIRED, example = "iailab")
|
@Pattern(regexp = "^[a-zA-Z0-9]{4,30}$", message = "用户账号由 数字、字母 组成")
|
@Size(min = 4, max = 30, message = "用户账号长度为 4-30 个字符")
|
private String username;
|
|
@Schema(description = "密码", requiredMode = Schema.RequiredMode.REQUIRED, example = "123456")
|
@Length(min = 4, max = 16, message = "密码长度为 4-16 位")
|
private String password;
|
|
@AssertTrue(message = "用户账号、密码不能为空")
|
@JsonIgnore
|
public boolean isUsernameValid() {
|
return id != null // 修改时,不需要传递
|
|| (ObjectUtil.isAllNotEmpty(username, password)); // 新增时,必须都传递 username、password
|
}
|
|
}
|