一基的服务与模板重新建立一个环境

This commit is contained in:
daihh
2022-10-15 11:54:53 +08:00
commit e8cb8ff892
1902 changed files with 111094 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
package com.xboe.casetask;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
import lombok.Data;
@Data
@Configuration
public class CaseApiConfig {
@Value("${xboe.case.sync.init}")
private Boolean init;
@Value("${xboe.case.sync.api.url}")
private String apiUrl;
@Value("${xboe.case.sync.api.name}")
private String apiName;
@Value("${xboe.case.sync.api.version}")
private String apiVersion;
@Value("${xboe.case.sync.api.method}")
private String apiMethod;
@Value("${xboe.case.sync.api.ak}")
private String apiAK;
@Value("${xboe.case.sync.api.sk}")
private String apiSK;
}