refactor(buildpackage): 切换 U8C 和中台地址为正式环境

- 注释掉测试 U8C 地址,使用正式 U8C 地址- 注释掉测试中台地址,使用正式中台地址
This commit is contained in:
liuy 2025-01-06 22:10:09 +08:00
parent 6820ab964b
commit f4df767e90
1 changed files with 5 additions and 1 deletions

View File

@ -118,6 +118,8 @@ public class OverallConstant {
private static void loadProd() {
//正式U8C
prodOverAll.put("u8cApiUrl", "http://192.168.10.118:8088");
//测试U8C
// prodOverAll.put("u8cApiUrl", "http://192.168.10.118:9099");
//主键
prodOverAll.put("u8cApiUsercodePK", "admin");
@ -149,8 +151,10 @@ public class OverallConstant {
prodOverAll.put("u8c自定义项档案-单据红字标识-N主键", "0001A1100000000027LQ");
prodOverAll.put("u8c自定义项档案-单据红字标识-N名称", "N");
//中台地址
//正式中台地址
prodOverAll.put("u8c_url", "http://127.0.0.1:8081/kangarooDataCenterV3/entranceController/externalCallInterface");
//测试中台地址
// prodOverAll.put("u8c_url", "http://127.0.0.1:8082/kangarooDataCenterV3/entranceController/externalCallInterface");
}
/**