Merge branch 'dev' of http://ufidahz.com.cn:9015/root/kangarooDataCenterV3 into dev
This commit is contained in:
commit
5e7975ec5e
|
@ -66,9 +66,9 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private RestUtil restUtil;
|
private RestUtil restUtil;
|
||||||
@Value("${cbs8.elec_path}")
|
@Value("${cbs8.elec_path:}")
|
||||||
private String elec_path;
|
private String elec_path;
|
||||||
@Value("${OA.data_source_code}")
|
@Value("${OA.data_source_code:}")
|
||||||
private String oa_data_source_code;
|
private String oa_data_source_code;
|
||||||
/**
|
/**
|
||||||
* 支付申请
|
* 支付申请
|
||||||
|
|
|
@ -6,7 +6,7 @@ logging:
|
||||||
encodings: UTF-8
|
encodings: UTF-8
|
||||||
file:
|
file:
|
||||||
# 日志保存路径
|
# 日志保存路径
|
||||||
path: /Users/xiangerlin/work/app/logs/ydc
|
path: /Users/xiangerlin/work/app/logs/dev
|
||||||
spring:
|
spring:
|
||||||
datasource:
|
datasource:
|
||||||
dynamic:
|
dynamic:
|
||||||
|
@ -18,7 +18,7 @@ spring:
|
||||||
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
|
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
|
||||||
savefile:
|
savefile:
|
||||||
# 文件保存路径
|
# 文件保存路径
|
||||||
path: /Users/xiangerlin/work/app/logs/ydc
|
path: /Users/xiangerlin/work/app/file/dev
|
||||||
cbs8:
|
cbs8:
|
||||||
appId: 1P4AGrpz
|
appId: 1P4AGrpz
|
||||||
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
|
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
|
||||||
|
|
|
@ -66,6 +66,8 @@ public class temButtom {
|
||||||
@Autowired
|
@Autowired
|
||||||
private PayResultPluginInitializer payResultPluginInitializer;
|
private PayResultPluginInitializer payResultPluginInitializer;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void cbs8PluginTest(){
|
public void cbs8PluginTest(){
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -87,21 +87,21 @@ public class CBSUtil {
|
||||||
/**
|
/**
|
||||||
* 财资管理云公钥(平台公钥)
|
* 财资管理云公钥(平台公钥)
|
||||||
*/
|
*/
|
||||||
@Value("${cbs8.cbs_public_key}")
|
@Value("${cbs8.cbs_public_key:}")
|
||||||
public void setBodyEncryptionKey(String bodyEncryptionKey) {
|
public void setBodyEncryptionKey(String bodyEncryptionKey) {
|
||||||
CBSUtil.bodyEncryptionKey = bodyEncryptionKey;
|
CBSUtil.bodyEncryptionKey = bodyEncryptionKey;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 企业私钥(解密)
|
* 企业私钥(解密)
|
||||||
*/
|
*/
|
||||||
@Value("${cbs8.ya_private_key}")
|
@Value("${cbs8.ya_private_key:}")
|
||||||
public void setSignEncryptionPrivateKey(String signEncryptionPrivateKey) {
|
public void setSignEncryptionPrivateKey(String signEncryptionPrivateKey) {
|
||||||
CBSUtil.signEncryptionPrivateKey = signEncryptionPrivateKey;
|
CBSUtil.signEncryptionPrivateKey = signEncryptionPrivateKey;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 企业私钥(解密)
|
* 企业私钥(解密)
|
||||||
*/
|
*/
|
||||||
@Value("${cbs8.ya_private_key}")
|
@Value("${cbs8.ya_private_key:}")
|
||||||
public void setBodyDecryptionKey(String bodyDecryptionKey) {
|
public void setBodyDecryptionKey(String bodyDecryptionKey) {
|
||||||
CBSUtil.bodyDecryptionKey = bodyDecryptionKey;
|
CBSUtil.bodyDecryptionKey = bodyDecryptionKey;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,11 +24,11 @@ import java.util.Map;
|
||||||
public class CbsAccessToken {
|
public class CbsAccessToken {
|
||||||
|
|
||||||
private static final Logger logger = LoggerFactory.getLogger(CbsAccessToken.class);
|
private static final Logger logger = LoggerFactory.getLogger(CbsAccessToken.class);
|
||||||
@Value("${cbs8.appId}")
|
@Value("${cbs8.appId:}")
|
||||||
private String app_id;
|
private String app_id;
|
||||||
@Value("${cbs8.appSecret}")
|
@Value("${cbs8.appSecret:}")
|
||||||
private String app_secret;
|
private String app_secret;
|
||||||
@Value("${cbs8.url}")
|
@Value("${cbs8.url:}")
|
||||||
private String app_url;
|
private String app_url;
|
||||||
|
|
||||||
private static String appId;
|
private static String appId;
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class OerDjmlExtServiceImpl implements IOerDjmlExtService {
|
||||||
Logger logger = LoggerFactory.getLogger(getClass());
|
Logger logger = LoggerFactory.getLogger(getClass());
|
||||||
@Autowired
|
@Autowired
|
||||||
private RestUtil restUtil;
|
private RestUtil restUtil;
|
||||||
@Value("${savefile.path}")
|
@Value("${savefile.path:}")
|
||||||
public String DSK;
|
public String DSK;
|
||||||
@Autowired
|
@Autowired
|
||||||
private ISysApplicationDatabaseService sysApplicationDatabaseService;
|
private ISysApplicationDatabaseService sysApplicationDatabaseService;
|
||||||
|
|
|
@ -346,6 +346,7 @@ where id = #{id}
|
||||||
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
|
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
|
||||||
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
|
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
|
||||||
`data_id` varchar(100) DEFAULT NULL COMMENT 'data_id',
|
`data_id` varchar(100) DEFAULT NULL COMMENT 'data_id',
|
||||||
|
`mdm_up_id` varchar(100) DEFAULT NULL COMMENT 'mdm_up_id',
|
||||||
</when>
|
</when>
|
||||||
<when test="tableType == '2'.toString()">
|
<when test="tableType == '2'.toString()">
|
||||||
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
|
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
|
||||||
|
|
|
@ -39,7 +39,7 @@ public class CbsLogServiceImpl extends BaseService<CbsLogEntity,String> implemen
|
||||||
Logger log = LoggerFactory.getLogger(getClass());
|
Logger log = LoggerFactory.getLogger(getClass());
|
||||||
|
|
||||||
private ICbsLogDao cbsLogDao;
|
private ICbsLogDao cbsLogDao;
|
||||||
@Value("${OA.data_source_code}")
|
@Value("${OA.data_source_code:}")
|
||||||
private String oa_data_source_code;
|
private String oa_data_source_code;
|
||||||
@Autowired
|
@Autowired
|
||||||
public void setCbsLogDao(ICbsLogDao cbsLogDao) {
|
public void setCbsLogDao(ICbsLogDao cbsLogDao) {
|
||||||
|
|
Loading…
Reference in New Issue