疯狂的狮子li
2022-07-07 d9e54388e7fde2462e8b7e0165c5e7da3f202593
ruoyi-system/src/main/java/com/ruoyi/system/domain/bo/SysOssConfigBo.java
@@ -3,7 +3,6 @@
import com.ruoyi.common.core.domain.BaseEntity;
import com.ruoyi.common.core.validate.AddGroup;
import com.ruoyi.common.core.validate.EditGroup;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -21,20 +20,17 @@
@Data
@EqualsAndHashCode(callSuper = true)
@Schema(name = "对象存储配置业务对象")
public class SysOssConfigBo extends BaseEntity {
    /**
     * 主建
     */
    @Schema(name = "主建", required = true)
    @NotNull(message = "主建不能为空", groups = {EditGroup.class})
    private Long ossConfigId;
    /**
     * 配置key
     */
    @Schema(name = "配置key", required = true)
    @NotBlank(message = "配置key不能为空", groups = {AddGroup.class, EditGroup.class})
    @Size(min = 2, max = 100, message = "configKey长度必须介于2和20 之间")
    private String configKey;
@@ -42,7 +38,6 @@
    /**
     * accessKey
     */
    @Schema(name = "accessKey", required = true)
    @NotBlank(message = "accessKey不能为空", groups = {AddGroup.class, EditGroup.class})
    @Size(min = 2, max = 100, message = "accessKey长度必须介于2和100 之间")
    private String accessKey;
@@ -50,7 +45,6 @@
    /**
     * 秘钥
     */
    @Schema(name = "secretKey", required = true)
    @NotBlank(message = "secretKey不能为空", groups = {AddGroup.class, EditGroup.class})
    @Size(min = 2, max = 100, message = "secretKey长度必须介于2和100 之间")
    private String secretKey;
@@ -58,7 +52,6 @@
    /**
     * 桶名称
     */
    @Schema(name = "桶名称", required = true)
    @NotBlank(message = "桶名称不能为空", groups = {AddGroup.class, EditGroup.class})
    @Size(min = 2, max = 100, message = "bucketName长度必须介于2和100之间")
    private String bucketName;
@@ -66,13 +59,11 @@
    /**
     * 前缀
     */
    @Schema(name = "前缀")
    private String prefix;
    /**
     * 访问站点
     */
    @Schema(name = "访问站点", required = true)
    @NotBlank(message = "访问站点不能为空", groups = {AddGroup.class, EditGroup.class})
    @Size(min = 2, max = 100, message = "endpoint长度必须介于2和100之间")
    private String endpoint;
@@ -80,37 +71,31 @@
    /**
     * 自定义域名
     */
    @Schema(name = "自定义域名")
    private String domain;
    /**
     * 是否https(Y=是,N=否)
     */
    @Schema(name = "是否https(Y=是,N=否)")
    private String isHttps;
    /**
     * 状态(0=正常,1=停用)
     */
    @Schema(name = "状态(0=正常,1=停用)")
    private String status;
    /**
     * 域
     */
    @Schema(name = "域")
    private String region;
    /**
     * 扩展字段
     */
    @Schema(name = "扩展字段")
    private String ext1;
    /**
     * 备注
     */
    @Schema(name = "备注")
    private String remark;
}