All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.founder.config.CatalogConfig Maven / Gradle / Ivy

The newest version!
package com.founder.config;

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

import java.io.Serializable;

@Component
@ConfigurationProperties(prefix = "chis.catalog")
public class CatalogConfig implements Serializable {

    /**
     * 医保目录下载文件路径
     */
    private String catalog_path;

    private String oss_type;

    public String getCatalog_path() {
        return catalog_path;
    }

    public void setCatalog_path(String catalog_path) {
        this.catalog_path = catalog_path;
    }

    public String getOss_type() {
        return oss_type;
    }

    public void setOss_type(String oss_type) {
        this.oss_type = oss_type;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy