parent
d48aa55395
commit
6084e7b29a
@ -1,47 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright 2020 OPSLI 快速开发平台 https://www.opsli.com
|
|
||||||
* <p>
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
||||||
* use this file except in compliance with the License. You may obtain a copy of
|
|
||||||
* the License at
|
|
||||||
* <p>
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
* <p>
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
||||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
||||||
* License for the specific language governing permissions and limitations under
|
|
||||||
* the License.
|
|
||||||
*/
|
|
||||||
package org.opsli.plugins.oss.conf;
|
|
||||||
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
|
||||||
import lombok.Data;
|
|
||||||
import org.opsli.common.annotation.validation.ValidationArgs;
|
|
||||||
import org.opsli.common.annotation.validation.ValidationArgsLenMax;
|
|
||||||
import org.opsli.common.enums.ValiArgsType;
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 本地存储配置
|
|
||||||
*
|
|
||||||
* @author Parker
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
public class LocalConfig implements Serializable {
|
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
/** 域名 */
|
|
||||||
@ApiModelProperty(value = "域名")
|
|
||||||
@ValidationArgs({ValiArgsType.IS_NOT_NULL})
|
|
||||||
@ValidationArgsLenMax(100)
|
|
||||||
private String domain;
|
|
||||||
|
|
||||||
/** 前缀 */
|
|
||||||
@ApiModelProperty(value = "前缀")
|
|
||||||
@ValidationArgsLenMax(100)
|
|
||||||
private String pathPrefix;
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in new issue