BsthSystemConfig.java 343 Bytes
package com.ruoyi.config;

import lombok.Data;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

/**
 * @author liujun
 * @date 2024年07月12日 9:32
 */
@Data
@Component
public class BsthSystemConfig {
    @Value("${bsth.upload.image.basePath}")
    private String imageBasePath;
}