package com.file.center.util; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; /** * 说明: * * @author Li */ @Component public class OCRAPI { private static String imagePre; public static String getImagePre() { return imagePre; } @Value("${ruoyi.profile}") public void setImagePre(String imagePre) { OCRAPI.imagePre = imagePre; } }