FileProperties.java 516 Bytes
package isa.qa.properties;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

/**
 *  File properties
 *
 *  @author    May
 *  @date      2018/12/28 16:40
 *  @version   1.0
 */
@Data
@ConfigurationProperties(prefix = "file")
@Component
public class FileProperties {

    /**
     * The base file path
     */
    private String basePath;

    /**
     * The base access url
     */
    private String baseAccessUrl;
}