diff --git a/buildpackage/pom.xml b/buildpackage/pom.xml
index fea721b7..16cf454a 100644
--- a/buildpackage/pom.xml
+++ b/buildpackage/pom.xml
@@ -17,88 +17,27 @@
webapp
${revision}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- local
-
- local
-
-
- true
-
-
dev
dev
+
+ true
+
-
- ax
-
- ax
-
-
-
- hclocal
-
- hclocal
-
-
+
+
llg
llg
-
- zqtlocal
-
- zqtlocal
-
-
-
- yuqh
-
- yuqh
-
-
-
- xel
-
- xel
-
-
-
- ydc
-
- ydc
-
-
-
- yc
-
- yc
-
-
+
kangarooDataCenterV3
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/dao/IPayBillDao.java b/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/dao/IPayBillDao.java
deleted file mode 100644
index 4c8956ed..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/dao/IPayBillDao.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.hzya.frame.plugin.a8bill.dao;
-
-import com.hzya.frame.basedao.dao.IBaseDao;
-import com.hzya.frame.plugin.a8bill.entity.PayBillEntity;
-
-/**
- * 组织档案(mdm_org: table)表数据库访问层
- *
- * @author makejava
- * @since 2024-06-07 18:30:04
- */
-public interface IPayBillDao extends IBaseDao {
-
-}
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/dao/impl/PayBillDaoImpl.java b/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/dao/impl/PayBillDaoImpl.java
deleted file mode 100644
index f4bc0c6e..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/dao/impl/PayBillDaoImpl.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.hzya.frame.plugin.a8bill.dao.impl;
-
-import com.hzya.frame.basedao.dao.MybatisGenericDao;
-import com.hzya.frame.plugin.a8bill.dao.IPayBillDao;
-import com.hzya.frame.plugin.a8bill.entity.PayBillEntity;
-
-/**
- * 组织档案(MdmOrg)表数据库访问层
- *
- * @author makejava
- * @since 2024-06-07 18:30:04
- */
-public class PayBillDaoImpl extends MybatisGenericDao implements IPayBillDao {
-
-}
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/entity/PayBillEntity.java b/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/entity/PayBillEntity.java
deleted file mode 100644
index ecca14fb..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/entity/PayBillEntity.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.hzya.frame.plugin.a8bill.entity;
-
-import com.hzya.frame.web.entity.BaseEntity;
-
-/**
- * 付款单
- *
- * @author makejava
- * @since 2024-06-07 18:30:04
- */
-public class PayBillEntity extends BaseEntity {
-
-}
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/entity/PayBillEntity.xml b/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/entity/PayBillEntity.xml
deleted file mode 100644
index a251e1cd..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/entity/PayBillEntity.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- id
-
-
-
-
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/plugin/PayBillPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/plugin/PayBillPluginInitializer.java
deleted file mode 100644
index e57f8e6c..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/plugin/PayBillPluginInitializer.java
+++ /dev/null
@@ -1,63 +0,0 @@
-package com.hzya.frame.plugin.a8bill.plugin;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-
-import com.hzya.frame.seeyon.paybill.service.IPayBillService;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-/**
- * 付款单(PayBill)表服务接口
- *
- * @author makejava
- * @since 2024-06-07 18:30:05
- */
-public class PayBillPluginInitializer extends PluginBaseEntity{
- Logger logger = LoggerFactory.getLogger(PayBillPluginInitializer.class);
- @Autowired
- private IPayBillService payBillService;
-
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- @Override
- public String getPluginId() {
- return "PayBillPlugin";
- }
-
- @Override
- public String getPluginName() {
- return "PayBillPlugin插件";
- }
-
- @Override
- public String getPluginLabel() {
- return "PayBillPlugin";
- }
-
- @Override
- public String getPluginType() {
- return "1";
- }
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) {
- try {
- logger.info("======开始执行付款单据信息同步========");
- return payBillService.sendEngineerPayBillToBip(requestJson);
- }catch (Exception e){
- logger.info("======执行付款单据同步失败:{}========",e.getMessage());
- e.printStackTrace();
- }
- return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/plugin/RecBillPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/plugin/RecBillPluginInitializer.java
deleted file mode 100644
index f4689b83..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/plugin/RecBillPluginInitializer.java
+++ /dev/null
@@ -1,63 +0,0 @@
-package com.hzya.frame.plugin.a8bill.plugin;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.seeyon.paybill.service.IPayBillService;
-import com.hzya.frame.seeyon.recbill.service.IRecBillService;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-/**
- * 收款单(RecBill)表服务接口
- *
- * @author makejava
- * @since 2024-06-07 18:30:05
- */
-public class RecBillPluginInitializer extends PluginBaseEntity{
- Logger logger = LoggerFactory.getLogger(RecBillPluginInitializer.class);
- @Autowired
- private IRecBillService recBillService;
-
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- @Override
- public String getPluginId() {
- return "RecBillPluginInitializer";
- }
-
- @Override
- public String getPluginName() {
- return "RecBillPluginInitializer插件";
- }
-
- @Override
- public String getPluginLabel() {
- return "RecBillPluginInitializer";
- }
-
- @Override
- public String getPluginType() {
- return "1";
- }
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) {
- try {
- logger.info("======开始执行收款单据信息同步========");
- return recBillService.sendRecBillToBip(requestJson);
- }catch (Exception e){
- logger.info("======执行收款单据同步失败:{}========",e.getMessage());
- e.printStackTrace();
- }
- return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/service/IPayBillService.java b/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/service/IPayBillService.java
deleted file mode 100644
index 8a8f041c..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/service/IPayBillService.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.hzya.frame.plugin.a8bill.service;
-
-import com.hzya.frame.basedao.service.IBaseService;
-import com.hzya.frame.plugin.a8bill.entity.PayBillEntity;
-
-/**
- * 付款单
- *
- * @author makejava
- * @since 2024-06-07 18:30:05
- */
-public interface IPayBillService extends IBaseService{
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/service/impl/PayBillServiceImpl.java b/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/service/impl/PayBillServiceImpl.java
deleted file mode 100644
index e6375473..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/a8bill/service/impl/PayBillServiceImpl.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.hzya.frame.plugin.a8bill.service.impl;
-
-import com.hzya.frame.basedao.service.impl.BaseService;
-import com.hzya.frame.plugin.a8bill.entity.PayBillEntity;
-import com.hzya.frame.plugin.a8bill.service.IPayBillService;
-
-/**
- * private IMdmOrgDao mdmOrgDao;
- *
- * @Autowired
- * public void setMdmOrgDao(IMdmOrgDao dao) {
- * this.mdmOrgDao = dao;
- * this.dao = dao;
- * }
- *
- * @author makejava
- * @since 2024-06-07 18:30:05
- */
-public class PayBillServiceImpl extends BaseService implements IPayBillService {
-
-
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/AgentPayResultPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/AgentPayResultPluginInitializer.java
deleted file mode 100644
index 118e47b4..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/AgentPayResultPluginInitializer.java
+++ /dev/null
@@ -1,114 +0,0 @@
-package com.hzya.frame.plugin.cbs8.plugin;
-
-import com.alibaba.fastjson.JSONObject;
-import com.baomidou.mybatisplus.core.toolkit.StringUtils;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.cbs8.dto.req.AgentPayResultRequestDTO;
-import com.hzya.frame.cbs8.dto.res.AgentPayQueryDTO;
-import com.hzya.frame.cbs8.dto.res.AgentPayResultResDTO;
-import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.checkerframework.checker.units.qual.A;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-import java.util.List;
-
-/**
- * @Description
- * @Author xiangerlin
- * @Date 2024/6/18 17:22
- **/
-public class AgentPayResultPluginInitializer extends PluginBaseEntity {
- Logger logger = LoggerFactory.getLogger(AgentPayResultPluginInitializer.class);
-
- @Autowired
- private ICbsPluginService cbsPluginService;
-
- /***
- * 插件初始化方法
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 10:48
- * @Param []
- * @return void
- **/
- @Override
- public void initialize() {
-
- }
-
- /****
- * 插件销毁方法
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- /****
- * 插件的ID
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginId() {
- return "CBS8AgentPayResultPlugin";
- }
-
- /****
- * 插件的名称
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginName() {
- return "cbs8代发代扣详情查询插件";
- }
-
- /****
- * 插件的显示值
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginLabel() {
- return "cbs8代发代扣详情查询插件";
- }
-
- /***
- * 插件类型 1、场景插件
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 14:01
- * @Param []
- * @return java.lang.String
- **/
- @Override
- public String getPluginType() {
- return "1";
- }
-
- /***
- * 执行业务代码
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-07 11:20
- * @param requestJson 执行业务代码的参数
- * @return void
- **/
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
- //1、查询代发代扣交易未完成代
- //2、调用cbs接口
- AgentPayResultRequestDTO agentPayResultRequestDTO = new AgentPayResultRequestDTO();
- agentPayResultRequestDTO.setBusNum("PA00034224062600011");
- AgentPayResultResDTO agentPayResultResDTO = cbsPluginService.agentPayResult(agentPayResultRequestDTO);
- //记录日志
- return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/ElecBillPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/ElecBillPluginInitializer.java
deleted file mode 100644
index 685cef93..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/ElecBillPluginInitializer.java
+++ /dev/null
@@ -1,101 +0,0 @@
-package com.hzya.frame.plugin.cbs8.plugin;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-/**
- * @Description 电子回单定时任务
- * @Author xiangerlin
- * @Date 2024/6/17 14:03
- **/
-public class ElecBillPluginInitializer extends PluginBaseEntity {
-
- Logger logger = LoggerFactory.getLogger(getClass());
- @Autowired
- private ICbsPluginService cbsPluginService;
- /***
- * 插件初始化方法
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 10:48
- * @Param []
- * @return void
- **/
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- /****
- * 插件销毁方法
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- /****
- * 插件的ID
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginId() {
- return "CBS8ElecBillPlugin";
- }
-
- /****
- * 插件的名称
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginName() {
- return "cbs8电子回单插件";
- }
-
- /****
- * 插件的显示值
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginLabel() {
- return "cbs8电子回单插件";
- }
-
- /***
- * 插件类型 1、场景插件
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 14:01
- * @Param []
- * @return java.lang.String
- **/
- @Override
- public String getPluginType() {
- return "1";
- }
-
- /***
- * 执行业务代码
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-07 11:20
- * @param requestJson 执行业务代码的参数
- * @return void
- **/
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
- cbsPluginService.elecBillUpload(requestJson);
- return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayApplyAgentPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayApplyAgentPluginInitializer.java
deleted file mode 100644
index 9c90a865..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayApplyAgentPluginInitializer.java
+++ /dev/null
@@ -1,116 +0,0 @@
-package com.hzya.frame.plugin.cbs8.plugin;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.cbs8.dto.res.PayResponseDTO;
-import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
-import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentDetailEntity;
-import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentEntity;
-import com.hzya.frame.seeyon.cbs8.service.IAgentPaymentService;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.apache.commons.collections.CollectionUtils;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-import java.util.List;
-
-/**
- * @Description
- * @Author xiangerlin
- * @Date 2024/6/18 14:03
- **/
-public class PayApplyAgentPluginInitializer extends PluginBaseEntity {
- Logger logger = LoggerFactory.getLogger(PayApplyAgentPluginInitializer.class);
- @Autowired
- private ICbsPluginService cbsPluginService;
-
-
- @Autowired
- private IAgentPaymentService agentPaymentService;
-
-
- /***
- * 插件初始化方法
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 10:48
- * @Param []
- * @return void
- **/
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- /****
- * 插件销毁方法
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- /****
- * 插件的ID
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginId() {
- return "CBS8PayApplyAgentPlugin";
- }
-
- /****
- * 插件的名称
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginName() {
- return "cbs8代发代扣插件";
- }
-
- /****
- * 插件的显示值
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginLabel() {
- return "cbs8代发代扣插件";
- }
-
- /***
- * 插件类型 1、场景插件
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 14:01
- * @Param []
- * @return java.lang.String
- **/
- @Override
- public String getPluginType() {
- return "1";
- }
-
- /***
- * 执行业务代码
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-07 11:20
- * @param requestJson 执行业务代码的参数
- * @return void
- **/
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
- //1、查询代支付的
- AgentPaymentEntity agentPaymentEntity = new AgentPaymentEntity();
- agentPaymentEntity.setOaId("4442823497745714629");
- cbsPluginService.applyAgentPay(agentPaymentEntity);
- return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayApplyPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayApplyPluginInitializer.java
deleted file mode 100644
index 36baa131..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayApplyPluginInitializer.java
+++ /dev/null
@@ -1,112 +0,0 @@
-package com.hzya.frame.plugin.cbs8.plugin;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
-import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-/**
- * @Description 经办支付申请
- * @Author xiangerlin
- * @Date 2024/6/7 13:42
- **/
-public class PayApplyPluginInitializer extends PluginBaseEntity {
- Logger logger = LoggerFactory.getLogger(PayApplyPluginInitializer.class);
-
- @Autowired
- private ICbsPluginService cbsPluginService;
-
- /***
- * 插件初始化方法
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 10:48
- * @Param []
- * @return void
- **/
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- /****
- * 插件销毁方法
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- /****
- * 插件的ID
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginId() {
- return "CBS8PayApplyPlugin";
- }
-
- /****
- * 插件的名称
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginName() {
- return "cbs8支付申请插件";
- }
-
- /****
- * 插件的显示值
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginLabel() {
- return "cbs8支付申请插件";
- }
-
- /***
- * 插件类型 1、场景插件
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 14:01
- * @Param []
- * @return java.lang.String
- **/
- @Override
- public String getPluginType() {
- return "1";
- }
-
- /***
- * 执行业务代码
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-07 11:20
- * @param requestJson 执行业务代码的参数
- * @return void
- **/
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
- PaymentEntity paymentEntity = null;
- if (null != requestJson){
- requestJson.remove("jsonStr");
- paymentEntity = JSONObject.parseObject(requestJson.toString(),PaymentEntity.class);
- }
- if (null == paymentEntity)
- paymentEntity = new PaymentEntity();
- //支付申请
- paymentEntity.setOaId("8475071606892874568");
- cbsPluginService.applyPay(paymentEntity);
- return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayResultPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayResultPluginInitializer.java
deleted file mode 100644
index fab668fa..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/PayResultPluginInitializer.java
+++ /dev/null
@@ -1,110 +0,0 @@
-package com.hzya.frame.plugin.cbs8.plugin;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
-import com.hzya.frame.seeyon.cbs8.entity.CbsLogEntity;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-/**
- * @Description 查询支付结果
- * @Author xiangerlin
- * @Date 2024/6/14 16:24
- **/
-public class PayResultPluginInitializer extends PluginBaseEntity {
- Logger logger = LoggerFactory.getLogger(PayResultPluginInitializer.class);
-
- @Autowired
- private ICbsPluginService cbsPluginService;
- /***
- * 插件初始化方法
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 10:48
- * @Param []
- * @return void
- **/
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- /****
- * 插件销毁方法
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- /****
- * 插件的ID
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginId() {
- return "CBS8PayResultPlugin";
- }
-
- /****
- * 插件的名称
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginName() {
- return "cbs8支付结果查询插件";
- }
-
- /****
- * 插件的显示值
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginLabel() {
- return "cbs8支付结果查询插件";
- }
-
- /***
- * 插件类型 1、场景插件
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 14:01
- * @Param []
- * @return java.lang.String
- **/
- @Override
- public String getPluginType() {
- return "1";
- }
-
- /***
- * 执行业务代码
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-07 11:20
- * @param requestJson 执行业务代码的参数
- * @return void
- **/
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
- CbsLogEntity cbsLogEntity = null;
- if (null != requestJson){
- requestJson.remove("jsonStr");
- cbsLogEntity = JSONObject.parseObject(requestJson.toString(),CbsLogEntity.class);
- }
- if (null == cbsLogEntity){
- cbsLogEntity = new CbsLogEntity();
- }
- cbsPluginService.queryResult(cbsLogEntity);
- return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/TransactionDetailPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/TransactionDetailPluginInitializer.java
deleted file mode 100644
index de84e734..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/plugin/TransactionDetailPluginInitializer.java
+++ /dev/null
@@ -1,126 +0,0 @@
-package com.hzya.frame.plugin.cbs8.plugin;
-
-import cn.hutool.core.date.DateUtil;
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.cbs8.dto.req.TransactionDetailReqDTO;
-import com.hzya.frame.cbs8.dto.res.TransactionDetailDTO;
-import com.hzya.frame.cbs8.util.CBSUtil;
-import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-import java.util.List;
-
-/**
- * @Description 交易明细查询
- * @Author xiangerlin
- * @Date 2024/6/17 16:03
- **/
-public class TransactionDetailPluginInitializer extends PluginBaseEntity {
- Logger logger = LoggerFactory.getLogger(getClass());
-
- @Autowired
- private ICbsPluginService cbsPluginService;
-
- /***
- * 插件初始化方法
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 10:48
- * @Param []
- * @return void
- **/
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- /****
- * 插件销毁方法
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- /****
- * 插件的ID
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginId() {
- return "CBS8TransactionDetailQueryPlugin";
- }
-
- /****
- * 插件的名称
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginName() {
- return "cbs8交易明细查询插件";
- }
-
- /****
- * 插件的显示值
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginLabel() {
- return "cbs8交易明细查询插件";
- }
-
- /***
- * 插件类型 1、场景插件
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 14:01
- * @Param []
- * @return java.lang.String
- **/
- @Override
- public String getPluginType() {
- return "1";
- }
-
- /***
- * 执行业务代码
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-07 11:20
- * @param requestJson 执行业务代码的参数
- * @return void
- **/
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
- TransactionDetailReqDTO transactionDetailReqDTO = null;
- if (null != requestJson){
- requestJson.remove("jsonStr");
- transactionDetailReqDTO = JSONObject.parseObject(requestJson.toString(),TransactionDetailReqDTO.class);
- }
- if (null == transactionDetailReqDTO){
- transactionDetailReqDTO = new TransactionDetailReqDTO();
- }
- transactionDetailReqDTO.setCurrentPage(CBSUtil.DEFAULT_CURRENT_PAGE);
- transactionDetailReqDTO.setPageSize(CBSUtil.DEFAULT_PAGE_SIZE);
- transactionDetailReqDTO.setStartDate(DateUtil.today());
- transactionDetailReqDTO.setEndDate(DateUtil.today());
- transactionDetailReqDTO.setDateType("0");
- transactionDetailReqDTO.setLoanType("2");
- //1查询交易明细
- List transactionDetailList = cbsPluginService.queryTransactionDetail(transactionDetailReqDTO);
- //保存交易明细到OA底表
- cbsPluginService.saveTransactionDetail(transactionDetailList);
- return new JsonResultEntity("成功",true,transactionDetailList);
- //return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/ICbsPluginService.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/ICbsPluginService.java
deleted file mode 100644
index dd07a04b..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/ICbsPluginService.java
+++ /dev/null
@@ -1,76 +0,0 @@
-package com.hzya.frame.plugin.cbs8.service;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.cbs8.dto.req.AgentPayResultRequestDTO;
-import com.hzya.frame.cbs8.dto.req.TransactionDetailReqDTO;
-import com.hzya.frame.cbs8.dto.res.AgentPayResultResDTO;
-import com.hzya.frame.cbs8.dto.res.PayResponseDTO;
-import com.hzya.frame.cbs8.dto.res.TransactionDetailDTO;
-import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentDetailEntity;
-import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentEntity;
-import com.hzya.frame.seeyon.cbs8.entity.CbsLogEntity;
-import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
-
-import java.util.List;
-
-/**
- * @Description
- * @Author xiangerlin
- * @Date 2024/6/17 08:46
- **/
-public interface ICbsPluginService {
-
- /**
- * 支付申请
- * @param entity
- */
- void applyPay(PaymentEntity entity)throws Exception;
-
- /**
- * 保存支付申请日志
- * @param entity
- * @throws Exception
- */
- void savePayLog(PaymentEntity entity,PayResponseDTO payResponseDTO)throws Exception;
-
- /**
- * 查询支付申请的交易结果
- * @param cbsLogEntity
- * @throws Exception
- */
- void queryResult(CbsLogEntity cbsLogEntity)throws Exception;
-
- /**
- * 电子回单查询 并上传OA
- * @param requestJson
- * @throws Exception
- */
- void elecBillUpload(JSONObject requestJson)throws Exception;
-
- /**
- * 查询交易明细
- * transactionDetailReqDTO.currentPage 、 transactionDetailReqDTO.pageSize 必填
- * @param transactionDetailReqDTO
- */
- List queryTransactionDetail(TransactionDetailReqDTO transactionDetailReqDTO);
-
- /**
- * 代发代扣 支付申请
- * @param paymentEntity
- */
- void applyAgentPay(AgentPaymentEntity paymentEntity);
-
- /**
- * 代发代扣 结果详情查询
- * @param agentPayResultRequestDTO
- * @return
- */
- AgentPayResultResDTO agentPayResult(AgentPayResultRequestDTO agentPayResultRequestDTO);
-
- /**
- * 保存交易明细到OA底表
- * @param transactionDetailList
- */
- void saveTransactionDetail(List transactionDetailList);
-
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/impl/CbsPluginServiceImpl.java b/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/impl/CbsPluginServiceImpl.java
deleted file mode 100644
index 854a9191..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/cbs8/service/impl/CbsPluginServiceImpl.java
+++ /dev/null
@@ -1,513 +0,0 @@
-package com.hzya.frame.plugin.cbs8.service.impl;
-
-import cn.hutool.core.bean.BeanUtil;
-import cn.hutool.core.convert.Convert;
-import cn.hutool.core.date.DateUtil;
-import cn.hutool.core.io.FileUtil;
-import cn.hutool.core.map.MapBuilder;
-import cn.hutool.core.util.NumberUtil;
-import cn.hutool.core.util.StrUtil;
-import cn.hutool.http.HttpRequest;
-import cn.hutool.http.HttpUtil;
-import com.alibaba.fastjson.JSON;
-import com.alibaba.fastjson.JSONObject;
-import com.baomidou.mybatisplus.core.toolkit.StringUtils;
-import com.hzya.frame.cbs8.dto.req.*;
-import com.hzya.frame.cbs8.dto.res.*;
-import com.hzya.frame.cbs8.service.ICbs8Service;
-import com.hzya.frame.cbs8.util.CBSUtil;
-import com.hzya.frame.cbs8.util.CurrencyEnum;
-import com.hzya.frame.cbs8.util.PayState;
-import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
-import com.hzya.frame.seeyon.cap4.form.dto.*;
-import com.hzya.frame.seeyon.cbs8.entity.*;
-import com.hzya.frame.seeyon.cbs8.service.*;
-import com.hzya.frame.seeyon.entity.CtpAttachmentEntity;
-import com.hzya.frame.seeyon.entity.CtpFileEntity;
-import com.hzya.frame.seeyon.service.ICtpAttachmentService;
-import com.hzya.frame.seeyon.util.RestUtil;
-import com.hzya.frame.uuid.UUIDLong;
-import com.hzya.frame.web.exception.BaseSystemException;
-import org.apache.commons.collections.CollectionUtils;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-
-import java.io.File;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-import java.util.Map;
-import java.util.stream.Collectors;
-
-/**
- * @Description
- * @Author xiangerlin
- * @Date 2024/6/17 08:46
- **/
-public class CbsPluginServiceImpl implements ICbsPluginService {
-
- Logger logger = LoggerFactory.getLogger(CbsPluginServiceImpl.class);
- @Autowired
- private ICbs8Service cbs8Service;
- @Autowired
- private IPaymentService paymentService;
- @Autowired
- private ICbsLogService cbsLogService;
- @Autowired
- private ICtpAttachmentService ctpAttachmentService;
- @Autowired
- private ITransactionDetailService transactionDetailService;
- @Autowired
- private IAgentPaymentService agentPaymentService;
- @Autowired
- private IAgentPaymentDetailService agentPaymentDetailService;
-
- @Autowired
- private RestUtil restUtil;
- @Value("${cbs8.elec_path:}")
- private String elec_path;
- @Value("${OA.data_source_code:}")
- private String oa_data_source_code;
- /**
- * 支付申请
- *
- * @param paymentEntity
- */
- @Override
- public void applyPay(PaymentEntity paymentEntity) throws Exception{
- //查询待支付的列表
- if (null == paymentEntity){
- paymentEntity = new PaymentEntity();
- }
- paymentEntity.setDataSourceCode(oa_data_source_code);
- List paymentList = paymentService.queryUnpaid(paymentEntity);
- /* List paymentList = new ArrayList<>();
- paymentEntity.setReferenceNum("CL202406140001");
- paymentEntity.setPayAccount("655905707410000");
- paymentEntity.setPayBankName("");
- paymentEntity.setAmount("99");
- paymentEntity.setRevAccount("123456778");
- paymentEntity.setRevBankName("中国工商银行总行清算中心");
- paymentEntity.setRevBankType("ICB");
- paymentEntity.setRevAccountName("测试账户");
- paymentEntity.setCnapsCode("102100099996");
- paymentEntity.setPurpose("测试用途");
- paymentEntity.setBusType("202");
- paymentEntity.setCurrency("10");
- paymentEntity.setPurpose("测试用途");
- paymentList.add(paymentEntity);*/
- if (CollectionUtils.isNotEmpty(paymentList)){
- for (PaymentEntity pay : paymentList) {
- //调用支付申请接口
- PayResponseDTO payResponseDTO = cbs8Service.payApply(pay);
- boolean successed = payResponseDTO.getSuccessed();
- if (successed){
- pay.setPayResult(PayState.p.getValue());
- }else {
- pay.setPayResult("推送失败");
- }
- //4、更新OA表单
- pay.setDataSourceCode(oa_data_source_code);
- pay.setApplyCode(payResponseDTO.getBusNum());
- paymentService.updatePayState(pay);
- //5、记录操作日志
- savePayLog(pay,payResponseDTO);
- }
- }
- }
-
- /**
- * 保存支付申请日志
- *
- * @param entity
- * @throws Exception
- */
- @Override
- public void savePayLog(PaymentEntity entity,PayResponseDTO payResponseDTO) throws Exception {
- //4. 保存日志
- CbsLogEntity cbsLogEntity = new CbsLogEntity();
- cbsLogEntity.setTitle(entity.getTitle());
- cbsLogEntity.setPay_company(entity.getPayCompany());
- cbsLogEntity.setPayee(entity.getRevAccountName());
- cbsLogEntity.setAmount(entity.getAmount());
- cbsLogEntity.setOa_id(entity.getOaId());
- cbsLogEntity.setBill_code(Convert.toStr(entity.getReferenceNumNew(),entity.getReferenceNum()));
- cbsLogEntity.setTab_name_ch(entity.getBillName());
- cbsLogEntity.setTab_name_en(entity.getTableName());
- Boolean successed = payResponseDTO.getSuccessed();
- if (successed){
- cbsLogEntity.setPay_state(PayState.p.getValue());
- cbsLogEntity.setApply_state(PayState.two.getValue());
- cbsLogEntity.setCbs_apply_code(payResponseDTO.getBusNum());
- cbsLogEntity.setSuccessed("true");
- entity.setPayResult(PayState.p.getValue());
- }else {
- cbsLogEntity.setPay_state("推送失败");
- cbsLogEntity.setMessage(payResponseDTO.getErrorMsg());
- cbsLogEntity.setSuccessed("false");
- entity.setPayResult("推送失败");
- }
- cbsLogService.saveLog(cbsLogEntity);
- }
-
- /**
- * 查询支付申请的交易结果
- *
- * @param cbsLogEntity
- * @throws Exception
- */
- @Override
- public void queryResult(CbsLogEntity cbsLogEntity) throws Exception {
- if (null == cbsLogEntity){
- cbsLogEntity = new CbsLogEntity();
- }
- cbsLogEntity.setDataSourceCode(oa_data_source_code);
- // 1、查询支付中的日志
- List inPayList = cbsLogService.queryInPayment(cbsLogEntity);
- if (CollectionUtils.isNotEmpty(inPayList)){
- for (CbsLogEntity entity : inPayList) {
- try {
- List payResultResList = cbs8Service.queryPayResult(new PayResultRequestDTO(entity.getBill_code()));
- if (CollectionUtils.isNotEmpty(payResultResList)){
- PayResultResDTO payResultResDTO = payResultResList.get(0);
- //支付申请状态
- String status = payResultResDTO.getStatus();
- //支付状态
- String pay_status = payResultResDTO.getPayStatus();
- //不等于支付中的时候 更新支付状态
- if (!PayState.p.getType().equals(pay_status)){
- //如果支付状态为空,保存支付申请状态,如果支付状态不为空,则保存支付状态
- PaymentEntity paymentEntity = new PaymentEntity();
- paymentEntity.setOaId(entity.getOa_id());
- paymentEntity.setApplyCode(entity.getCbs_apply_code());
- paymentEntity.setDataSourceCode(oa_data_source_code);
- List paymentList = paymentService.query(paymentEntity);
- if (CollectionUtils.isNotEmpty(paymentList)){
- paymentEntity = paymentList.get(0);
- if (StrUtil.isEmpty(pay_status)) {
- //支付申请状态 支付状态和支付申请状态用一个
- paymentEntity.setPayResult(PayState.payStateGetValue(status));
- } else {
- //支付状态 支付状态和支付申请状态用一个
- paymentEntity.setPayResult(PayState.payStateGetValue(pay_status));
- }
- if (StrUtil.isNotEmpty(pay_status) && pay_status.equals(PayState.g.getType())) {
- //支付时间
- paymentEntity.setPayDate(CBSUtil.convertTimestampToString(payResultResDTO.getPayDate()));
- }
- //更新视图单据状态
- paymentEntity.setDataSourceCode(oa_data_source_code);
- paymentService.updatePayState(paymentEntity);
- //更新日志表状态
- entity.setPay_state(paymentEntity.getPayResult());
- entity.setApply_state(PayState.payStateGetValue(status));
- entity.setDataSourceCode(oa_data_source_code);
- cbsLogService.updateLog(entity);
- }
- }
- }
- }catch (Exception e){
- e.printStackTrace();
- logger.error("查询交易结果出错",e);
- }
- }
- }
- }
-
- /**
- * 电子回单查询 并上传OA
- *
- * @param requestJson
- * @throws Exception
- */
- @Override
- public void elecBillUpload(JSONObject requestJson) throws Exception {
- //查询支付成功 没有电子回单的数据
- PaymentEntity paymentEntity = new PaymentEntity();
- // List paymentList = paymentService.queryElecIsNull(paymentEntity);
- paymentEntity.setPayDate("2024-06-20");
- paymentEntity.setReferenceNum("41");
- List paymentList = Arrays.asList(paymentEntity);
- if (CollectionUtils.isNotEmpty(paymentList)) {
- for (PaymentEntity pay : paymentList) {
- try {
- String payDate = DateUtil.format(DateUtil.parse(pay.getPayDate()), "yyyy-MM-dd");
- //查询cbs电子回单
- List elecResList = cbs8Service.queryElecBill(new ElecRequestDTO(payDate,DateUtil.today(),pay.getReferenceNum()));
- if (CollectionUtils.isNotEmpty(elecResList)){
- ElecResponseDTO elecResponseDTO = elecResList.get(0);
- String bucketFileUrl = elecResponseDTO.getBucketFileUrl();
- String bucketFileName = elecResponseDTO.getBucketFileName();
- //上传电子回单到OA
- HttpUtil.downloadFile(bucketFileUrl, FileUtil.file(elec_path));//附件下载
- String pdfUrl = elec_path + bucketFileName;
- File file = new File(pdfUrl);
- if (file.exists()) {
- CtpFileEntity cpFileEntity = new CtpFileEntity();
- cpFileEntity.setFile(file);
- cpFileEntity.setDataSourceCode(oa_data_source_code);
- JSONObject jsonObjectUpload = restUtil.fileUpload(file,"8000240005");
- String file_url = jsonObjectUpload.getString("fileUrl");
- if (null != jsonObjectUpload && StrUtil.isNotEmpty(file_url)) {
- String sub_reference = String.valueOf(UUIDLong.longUUID());
- pay.setReceipt(sub_reference);
- //更新表单的电子回单值
- paymentService.updateElec(pay);
- //保存附件关系
- CtpAttachmentEntity ctpAttachmentEntity = new CtpAttachmentEntity();
- ctpAttachmentEntity.setFile_url(file_url);
- ctpAttachmentService.saveAttachment(file_url, pay.getSummaryId(), sub_reference);
- }
- //删除本地临时文件
- file.delete();
- }
- }
- }catch (Exception e){
- logger.error("电子回单查询出错",e);
- }
- }
- }
- }
-
- /**
- * 查询交易明细
- * transactionDetailReqDTO.currentPage 、 transactionDetailReqDTO.pageSize 必填
- * @param transactionDetailReqDTO
- */
- @Override
- public List queryTransactionDetail(TransactionDetailReqDTO transactionDetailReqDTO) {
- boolean hasNextPage = true;//是否有下一页
- int currentPage = transactionDetailReqDTO.getCurrentPage();
- int pageSize = transactionDetailReqDTO.getPageSize();
- if (currentPage == 0){
- currentPage = CBSUtil.DEFAULT_CURRENT_PAGE;//页码
- }
- if (pageSize == 0){
- pageSize = CBSUtil.DEFAULT_PAGE_SIZE;//每页条数
- transactionDetailReqDTO.setPageSize(pageSize);
- }
- List resultList = new ArrayList<>();
- do{
- transactionDetailReqDTO.setCurrentPage(currentPage);//页码
- currentPage++;//页码自增
- hasNextPage = false;//保护功能,防止出现死循环
- CbsResDataDTO dataDTO = cbs8Service.queryTransactionDetail(transactionDetailReqDTO);
- if (null != dataDTO){
- hasNextPage = dataDTO.getHasNextPage();
- List transactionDetailDTOList = CBSUtil.convertJsonArrayToList(dataDTO.getList(), TransactionDetailDTO.class);
- resultList.addAll(transactionDetailDTOList);
- }
- }while (hasNextPage);
-
- return resultList;
- }
-
- /**
- * 代发代扣 支付申请
- *
- * @param paymentEntity
-
- */
- @Override
- public void applyAgentPay(AgentPaymentEntity paymentEntity) {
- try {
- if (null != paymentEntity ){
- paymentEntity.setDataSourceCode(oa_data_source_code);
- List agentPaymentList = agentPaymentService.queryUnpaid(paymentEntity);
- if (CollectionUtils.isNotEmpty(agentPaymentList)){
- for (AgentPaymentEntity agentPay : agentPaymentList) {
- AgentPaymentDetailEntity detailEntity = new AgentPaymentDetailEntity();
- detailEntity.setFormmainId(agentPay.getOaId());
- detailEntity.setDataSourceCode(oa_data_source_code);
- List agentPaymentDetailList = agentPaymentService.queryDetails(detailEntity);
- if (CollectionUtils.isNotEmpty(agentPaymentDetailList)){
- PaymentApplySubmitReqDTO paymentApplySubmitReqDTO = BeanUtil.copyProperties(agentPay,PaymentApplySubmitReqDTO.class);
- List paymentApplyAgentList = new ArrayList<>();
- for (AgentPaymentDetailEntity detail : agentPaymentDetailList) {
- PaymentApplyAgentDTO detailDTO = BeanUtil.copyProperties(detail,PaymentApplyAgentDTO.class);
- paymentApplyAgentList.add(detailDTO);
- }
- //招行这里要传203
- paymentApplySubmitReqDTO.setBankExtend5("203");
- PayResponseDTO payResponseDTO = cbs8Service.agentPayApply(paymentApplySubmitReqDTO,paymentApplyAgentList);
- if (null != payResponseDTO){
- Boolean successed = payResponseDTO.getSuccessed();
- AgentPaymentEntity pay = new AgentPaymentEntity();
- pay.setOaId(paymentEntity.getOaId());
- pay.setDataSourceCode(oa_data_source_code);
- if (successed){
- //更新申请单号到OA
- pay.setApplyCode(payResponseDTO.getBusNum());
- pay.setPayResult("审批中");
- }else {
- pay.setPayResult(payResponseDTO.getErrorMsg());
- }
- agentPaymentService.updateResult(pay);
- System.out.println(JSONObject.toJSONString(payResponseDTO));
- }
- }
- }
- }
- }else {
- throw new BaseSystemException("参数不能为空");
- }
- }catch (Exception e){
- logger.error("代发代扣出错:{}",e);
- }
- }
-
- /**
- * 代发代扣 结果详情查询
- *
- * @param agentPayResultRequestDTO
- * @return
- */
- @Override
- public AgentPayResultResDTO agentPayResult(AgentPayResultRequestDTO agentPayResultRequestDTO) {
- try {
- if (null != agentPayResultRequestDTO && StrUtil.isNotEmpty(agentPayResultRequestDTO.getBusNum())){
- AgentPayResultResDTO agentPayResultResDTO = cbs8Service.agentPayResult(agentPayResultRequestDTO);
- //更新OA表单
- String busNum = agentPayResultResDTO.getBusNum();
- if (StringUtils.isNotEmpty(busNum)){
- AgentPaymentEntity agentPaymentEntity = new AgentPaymentEntity();
- agentPaymentEntity.setApplyCode(busNum);
- agentPaymentEntity.setDataSourceCode(oa_data_source_code);
- AgentPaymentEntity entity = agentPaymentService.queryByApplyCode(agentPaymentEntity);
- String pay_status = agentPayResultResDTO.getPayStatus();
- String status = agentPayResultResDTO.getStatus();
- if (null != entity){
- AgentPaymentEntity result = new AgentPaymentEntity();
- result.setOaId(entity.getOaId());
- result.setDataSourceCode(oa_data_source_code);
- //更新主表
- if (StrUtil.isEmpty(pay_status)) {
- result.setPayResult(PayState.payStateGetValue(status));//支付申请状态 支付状态和支付申请状态用一个
- } else {
- result.setPayResult(PayState.payStateGetValue(pay_status));//支付状态 支付状态和支付申请状态用一个
- }
- agentPaymentService.updateResult(result);
- //更新明细表
- List agentDetails = agentPayResultResDTO.getAgentDetails();
- for (AgentPayQueryDTO d : agentDetails) {
- AgentPaymentDetailEntity detail = new AgentPaymentDetailEntity();
- detail.setFormmainId(entity.getOaId());
- detail.setDtlAmount(d.getDtlAmount());
- detail.setDtlCnapsCode(d.getDtlCnapsCode());
- detail.setDtlRevName(d.getDtlRevName());
- detail.setDtlSeqNum(Integer.valueOf(d.getDtlSeqNum()));
- detail.setPayResult(PayState.payStateGetValue(d.getDtlStatus()));
- detail.setPayDate(CBSUtil.convertTimestampToString(d.getDtlPayTime()));
- detail.setDataSourceCode(oa_data_source_code);
- agentPaymentDetailService.updatePayResult(detail);
- }
- }
- }
- return agentPayResultResDTO;
- }
- }catch (Exception e){
- logger.error("代发代扣详情结果查询出错{}",e);
- }
- return null;
- }
-
- /**
- * 保存交易明细到OA底表
- *
- * @param transactionlList
- */
- @Override
- public void saveTransactionDetail(List transactionlList) {
- if (CollectionUtils.isNotEmpty(transactionlList)){
- //过滤已经保存过的数据
- //收款档案表的数据
- TransactionDetailEntity transactionDetailEntity = new TransactionDetailEntity();
- transactionDetailEntity.setBankTransactionDate(DateUtil.lastWeek().toDateStr());
- transactionDetailEntity.setDataSourceCode(oa_data_source_code);
- List transactionDetailList = transactionDetailService.querySerialNumber(transactionDetailEntity);
- //过滤已经保存的数据
- if (CollectionUtils.isNotEmpty(transactionDetailList)){
- //过滤transactionlList 去除已经存在transactionDetailList中的数据,条件为transactionSerialNumber相等
- if (CollectionUtils.isNotEmpty(transactionlList)){
- transactionlList = transactionlList.stream()
- .filter(item -> transactionDetailList.stream()
- .noneMatch(detailItem -> item.getTransactionSerialNumber().equals(detailItem.getTransactionSerialNumber())))
- .collect(Collectors.toList());
- }
- }
- if (CollectionUtils.isNotEmpty(transactionlList)){
- //保存到OA底表
- for (TransactionDetailDTO dto : transactionlList) {
- TransactionDetailEntity transactionDetail = new TransactionDetailEntity();
- BeanUtil.copyProperties(dto,transactionDetail);
- transactionDetail.setCurrency(CurrencyEnum.getChineseNameByCode(dto.getCurrency()));
- if (NumberUtil.isNumber(dto.getBankTransactionDate())){//如果是时间戳 转换成日期字符串
- transactionDetail.setBankTransactionDate(CBSUtil.convertTimestampToString(dto.getBankTransactionDate()));
- }
- transactionDetailService.restSave(transactionDetail);
- }
- }
- }
- }
-
- //这个方法没用,用的是8.0批量保存方式,我没有测试
- private void saveTransactionDetailTemp(List transactionDetailList) {
- if (CollectionUtils.isNotEmpty(transactionDetailList)){
- //过滤已经保存过的数据
- for (TransactionDetailDTO dto : transactionDetailList) {
- List dataList = new ArrayList<>();
- FormDTO formDTO = new FormDTO();
- formDTO.setFormCode("formmain_0233");
- formDTO.setLoginName("yonyou");
- formDTO.setRightId("6603635988997229999.-8611088937958683581");
- String field0001=dto.getAccountNo();//我方银行账号
- String field0002=dto.getAccountName();//我方户名
- String field0003=dto.getOpenBank();//我方开户行
- String field0004=dto.getBankType();//我方银行类型
- String field0005=dto.getTransactionSerialNumber();//交易流水号
- String field0006=dto.getBankTransactionDate();//交易日期
- String field0007=dto.getBankSerialNumber();//银行流水号
- String field0008=dto.getCurrency();//币种
- String field0009=dto.getIncurredAmount();//收款金额
- String field0010=dto.getPurpose();//用途
- String field0011=dto.getDigest();//摘要
- String field0012=dto.getOppositeAccount();//对方账号
- String field0013=dto.getOppositeName();//对方户名
- String field0014=dto.getOppositeOpeningBank();//对方开户行
- String field0015=dto.getRemark();//备注
- //fields
- List fields = new ArrayList<>();
- fields.add(new RecordFieldDTO("field0001",field0001,field0001));
- fields.add(new RecordFieldDTO("field0002",field0002,field0002));
- fields.add(new RecordFieldDTO("field0003",field0003,field0003));
- fields.add(new RecordFieldDTO("field0004",field0004,field0004));
- fields.add(new RecordFieldDTO("field0005",field0005,field0005));
- fields.add(new RecordFieldDTO("field0006",field0006,field0006));
- fields.add(new RecordFieldDTO("field0007",field0007,field0007));
- fields.add(new RecordFieldDTO("field0008",field0008,field0008));
- fields.add(new RecordFieldDTO("field0009",field0009,field0009));
- fields.add(new RecordFieldDTO("field0010",field0010,field0010));
- fields.add(new RecordFieldDTO("field0011",field0011,field0011));
- fields.add(new RecordFieldDTO("field0012",field0012,field0012));
- fields.add(new RecordFieldDTO("field0013",field0013,field0013));
- fields.add(new RecordFieldDTO("field0014",field0014,field0014));
- fields.add(new RecordFieldDTO("field0015",field0015,field0015));
- //masterTable
- MasterTableDTO masterTableDTO = new MasterTableDTO();
- masterTableDTO.setName("formmain_1284");
- RecordDTO recordDTO = new RecordDTO();
- recordDTO.setId(UUIDLong.longUUID());
- recordDTO.setFields(fields);
- masterTableDTO.setRecord(recordDTO);
- //dataList
- FormDataDTO formDataDTO = new FormDataDTO();
- formDataDTO.setMasterTable(masterTableDTO);
- dataList.add(formDataDTO);
- formDTO.setDataList(dataList);
- }
- }
- }
-
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/dao/IMdmDao.java b/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/dao/IMdmDao.java
deleted file mode 100644
index b69adb80..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/dao/IMdmDao.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.hzya.frame.plugin.masterData.dao;
-
-import com.hzya.frame.basedao.dao.IBaseDao;
-import com.hzya.frame.plugin.masterData.entity.MdmEntity;
-
-/**
- * 客户档案(mdm_customer: table)表数据库访问层
- *
- * @author makejava
- * @since 2024-06-21 13:52:35
- */
-public interface IMdmDao extends IBaseDao {
-
-}
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/dao/impl/MdmDaoImpl.java b/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/dao/impl/MdmDaoImpl.java
deleted file mode 100644
index 05e95b1e..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/dao/impl/MdmDaoImpl.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.hzya.frame.plugin.masterData.dao.impl;
-
-import com.hzya.frame.plugin.masterData.entity.MdmEntity;
-import com.hzya.frame.plugin.masterData.dao.IMdmDao;
-import com.hzya.frame.basedao.dao.MybatisGenericDao;
-/**
- * 客户档案(MdmCustomer)表数据库访问层
- *
- * @author makejava
- * @since 2024-06-21 13:52:35
- */
-public class MdmDaoImpl extends MybatisGenericDao implements IMdmDao {
-
-}
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/entity/MdmEntity.java b/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/entity/MdmEntity.java
deleted file mode 100644
index e8d7f6f9..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/entity/MdmEntity.java
+++ /dev/null
@@ -1,186 +0,0 @@
-package com.hzya.frame.plugin.masterData.entity;
-
-import java.util.Date;
-import com.hzya.frame.web.entity.BaseEntity;
-/**
- * 客户档案(MdmCustomer)实体类
- *
- * @author makejava
- * @since 2024-06-21 13:52:35
- */
-public class MdmEntity extends BaseEntity {
-
- /** 单据规则 */
- private String documentRule;
- /** 单据规则流水号 */
- private Long documentRuleNum;
- /** 数据状态 Y正常 N删除 F修改 */
- private String dataStatus;
- /** 新增数据状态 0待下发 1已下发 */
- private String addStatus;
- /** 修改数据状态 0待下发 1已下发 */
- private String updateStatus;
- /** 删除数据状态 0待下发 1已下发 */
- private String deleteStatus;
- /** 公司id */
- private String companyId;
- /** 客户编码 */
- private String code;
- /** 客户类型 */
- private String custprop;
- /** 客户状态 */
- private String custstate;
- /** 启用状态 */
- private String enablestate;
- /** 客户名称 */
- private String name;
- /** 国家/地区 */
- private String pkCountry;
- /** 客户基本分类 */
- private String pkCustclass;
- /** 所属集团 */
- private String pkGroup;
- /** 所属组织 */
- private String pkOrg;
- /** 纳税人登记号 */
- private String taxpayerid;
-
-
- public String getDocumentRule() {
- return documentRule;
- }
-
- public void setDocumentRule(String documentRule) {
- this.documentRule = documentRule;
- }
-
- public Long getDocumentRuleNum() {
- return documentRuleNum;
- }
-
- public void setDocumentRuleNum(Long documentRuleNum) {
- this.documentRuleNum = documentRuleNum;
- }
-
- public String getDataStatus() {
- return dataStatus;
- }
-
- public void setDataStatus(String dataStatus) {
- this.dataStatus = dataStatus;
- }
-
- public String getAddStatus() {
- return addStatus;
- }
-
- public void setAddStatus(String addStatus) {
- this.addStatus = addStatus;
- }
-
- public String getUpdateStatus() {
- return updateStatus;
- }
-
- public void setUpdateStatus(String updateStatus) {
- this.updateStatus = updateStatus;
- }
-
- public String getDeleteStatus() {
- return deleteStatus;
- }
-
- public void setDeleteStatus(String deleteStatus) {
- this.deleteStatus = deleteStatus;
- }
-
- public String getCompanyId() {
- return companyId;
- }
-
- public void setCompanyId(String companyId) {
- this.companyId = companyId;
- }
-
- public String getCode() {
- return code;
- }
-
- public void setCode(String code) {
- this.code = code;
- }
-
- public String getCustprop() {
- return custprop;
- }
-
- public void setCustprop(String custprop) {
- this.custprop = custprop;
- }
-
- public String getCuststate() {
- return custstate;
- }
-
- public void setCuststate(String custstate) {
- this.custstate = custstate;
- }
-
- public String getEnablestate() {
- return enablestate;
- }
-
- public void setEnablestate(String enablestate) {
- this.enablestate = enablestate;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getPkCountry() {
- return pkCountry;
- }
-
- public void setPkCountry(String pkCountry) {
- this.pkCountry = pkCountry;
- }
-
- public String getPkCustclass() {
- return pkCustclass;
- }
-
- public void setPkCustclass(String pkCustclass) {
- this.pkCustclass = pkCustclass;
- }
-
- public String getPkGroup() {
- return pkGroup;
- }
-
- public void setPkGroup(String pkGroup) {
- this.pkGroup = pkGroup;
- }
-
- public String getPkOrg() {
- return pkOrg;
- }
-
- public void setPkOrg(String pkOrg) {
- this.pkOrg = pkOrg;
- }
-
- public String getTaxpayerid() {
- return taxpayerid;
- }
-
- public void setTaxpayerid(String taxpayerid) {
- this.taxpayerid = taxpayerid;
- }
-
-}
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/entity/MdmEntity.xml b/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/entity/MdmEntity.xml
deleted file mode 100644
index 46d5962b..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/entity/MdmEntity.xml
+++ /dev/null
@@ -1,375 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- id
- ,document_rule
- ,document_rule_num
- ,data_status
- ,add_status
- ,update_status
- ,delete_status
- ,sorts
- ,create_user_id
- ,create_time
- ,modify_user_id
- ,modify_time
- ,sts
- ,org_id
- ,company_id
- ,code
- ,custprop
- ,custstate
- ,enablestate
- ,name
- ,pk_country
- ,pk_custclass
- ,pk_group
- ,pk_org
- ,taxpayerid
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- insert into mdm_customer(
-
- id ,
- document_rule ,
- document_rule_num ,
- data_status ,
- add_status ,
- update_status ,
- delete_status ,
- sorts ,
- create_user_id ,
- create_time ,
- modify_user_id ,
- modify_time ,
- sts ,
- org_id ,
- company_id ,
- code ,
- custprop ,
- custstate ,
- enablestate ,
- name ,
- pk_country ,
- pk_custclass ,
- pk_group ,
- pk_org ,
- taxpayerid ,
- sts,
-
- )values(
-
- #{id} ,
- #{documentRule} ,
- #{documentRuleNum} ,
- #{dataStatus} ,
- #{addStatus} ,
- #{updateStatus} ,
- #{deleteStatus} ,
- #{sorts} ,
- #{create_user_id} ,
- #{create_time} ,
- #{modify_user_id} ,
- #{modify_time} ,
- #{sts} ,
- #{org_id} ,
- #{companyId} ,
- #{code} ,
- #{custprop} ,
- #{custstate} ,
- #{enablestate} ,
- #{name} ,
- #{pkCountry} ,
- #{pkCustclass} ,
- #{pkGroup} ,
- #{pkOrg} ,
- #{taxpayerid} ,
- 'Y',
-
- )
-
-
-
- insert into mdm_customer(document_rule, document_rule_num, data_status, add_status, update_status, delete_status, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, code, custprop, custstate, enablestate, name, pk_country, pk_custclass, pk_group, pk_org, taxpayerid, sts)
- values
-
- (#{entity.documentRule},#{entity.documentRuleNum},#{entity.dataStatus},#{entity.addStatus},#{entity.updateStatus},#{entity.deleteStatus},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId},#{entity.code},#{entity.custprop},#{entity.custstate},#{entity.enablestate},#{entity.name},#{entity.pkCountry},#{entity.pkCustclass},#{entity.pkGroup},#{entity.pkOrg},#{entity.taxpayerid}, 'Y')
-
-
-
-
- insert into mdm_customer(document_rule, document_rule_num, data_status, add_status, update_status, delete_status, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, code, custprop, custstate, enablestate, name, pk_country, pk_custclass, pk_group, pk_org, taxpayerid)
- values
-
- (#{entity.documentRule},#{entity.documentRuleNum},#{entity.dataStatus},#{entity.addStatus},#{entity.updateStatus},#{entity.deleteStatus},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId},#{entity.code},#{entity.custprop},#{entity.custstate},#{entity.enablestate},#{entity.name},#{entity.pkCountry},#{entity.pkCustclass},#{entity.pkGroup},#{entity.pkOrg},#{entity.taxpayerid})
-
- on duplicate key update
- document_rule = values(document_rule),
- document_rule_num = values(document_rule_num),
- data_status = values(data_status),
- add_status = values(add_status),
- update_status = values(update_status),
- delete_status = values(delete_status),
- create_user_id = values(create_user_id),
- create_time = values(create_time),
- modify_user_id = values(modify_user_id),
- modify_time = values(modify_time),
- sts = values(sts),
- org_id = values(org_id),
- company_id = values(company_id),
- code = values(code),
- custprop = values(custprop),
- custstate = values(custstate),
- enablestate = values(enablestate),
- name = values(name),
- pk_country = values(pk_country),
- pk_custclass = values(pk_custclass),
- pk_group = values(pk_group),
- pk_org = values(pk_org),
- taxpayerid = values(taxpayerid)
-
-
-update mdm_customer set
-
- document_rule = #{documentRule},
- document_rule_num = #{documentRuleNum},
- data_status = #{dataStatus},
- add_status = #{addStatus},
- update_status = #{updateStatus},
- delete_status = #{deleteStatus},
- create_user_id = #{create_user_id},
- create_time = #{create_time},
- modify_user_id = #{modify_user_id},
- modify_time = #{modify_time},
- sts = #{sts},
- org_id = #{org_id},
- company_id = #{companyId},
- code = #{code},
- custprop = #{custprop},
- custstate = #{custstate},
- enablestate = #{enablestate},
- name = #{name},
- pk_country = #{pkCountry},
- pk_custclass = #{pkCustclass},
- pk_group = #{pkGroup},
- pk_org = #{pkOrg},
- taxpayerid = #{taxpayerid},
-
-where id = #{id}
-
-
-
-update mdm_customer set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
-where id = #{id}
-
-
-
-update mdm_customer set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
-
- and id = #{id}
- and document_rule = #{documentRule}
- and document_rule_num = #{documentRuleNum}
- and data_status = #{dataStatus}
- and add_status = #{addStatus}
- and update_status = #{updateStatus}
- and delete_status = #{deleteStatus}
- and sorts = #{sorts}
- and sts = #{sts}
- and company_id = #{companyId}
- and code = #{code}
- and custprop = #{custprop}
- and custstate = #{custstate}
- and enablestate = #{enablestate}
- and name = #{name}
- and pk_country = #{pkCountry}
- and pk_custclass = #{pkCustclass}
- and pk_group = #{pkGroup}
- and pk_org = #{pkOrg}
- and taxpayerid = #{taxpayerid}
- and sts='Y'
-
-
-
-
- delete from mdm_customer where id = #{id}
-
-
-
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/plugin/MdmPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/plugin/MdmPluginInitializer.java
deleted file mode 100644
index 02577f11..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/plugin/MdmPluginInitializer.java
+++ /dev/null
@@ -1,61 +0,0 @@
-package com.hzya.frame.plugin.masterData.plugin;
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.sysnew.comparison.masterData.service.IMasterDataService;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-/**
- * 主数据同步
- *
- * @author makejava
- * @since 2024-06-21 13:52:35
- */
-public class MdmPluginInitializer extends PluginBaseEntity{
- Logger logger = LoggerFactory.getLogger(MdmPluginInitializer.class);
- @Autowired
- private IMasterDataService masterDataService;
-
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- @Override
- public String getPluginId() {
- return "MdmCustomerPlugin";
- }
-
- @Override
- public String getPluginName() {
- return "MdmCustomerPlugin插件";
- }
-
- @Override
- public String getPluginLabel() {
- return "MdmCustomerPlugin";
- }
-
- @Override
- public String getPluginType() {
- return "1";
- }
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) {
- try {
- logger.info("======开始执行主数据信息同步========");
- return masterDataService.queryArchives(requestJson);
- }catch (Exception e){
- logger.info("======执行主数据同步失败:{}========",e.getMessage());
- e.printStackTrace();
- }
- return null;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/service/IMdmService.java b/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/service/IMdmService.java
deleted file mode 100644
index 175d0616..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/service/IMdmService.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.hzya.frame.plugin.masterData.service;
-
-import com.hzya.frame.plugin.masterData.entity.MdmEntity;
-import com.hzya.frame.basedao.service.IBaseService;
-/**
- * 客户档案(MdmCustomer)表服务接口
- *
- * @author makejava
- * @since 2024-06-21 13:52:35
- */
-public interface IMdmService extends IBaseService{
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/service/impl/MdmServiceImpl.java b/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/service/impl/MdmServiceImpl.java
deleted file mode 100644
index e1016019..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/masterData/service/impl/MdmServiceImpl.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.hzya.frame.plugin.masterData.service.impl;
-
-import com.hzya.frame.plugin.masterData.entity.MdmEntity;
-import com.hzya.frame.plugin.masterData.dao.IMdmDao;
-import com.hzya.frame.plugin.masterData.service.IMdmService;
-import com.hzya.frame.plugin.masterData.service.IMdmService;
-import org.springframework.beans.factory.annotation.Autowired;
-import com.hzya.frame.basedao.service.impl.BaseService;
-/**
- * 客户档案(MdmCustomer)表服务实现类
- *
- * @author makejava
- * @since 2024-06-21 13:52:35
- */
-public class MdmServiceImpl extends BaseService implements IMdmService {
-
- private IMdmDao mdmCustomerDao;
-
- @Autowired
- public void setMdmCustomerDao(IMdmDao dao) {
- this.mdmCustomerDao = dao;
- this.dao = dao;
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/seeyonExt/plugin/SeeyonExtPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/seeyonExt/plugin/SeeyonExtPluginInitializer.java
deleted file mode 100644
index 94c446d8..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/seeyonExt/plugin/SeeyonExtPluginInitializer.java
+++ /dev/null
@@ -1,138 +0,0 @@
-package com.hzya.frame.plugin.seeyonExt.plugin;
-
-import cn.hutool.core.util.StrUtil;
-import cn.hutool.json.JSONUtil;
-import com.alibaba.fastjson.JSON;
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.seeyon.service.ISeeYonInterFace;
-import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsEntity;
-import com.hzya.frame.sysnew.integtationTaskLivingDetails.service.IIntegrationTaskLivingDetailsService;
-import com.hzya.frame.web.entity.BaseResult;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-
-import java.util.HashMap;
-import java.util.Map;
-
-/**
- * @Description
- * @Author xiangerlin
- * @Date 2024/5/15 08:34
- **/
-public class SeeyonExtPluginInitializer extends PluginBaseEntity {
- Logger logger = LoggerFactory.getLogger(SeeyonExtPluginInitializer.class);
- @Autowired
- private IIntegrationTaskLivingDetailsService taskLivingDetailsService;
- @Autowired
- private ISeeYonInterFace seeyInterFace;
- /***
- * 插件初始化方法
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 10:48
- * @Param []
- * @return void
- **/
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- /****
- * 插件销毁方法
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- /****
- * 插件的ID
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginId() {
- return "SeeyonExtPlugin";
- }
-
- /****
- * 插件的名称
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginName() {
- return "seeyonExt插件";
- }
-
- /****
- * 插件的显示值
- * @author 👻👻👻👻👻👻👻👻 gjh
- * @date 2023-08-02 10:48
- * @return void
- **/
- @Override
- public String getPluginLabel() {
- return "seeyonExt插件";
- }
-
- /***
- * 插件类型 1、场景插件
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-02 14:01
- * @Param []
- * @return java.lang.String
- **/
- @Override
- public String getPluginType() {
- return "1";
- }
-
- /***
- * seeyonExt 重试专用插件
- * @Since 3.0
- * @Author 👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-08-07 11:20
- * @param requestJson 执行业务代码的参数
- * @return void
- **/
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
- try {
- //重试方法
- if (null != requestJson){
- //JSONObject jsonStr = requestJson.getJSONObject("jsonStr");
- //如果这个id不为空,说明是重试的
- String id = requestJson.getString("integration_task_living_details_id");
- if (StrUtil.isNotEmpty(id)){
- //查询日志表
- IntegrationTaskLivingDetailsEntity taskDetailEntity = taskLivingDetailsService.get(id);
- if (null != taskDetailEntity && JSONUtil.isTypeJSON(taskDetailEntity.getRootAppPk())){
- //拿到这张表的源系统ID
- JSONObject jsonObject = JSONObject.parseObject(taskDetailEntity.getRootAppPk());
- MapextData = new HashMap<>();
- extData.put("integration_task_living_details_id",id);//把日志id放到hzyaExtData中,下游方法从这个对象里取
- jsonObject.put("hzyaExtData",extData);
- JSONObject param = new JSONObject();
- param.put("jsonStr", JSON.toJSONString(jsonObject));
- //调用seeyon标准重试方法
- seeyInterFace.thirdInterfaceSeeYonDefinitionRePush(param);
- }
- }
- }
- logger.info("执行成功");
- return BaseResult.getSuccessMessageEntity("执行成功");
- }catch (Exception e){
- e.printStackTrace();
- }
- return BaseResult.getSuccessMessageEntity("执行成功");
- }
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/entity/SysESBMessageManageLogEntity.java b/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/entity/SysESBMessageManageLogEntity.java
deleted file mode 100644
index 1d39e5c6..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/entity/SysESBMessageManageLogEntity.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.hzya.frame.plugin.sysMessageManageLogBack.entity;
-
-import com.hzya.frame.web.entity.BaseEntity;
-
-public class SysESBMessageManageLogEntity extends BaseEntity {
-
- private String name;
-
-
-
-}
-
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/plugin/SysMessageManageLogPluginInitializer.java b/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/plugin/SysMessageManageLogPluginInitializer.java
deleted file mode 100644
index ed6f5231..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/plugin/SysMessageManageLogPluginInitializer.java
+++ /dev/null
@@ -1,59 +0,0 @@
-package com.hzya.frame.plugin.sysMessageManageLogBack.plugin;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.base.PluginBaseEntity;
-import com.hzya.frame.web.entity.BaseResult;
-import com.hzya.frame.web.entity.JsonResultEntity;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * 消息管理日志(SysMessageManageLog)表服务接口
- *
- * @author makejava
- * @since 2024-03-08 10:22:00
- */
-public class SysMessageManageLogPluginInitializer extends PluginBaseEntity {
- Logger logger = LoggerFactory.getLogger(SysMessageManageLogPluginInitializer.class);
-
- @Override
- public void initialize() {
- logger.info(getPluginLabel() + "執行初始化方法initialize()");
- }
-
- @Override
- public void destroy() {
- logger.info(getPluginLabel() + "執行銷毀方法destroy()");
- }
-
- @Override
- public String getPluginId() {
- return "SysMessageManageLogPlugin";
- }
-
- @Override
- public String getPluginName() {
- return "ESB消息日志备份";
- }
-
- @Override
- public String getPluginLabel() {
- return "ESB消息日志备份";
- }
- @Override
- public String getPluginType() {
- return "1";
- }
-
- @Override
- public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
- try {
- logger.info("执行成功");
- return BaseResult.getSuccessMessageEntity("执行成功");
- }catch (Exception e){
- e.printStackTrace();
- }
- return BaseResult.getSuccessMessageEntity("执行成功");
- }
-
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/service/ISysESBMessageManageLogService.java b/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/service/ISysESBMessageManageLogService.java
deleted file mode 100644
index b30d5da9..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/service/ISysESBMessageManageLogService.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.hzya.frame.plugin.sysMessageManageLogBack.service;
-
-import com.hzya.frame.basedao.service.IBaseService;
-import com.hzya.frame.plugin.sysMessageManageLogBack.entity.SysESBMessageManageLogEntity;
-
-/**
- * 消息管理日志(SysMessageManageLog)表服务接口
- *
- * @author makejava
- * @since 2024-03-08 10:22:00
- */
-public interface ISysESBMessageManageLogService extends IBaseService {
-}
diff --git a/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/service/impl/SysESBMessageManageLogServiceImpl.java b/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/service/impl/SysESBMessageManageLogServiceImpl.java
deleted file mode 100644
index a1494624..00000000
--- a/buildpackage/src/main/java/com/hzya/frame/plugin/sysMessageManageLogBack/service/impl/SysESBMessageManageLogServiceImpl.java
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.hzya.frame.plugin.sysMessageManageLogBack.service.impl;
-
-import com.hzya.frame.basedao.service.impl.BaseService;
-import com.hzya.frame.plugin.sysMessageManageLogBack.entity.SysESBMessageManageLogEntity;
-import com.hzya.frame.plugin.sysMessageManageLogBack.service.ISysESBMessageManageLogService;
-
-/**
- * 消息管理日志(SysMessageManageLog)表服务实现类
- *
- * @author makejava
- * @since 2024-03-08 10:22:00
- */
-public class SysESBMessageManageLogServiceImpl extends BaseService implements ISysESBMessageManageLogService {
-
-}
diff --git a/buildpackage/src/main/resources/application-ax.yml b/buildpackage/src/main/resources/application-ax.yml
deleted file mode 100644
index fda31564..00000000
--- a/buildpackage/src/main/resources/application-ax.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-#######################澳星环境#######################
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: GBK
- file:
-# 日志保存路径
- path: E:\yongansystem\log
-spring:
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:mysql://127.0.0.1:3306/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
- username: root
- password: 62e4295b615a30dbf3b8ee96f41c820b
- driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-savefile:
- # 文件保存路径
- path: E:\yongansystem\file
-zt:
- url: http://127.0.0.1:9081/kangarooDataCenterV3/entranceController/externalCallInterface
\ No newline at end of file
diff --git a/buildpackage/src/main/resources/application-hclocal.yml b/buildpackage/src/main/resources/application-hclocal.yml
deleted file mode 100644
index 1ec327da..00000000
--- a/buildpackage/src/main/resources/application-hclocal.yml
+++ /dev/null
@@ -1,27 +0,0 @@
-#######################本地环境#######################
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: UTF-8
- file:
-# 日志保存路径
- path: D:\yongansystem\kangarooDataCenter\v3\logs
-spring:
- datasource:
- dynamic:
- datasource:
- master:
-# url: jdbc:mysql://ufidahz.com.cn:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
-# username: root
-# password: bd993088e8a7c3dc5f44441617f9b4bf
-# driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
- url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
- username: root
- password: 62e4295b615a30dbf3b8ee96f41c820b
- driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-savefile:
- # 文件保存路径
- path: D:\yongansystem\kangarooDataCenter\v3\logs
-zt:
- url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
diff --git a/buildpackage/src/main/resources/application-local.yml b/buildpackage/src/main/resources/application-local.yml
deleted file mode 100644
index 66d151f2..00000000
--- a/buildpackage/src/main/resources/application-local.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-#######################本地环境#######################
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: UTF-8
- file:
-# 日志保存路径
- path: /Users/apple/Desktop/log/local
-spring:
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
- username: root
- password: 62e4295b615a30dbf3b8ee96f41c820b
- driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-savefile:
- # 文件保存路径
- path: /Users/apple/Desktop/log/local
-zt:
- url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
diff --git a/buildpackage/src/main/resources/application-xel.yml b/buildpackage/src/main/resources/application-xel.yml
deleted file mode 100644
index e53ca4c4..00000000
--- a/buildpackage/src/main/resources/application-xel.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-#######################本地环境#######################
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: UTF-8
- file:
-# 日志保存路径
- path: /Users/xiangerlin/work/app/logs/dev
-spring:
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
- username: root
- password: 62e4295b615a30dbf3b8ee96f41c820b
- driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-savefile:
- # 文件保存路径
- path: /Users/xiangerlin/work/app/file/dev
-cbs8:
- appId: 1P4AGrpz
- appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
- url: https://cbs8-openapi-reprd.csuat.cmburl.cn
- # 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
- ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
- # 这个私钥到时候上传到cbs,和下面到是同一对
- #ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
- ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
- cbs_public_key: 0469146F06BF3B01236E84632441E826F3067A6B93BC3839C836A06007869CD351FBBE388B51F742859388BBC1DE089923AAFBC69E448F15141DDF30EE6CE90185
- #电子回单下载临时存放位置
- elec_path: /Users/xiangerlin/Downloads/
-OA:
- data_source_code: yc-test
diff --git a/buildpackage/src/main/resources/application-yc.yml b/buildpackage/src/main/resources/application-yc.yml
deleted file mode 100644
index b2e3e2cf..00000000
--- a/buildpackage/src/main/resources/application-yc.yml
+++ /dev/null
@@ -1,90 +0,0 @@
-#logging:
-# #日志级别 指定目录级别
-# level:
-# root: info
-# encodings: UTF-8
-# file:
-# # 日志保存路径
-# path: /zt/log
-#spring:
-# flyway:
-# # 启动flyway migration, 默认为true
-# enabled: false
-# datasource:
-# dynamic:
-# druid:
-# filters: stat,log4j2
-# datasource:
-# master:
-# url: jdbc:dm://10.75.51.82:5238?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
-# username: businesscenter
-# password: 6842568689469adad597d144ee104063
-# driver-class-name: dm.jdbc.driver.DmDriver
-#savefile:
-# # 文件保存路径
-# path: /zt/file
-#公司mysql
-#ax:
-# url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
-#logging:
-# #日志级别 指定目录级别warn
-# level:
-# root: info
-# encodings: UTF-8
-# file:
-# # 日志保存路径
-# path: /home/webservice/zt/log
-#spring:
-# datasource:
-# dynamic:
-# datasource:
-# master:
-# url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
-# username: root
-# password: 62e4295b615a30dbf3b8ee96f41c820b
-# driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-#savefile:
-# # 文件保存路径
-# path: /home/webservice/zt/file
-
-
-#公司服务器达梦
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: UTF-8
- file:
- # 日志保存路径
- path: /zt/log
-spring:
- flyway:
- # 启动flyway migration, 默认为true
- enabled: false
- datasource:
- dynamic:
- druid:
- filters: stat,log4j2
- datasource:
- master:
- url: jdbc:dm://ufidahz.com.cn:9040?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
- username: hzyazt
- password: 62e4295b615a30dbf3b8ee96f41c820b
- driver-class-name: dm.jdbc.driver.DmDriver
-savefile:
- # 文件保存路径
- path: /zt/file
-cbs8:
- appId: 1P4AGrpz
- appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
- url: https://cbs8-openapi-reprd.csuat.cmburl.cn
- # 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
- ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
- # 这个私钥到时候上传到cbs,和下面到是同一对
- #ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
- ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
- cbs_public_key: 0469146F06BF3B01236E84632441E826
- #电子回单下载临时存放位置
- elec_path: /zt/elecfile
-OA:
- data_source_code: yc_oa
diff --git a/buildpackage/src/main/resources/application-ydc.yml b/buildpackage/src/main/resources/application-ydc.yml
deleted file mode 100644
index 3038dda0..00000000
--- a/buildpackage/src/main/resources/application-ydc.yml
+++ /dev/null
@@ -1,21 +0,0 @@
-#######################本地环境#######################
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: UTF-8
- file:
-# 日志保存路径
- path: /Users/xiangerlin/work/app/logs/ydc
-spring:
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:mysql://ufidahz.com.cn:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
- username: root
- password: bd993088e8a7c3dc5f44441617f9b4bf
- driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-savefile:
- # 文件保存路径
- path: /Users/xiangerlin/work/app/logs/ydc
diff --git a/buildpackage/src/main/resources/application-yuecheng.yml b/buildpackage/src/main/resources/application-yuecheng.yml
deleted file mode 100644
index 7e081ecb..00000000
--- a/buildpackage/src/main/resources/application-yuecheng.yml
+++ /dev/null
@@ -1,31 +0,0 @@
-#######################本地环境#######################
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: UTF-8
- file:
-# 日志保存路径
- path: /Users/xiangerlin/work/app/logs/yuecheng
-spring:
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
- username: root
- password: 62e4295b615a30dbf3b8ee96f41c820b
- driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-savefile:
- # 文件保存路径
- path: /Users/xiangerlin/work/app/logs/yuecheng
-cbs8:
- appId: 1P4AGrpz
- appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
- url: https://cbs8-openapi-reprd.csuat.cmburl.cn
- # 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
- ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
- # 这个私钥到时候上传到cbs,和下面到是同一对
- #ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
- ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
- cbs_public_key: 0469146F06BF3B01236E84632441E826F3067A6B93BC3839C836A06007869CD351FBBE388B51F742859388BBC1DE089923AAFBC69E448F15141DDF30EE6CE90185
diff --git a/buildpackage/src/main/resources/application-yuqh.yml b/buildpackage/src/main/resources/application-yuqh.yml
deleted file mode 100644
index d114d224..00000000
--- a/buildpackage/src/main/resources/application-yuqh.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-#######################本地环境#######################
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: UTF-8
- file:
-# 日志保存路径
- path: E:\yongansystem\log
-spring:
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:mysql://ufidahz.com.cn:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
- username: root
- password: bd993088e8a7c3dc5f44441617f9b4bf
- driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-savefile:
- # 文件保存路径
- path: E:\yongansystem\log
-zt:
- url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
diff --git a/buildpackage/src/main/resources/application-zqtlocal.yml b/buildpackage/src/main/resources/application-zqtlocal.yml
deleted file mode 100644
index ffff00a3..00000000
--- a/buildpackage/src/main/resources/application-zqtlocal.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-#######################zqtlocal环境#######################
-logging:
- #日志级别 指定目录级别
- level:
- root: info
- encodings: UTF-8
- file:
- # 日志保存路径
- path: D:/local/logs/
-spring:
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
- username: root
- password: 62e4295b615a30dbf3b8ee96f41c820b
- driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
-savefile:
- # 文件保存路径
- path: D:/local/upload/
- pluginpath : D:/local/plugin/
- tomcatpath: E:\apache-tomcat-9.0.27\webapps\kangarooDataCenterV3\WEB-INF\classes\
-cbs8:
- appId: 1P4AGrpz
- appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
- url: https://cbs8-openapi-reprd.csuat.cmburl.cn
- # 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
- ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
- # 这个私钥到时候上传到cbs,和下面到是同一对
- #ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
- ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
- cbs_public_key: 0469146F06BF3B01236E84632441E826
- #电子回单下载临时存放位置
- elec_path: /Users/xiangerlin/Downloads/
-OA:
- data_source_code: yc_oa
-zt:
- url: http://127.0.0.1:9082/kangarooDataCenterV3/entranceController/externalCallInterface
\ No newline at end of file
diff --git a/buildpackage/src/main/resources/application.yml b/buildpackage/src/main/resources/application.yml
index 7b481a9d..be68b2f0 100644
--- a/buildpackage/src/main/resources/application.yml
+++ b/buildpackage/src/main/resources/application.yml
@@ -125,4 +125,4 @@ jeecg :
minio_pass: ??
bucketName: ??
data:
- use: true
+ use: false
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/cbs8/pluginCfg.xml b/buildpackage/src/main/resources/cfgHome/plugin/cbs8/pluginCfg.xml
deleted file mode 100644
index eec419c5..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/cbs8/pluginCfg.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-CBS8PayApplyPlugin
-cbs8插件
-202406070001
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/cbs8/spring/spring-buildpackage-plugin.xml b/buildpackage/src/main/resources/cfgHome/plugin/cbs8/spring/spring-buildpackage-plugin.xml
deleted file mode 100644
index 81dc741a..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/cbs8/spring/spring-buildpackage-plugin.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/cbs8/spring/spring-buildpackage-service.xml b/buildpackage/src/main/resources/cfgHome/plugin/cbs8/spring/spring-buildpackage-service.xml
deleted file mode 100644
index f3c93de6..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/cbs8/spring/spring-buildpackage-service.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/masterData/pluginCfg.xml b/buildpackage/src/main/resources/cfgHome/plugin/masterData/pluginCfg.xml
deleted file mode 100644
index e9adf11a..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/masterData/pluginCfg.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-MdmPlugin
-MdmPlugin插件
-90000001
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-dao.xml b/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-dao.xml
deleted file mode 100644
index 471dd4a6..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-dao.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-plugin.xml b/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-plugin.xml
deleted file mode 100644
index 6943ad23..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-plugin.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-service.xml b/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-service.xml
deleted file mode 100644
index c642948f..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/masterData/spring/spring-buildpackage-service.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/payBill/pluginCfg.xml b/buildpackage/src/main/resources/cfgHome/plugin/payBill/pluginCfg.xml
deleted file mode 100644
index cedbfee4..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/payBill/pluginCfg.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-PayBillPlugin
-OA付款单插件
-202406210001
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/payBill/spring/spring-buildpackage-plugin.xml b/buildpackage/src/main/resources/cfgHome/plugin/payBill/spring/spring-buildpackage-plugin.xml
deleted file mode 100644
index 03e1cd8a..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/payBill/spring/spring-buildpackage-plugin.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/payBill/spring/spring-buildpackage-service.xml b/buildpackage/src/main/resources/cfgHome/plugin/payBill/spring/spring-buildpackage-service.xml
deleted file mode 100644
index 88a86bfb..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/payBill/spring/spring-buildpackage-service.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/seeyonExt/pluginCfg.xml b/buildpackage/src/main/resources/cfgHome/plugin/seeyonExt/pluginCfg.xml
deleted file mode 100644
index 458372d8..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/seeyonExt/pluginCfg.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-SeeyonExtPlugin
-seeyonExt插件
-202405150001
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/seeyonExt/spring/spring-buildpackage-plugin.xml b/buildpackage/src/main/resources/cfgHome/plugin/seeyonExt/spring/spring-buildpackage-plugin.xml
deleted file mode 100644
index cb98d142..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/seeyonExt/spring/spring-buildpackage-plugin.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/pluginCfg.xml b/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/pluginCfg.xml
deleted file mode 100644
index 00d5dc0b..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/pluginCfg.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-SysMessageManageLogPlugin
-SysMessageManageLogPlugin插件
-202403080010
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-dao.xml b/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-dao.xml
deleted file mode 100644
index f857d7fc..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-dao.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-plugin.xml b/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-plugin.xml
deleted file mode 100644
index 2ca55124..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-plugin.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-service.xml b/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-service.xml
deleted file mode 100644
index 4f0c39ab..00000000
--- a/buildpackage/src/main/resources/cfgHome/plugin/sysMessageManageLogBack/spring/spring-buildpackage-service.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/buildpackage/src/main/resources/dbSql/dj/V3.0.10__init_app_djhs.sql b/buildpackage/src/main/resources/dbSql/dj/V3.0.10__init_app_djhs.sql
deleted file mode 100644
index 61f06431..00000000
--- a/buildpackage/src/main/resources/dbSql/dj/V3.0.10__init_app_djhs.sql
+++ /dev/null
@@ -1,24 +0,0 @@
-INSERT INTO sys_application (id, app_logo, app_status, name, version_number, access_mode, affiliation_field, manufacturer, app_introduction, client_path, app_id, system_address, web_path, program_path, public_key, secret_key, interface_address, interface_status, app_type, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('70d24970f0e8429485220fff1e331e50', NULL, '1', '东进环思', '1.0', '[\"2\",\"1\"]', '1', '环丝应用(东进环思)', '环丝应用(东进环思)', NULL, 800033, NULL, NULL, NULL, 'ZJYA0iD/DtdYCBYE1AqHlz4All0gLb96p8G1xNjdGz4tDZlCe7eDIk+3zDUT+v578prj', 'nL860JIPqIuB0jUsJE5RZLcyZfi8ArRSz6rk0h69TDbkf3Qq0Jstwk9FIgbGa6ejj3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=', NULL, '2', '1', '2', 25, NULL, 'Y', '2024-07-16 10:14:05', '1', '2024-07-16 10:14:05', '1');
-
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('0be0862057b249c5b3b902f9d2e18744', 8000330000, NULL, '1', '70d24970f0e8429485220fff1e331e50', '770605aa7fdd4673960b488ee37538ad', '客商档案新增', '中台—环思,客商档案同步环思', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"f7c387b0-d5d3-48d3-9aa6-c84e9b12a06d\",\"parameterName\":\"body\",\"first\":true}]', '[]', 252, '1', '2024-07-16 10:53:07', '1', '2024-07-16 10:53:07', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('362bc0ef8a0e4a8fbb015e7ff241147b', 8000330002, NULL, '1', '70d24970f0e8429485220fff1e331e50', 'a02cccd7bac94d7ba2a42bf684d9ab4c', '物料分类新增', '中台—环思,物料分类同步环思', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"0c291ae8-7bc7-46ad-8954-4f9b1cf03454\",\"parameterName\":\"body\",\"first\":true}]', '[]', 254, '1', '2024-07-16 10:54:57', '1', '2024-07-16 10:54:57', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('3c40a2e4a5a7444d9cdb28b9c8e4e1a9', 8000330003, NULL, '1', '70d24970f0e8429485220fff1e331e50', 'a02cccd7bac94d7ba2a42bf684d9ab4c', '物料分类修改', '中台—环思,物料分类同步环思\n', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"f3b82e1a-1fea-4804-bbbc-17ea51a78871\",\"parameterName\":\"body\",\"first\":true}]', '[]', 255, '1', '2024-07-16 10:55:21', '1', '2024-07-16 10:55:21', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('5d89843a48c248649dfc351913666f6e', 8000330001, NULL, '1', '70d24970f0e8429485220fff1e331e50', '770605aa7fdd4673960b488ee37538ad', '客商档案修改', '中台—环思,客商档案同步环思\n', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"376565d7-604b-4451-9ce9-c8593b925b11\",\"parameterName\":\"body\",\"first\":true}]', '[]', 253, '1', '2024-07-16 10:53:33', '1', '2024-07-16 10:53:33', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('72a4da1a75394bf282260a755dd5b083', 8000330005, NULL, '1', '70d24970f0e8429485220fff1e331e50', '3b0732a8f5fc443d984c06b9fbde6459', '物料档案修改', '中台—环思,物料档案同步环思', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"9d3ef246-32bd-47ec-9acf-79f8bd83824f\",\"parameterName\":\"body\",\"first\":true}]', '[]', 257, '1', '2024-07-16 10:56:23', '1', '2024-07-16 10:56:23', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('c9a1fa17652f4d4fabe9d9656b0998ea', 8000330004, NULL, '1', '70d24970f0e8429485220fff1e331e50', '3b0732a8f5fc443d984c06b9fbde6459', '物料档案新增', '中台—环思,物料档案同步环思\n', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"70c43e7b-ce2e-4746-a358-26151c933a4d\",\"parameterName\":\"body\",\"first\":true}]', '[]', 256, '1', '2024-07-16 10:56:03', '1', '2024-07-16 10:56:03', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
-
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('3b0732a8f5fc443d984c06b9fbde6459', '70d24970f0e8429485220fff1e331e50', '物料档案', 82, NULL, 'Y', '2024-07-16 10:55:32', '1', '2024-07-16 10:55:32', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('770605aa7fdd4673960b488ee37538ad', '70d24970f0e8429485220fff1e331e50', '客商档案', 80, NULL, 'Y', '2024-07-16 10:52:27', '1', '2024-07-16 10:52:27', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('a02cccd7bac94d7ba2a42bf684d9ab4c', '70d24970f0e8429485220fff1e331e50', '物料分类', 81, NULL, 'Y', '2024-07-16 10:54:23', '1', '2024-07-16 10:54:23', '1');
-
-update sys_application_api set extension_api = '2' where extension_api is null;
-update sys_application_api set return_success_field = 'status' where return_success_field is null;
-update sys_application_api set return_success_value = '200' where return_success_value is null;
-update sys_application_api set return_msg = 'msg' where return_msg is null;
-
-
-
-
-commit;
-
-
diff --git a/buildpackage/src/main/resources/dbSql/dj/V3.0.11__init_app_djnbyhczdgj.sql b/buildpackage/src/main/resources/dbSql/dj/V3.0.11__init_app_djnbyhczdgj.sql
deleted file mode 100644
index 8ca2dd7c..00000000
--- a/buildpackage/src/main/resources/dbSql/dj/V3.0.11__init_app_djnbyhczdgj.sql
+++ /dev/null
@@ -1,17 +0,0 @@
-INSERT INTO sys_application (id, app_logo, app_status, name, version_number, access_mode, affiliation_field, manufacturer, app_introduction, client_path, app_id, system_address, web_path, program_path, public_key, secret_key, interface_address, interface_status, app_type, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('ae67183945fe48a890a5bedde34a23e8', NULL, '1', '宁波银行财资大管家', 'V1.0', '[\"1\",\"2\",\"3\",\"4\"]', '1', '宁波银行', '东进新材料对接宁波财资大管家', NULL, 800036, NULL, NULL, NULL, 'ZJYAA9Z/jWMe1rC+Sjh8NVMRtwVMb5Bn0DbmIEsgpVlR3C9Ce7eDIk+3zDUT+v578prj', 'B8sgQwEaskwM7BQj1XLvu3kdKD3xm7Lyd4FWsPaFQk5v+UtQLCkzVzLlCZ9Bdyv2j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=', 'http://127.0.0.1:9999/', '1', '3', '2', 23, NULL, 'Y', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', '1');
-
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('a7490cf7c5a641f68a6deb84df941d57', 8000360000, NULL, '1', 'ae67183945fe48a890a5bedde34a23e8', '58105ccc4b4b4fbf89312f85b09ea9f6', '单笔转账接口', '单笔转账接口', '2', NULL, '1', 'kangarooDataCenterV3/entranceController/platformInterface', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":0,\"concreteType\":\"String\",\"id\":\"8db68afc-64ff-4dac-b581-168b0b15ec59\",\"parameterName\":\"yatl\",\"required\":true,\"example\":\"ningboBankTreasuryServiceImpl\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":1,\"concreteType\":\"String\",\"id\":\"9a51135c-3c31-408d-8188-e0e8def2a2ea\",\"parameterName\":\"yadj\",\"required\":true,\"example\":\"sendNbBank\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":2,\"concreteType\":\"String\",\"id\":\"450138d7-fc93-4963-b891-beee640e1faa\",\"parameterName\":\"appKey\",\"required\":true,\"example\":\"54b3e05c-7983-4e6c-8920-f9ab8a0004a6\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":3,\"concreteType\":\"String\",\"description\":\"商户私钥\",\"id\":\"811d51c8-07a2-4245-b01f-a2f0de56db68\",\"parameterName\":\"privateKey\",\"required\":true,\"example\":\"MIGTAgEAMBMGByqGSM49AgEGCCqBHM9VAYItBHkwdwIBAQQgTt6OadouxxxSDg/0SZdOIBqtnFGKrpwmL+quEUf+hfSgCgYIKoEcz1UBgi2hRANCAAQGHNN2NO7btp+w1248yk98E0asGC8sG0bmIzdom4M0xp3vc4IfXjmZ8omUz4oVcjzAuyMSSpJM6uPLcU1SH4HZ\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":4,\"concreteType\":\"String\",\"id\":\"8da0ab8c-c518-439b-a241-0d66cd96ca21\",\"parameterName\":\"publicUrl\",\"required\":true,\"example\":\"http://cz-test.nbcb.com.cn:7070/nbcb/api\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":5,\"concreteType\":\"String\",\"description\":\"开放平台公钥\",\"id\":\"dee6fb29-61aa-4fd8-905c-e15904c5a35a\",\"parameterName\":\"publicKey\",\"required\":true,\"example\":\"MFkwEwYHKoZIzj0CAQYIKoEcz1UBgi0DQgAEXAt6fxeKlpREIyXoT3jDwGU7L6JkKrzdOKP1cMB14rtNwwlyaUGLrtuHVoArAHP3x7XN2rUw0GxSngYQwOAsjQ==\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":6,\"concreteType\":\"String\",\"description\":\"财资客户号\",\"id\":\"6d499c86-b66b-40e2-8f0f-48ea392478f5\",\"parameterName\":\"custId\",\"required\":true,\"example\":\"0000112058\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":7,\"concreteType\":\"String\",\"id\":\"b791597e-a44e-4c43-840e-daf35aa4856f\",\"parameterName\":\"productID\",\"required\":true,\"example\":\"tmsSettle\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":8,\"concreteType\":\"String\",\"id\":\"80dfdc20-38a6-4191-8c98-e32ff4c683d1\",\"parameterName\":\"serviceID\",\"required\":true,\"example\":\"singleTransfer\"}]', '[]', '1', '[{\"index\":0,\"id\":\"159491c8-a097-4df4-9abf-98f777b4f2c5\",\"parameterName\":\"body\",\"first\":true}]', '[]', 244, '1', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', 'Y', NULL, 'ningboBankTreasuryServiceImpl', 'doChangeData', '1', 'retCode', '0000', 'retMsg');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('ecdaa2fb5a754aab984ea94fed80a840', 8000360001, NULL, '1', 'ae67183945fe48a890a5bedde34a23e8', 'e6d546212791410593f758e289733361', '交易结果接口', '交易结果接口', '2', NULL, '1', 'kangarooDataCenterV3/entranceController/platformInterface', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":0,\"parameterName\":\"yatl\",\"id\":\"08d57d17-352f-4eb5-ab35-0c8f8d37c54f\",\"required\":true,\"example\":\"ningboBankTreasuryServiceImpl\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":1,\"parameterName\":\"yadj\",\"id\":\"c0412200-27c5-42ad-bd92-3d60cf5fae05\",\"required\":true,\"example\":\"sendNbBank\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"appKey\",\"id\":\"e4be39d4-016f-4048-85a7-4751a0b45221\",\"required\":true,\"example\":\"54b3e05c-7983-4e6c-8920-f9ab8a0004a6\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":3,\"description\":\"商户私钥\",\"parameterName\":\"privateKey\",\"id\":\"8027bd40-b0db-4040-9e1c-7971eb2c4480\",\"required\":true,\"example\":\"MIGTAgEAMBMGByqGSM49AgEGCCqBHM9VAYItBHkwdwIBAQQgTt6OadouxxxSDg/0SZdOIBqtnFGKrpwmL+quEUf+hfSgCgYIKoEcz1UBgi2hRANCAAQGHNN2NO7btp+w1248yk98E0asGC8sG0bmIzdom4M0xp3vc4IfXjmZ8omUz4oVcjzAuyMSSpJM6uPLcU1SH4HZ\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"publicUrl\",\"id\":\"89c7052d-8a90-4a22-bc95-a10b656d7ad6\",\"required\":true,\"example\":\"http://cz-test.nbcb.com.cn:7070/nbcb/api\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":5,\"description\":\"开放平台公钥\",\"parameterName\":\"publicKey\",\"id\":\"c96236b3-ed05-437a-ab01-829e8052dee9\",\"required\":true,\"example\":\"MFkwEwYHKoZIzj0CAQYIKoEcz1UBgi0DQgAEXAt6fxeKlpREIyXoT3jDwGU7L6JkKrzdOKP1cMB14rtNwwlyaUGLrtuHVoArAHP3x7XN2rUw0GxSngYQwOAsjQ==\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":6,\"description\":\"财资客户号\",\"parameterName\":\"custId\",\"id\":\"bddeecac-2ca0-498a-9063-3655c50b8089\",\"required\":true,\"example\":\"0000112058\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":7,\"concreteType\":\"String\",\"id\":\"b2785506-3c80-47f7-a211-8ccb9ce35a34\",\"parameterName\":\"productID\",\"required\":true,\"example\":\"tmsSettle\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":8,\"concreteType\":\"String\",\"id\":\"eb20bd5c-19e2-413b-8c4d-3ce5272bc691\",\"parameterName\":\"serviceID\",\"required\":true,\"example\":\"querySingleTransferResult\"}]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"description\":\"流水号\",\"parameterName\":\"serialNo\",\"id\":\"6b973918-89bf-43b4-b9db-436928dff463\",\"required\":true,\"example\":\"Api20230607003\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"726732fd-30ec-4aec-a572-590a3d9bca68\",\"parameterName\":\"body\",\"first\":true,\"required\":true}]', '[]', 245, '1', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', 'Y', NULL, 'ningboBankTreasuryServiceImpl', 'doChangeData', '1', 'retCode', '0000', 'retMsg');
-
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('58105ccc4b4b4fbf89312f85b09ea9f6', 'ae67183945fe48a890a5bedde34a23e8', '转账', 77, NULL, 'Y', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('e6d546212791410593f758e289733361', 'ae67183945fe48a890a5bedde34a23e8', '交易结果', 78, NULL, 'Y', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', '1');
-
-update sys_application_api set extension_api = '2' where extension_api is null;
-update sys_application_api set return_success_field = 'status' where return_success_field is null;
-update sys_application_api set return_success_value = '200' where return_success_value is null;
-update sys_application_api set return_msg = 'msg' where return_msg is null;
-
-
-commit;
-
-
diff --git a/buildpackage/src/main/resources/dbSql/dj/V3.0.12__init_app_dju8c.sql b/buildpackage/src/main/resources/dbSql/dj/V3.0.12__init_app_dju8c.sql
deleted file mode 100644
index 217fc3d2..00000000
--- a/buildpackage/src/main/resources/dbSql/dj/V3.0.12__init_app_dju8c.sql
+++ /dev/null
@@ -1,73 +0,0 @@
-INSERT INTO sys_application (id, app_logo, app_status, name, version_number, access_mode, affiliation_field, manufacturer, app_introduction, client_path, app_id, system_address, web_path, program_path, public_key, secret_key, interface_address, interface_status, app_type, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('3b52dc340cad48dab548b17d3095b981', NULL, '1', '东进U8C', '3.5', '[\"1\"]', '1', '用友', '东进U8C,标准U8C接口模板', 'http://220.189.210.58:7099', 800035, NULL, 'http://220.189.210.58:7099', NULL, 'ZJYAE7P1jdIECvgTCdxIRMMx7XQ8VNha5bFd+XbaiPhAVjJCe7eDIk+3zDUT+v578prj', 'QyAQHgx7OLpbzW5XiJ9ZBng2u/TM8F5reSJK/yQJOLtOg2bxeh7HWL9jBBZbRPHMj3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=', 'http://220.189.210.58:7099', '1', '2', '2', 4, NULL, 'Y', '2024-07-16 10:18:38', '1', '2024-07-17 09:18:45', '1');
-
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('13231c6ee6cc4d1997ab295c56c01745', 8000350030, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '71d6de477f1e4ecc86c819fc33738bb1', '凭证更新', NULL, '2', NULL, '1', '/u8cloud/api/gl/voucher/update', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"79fb8f9a-6687-4950-b81e-a00458c30fa0\",\"parameterName\":\"body\",\"first\":true}]', '[]', 196, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, '2', NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('14bd520d34074f7baf5d1afbe820779f', 8000350018, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'c78369f5e69d4338bc1c27c2122827f2', '客商管理档案-新增', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/custmandoc/insert', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"地址\",\"parameterName\":\"addrname\",\"id\":\"22c354c1-c846-47e8-b828-0051dde3fcf3\",\"example\":\"测试地址\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"客商分类01 内部 02外部 03 其他\",\"parameterName\":\"pk_areacl\",\"id\":\"6c8c3bbe-aa32-4bbb-a52a-b60a1e1d4373\",\"example\":\"02\"}],\"concreteType\":\"ObjectCom\",\"index\":2,\"parameterName\":\"addrs\",\"id\":\"fb2a944c-cc2a-4843-9c6d-71fafa19e834\"},{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"description\":\"传递数据的时候必须传递两条明细由于客商管理档案在数据库表中存的两条,所以childrenvo如果传的\",\"parameterName\":\"custflag\",\"id\":\"cec52591-3363-431f-8113-4579fed62367\",\"example\":\"0\"}],\"concreteType\":\"ObjectCom\",\"index\":5,\"parameterName\":\"childrenvo\",\"id\":\"d57cb8a3-a98f-4e43-8e35-0a05c39d4822\"},{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"description\":\"是否默认银行\",\"parameterName\":\"defflag\",\"id\":\"2bb5b731-4149-4202-9515-8b4a9a8a0ace\",\"example\":\"Y\"}],\"concreteType\":\"Object\",\"index\":8,\"parameterName\":\"banks\",\"id\":\"f6b7dbfb-ef29-4708-8016-72270f707e85\"},{\"parameterType\":\"complex\",\"children\":[],\"concreteType\":\"Object\",\"index\":10,\"parameterName\":\"baseBank\",\"id\":\"6ab39de2-b926-4523-86cf-131d2d6fb509\"}],\"concreteType\":\"ObjectCom\",\"index\":7,\"parameterName\":\"custBanks\",\"id\":\"aee27ab1-7847-44b0-9878-f28df08cf792\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"description\":\"创建人编码\",\"parameterName\":\"creator\",\"id\":\"7a1f1c78-42a2-4119-88ef-2a640386665e\",\"example\":\"17633965916\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"description\":\"客商编码\",\"parameterName\":\"custcode\",\"id\":\"422bd076-0e43-4268-8e24-9e967dc55555\",\"example\":\"202499101111\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":14,\"description\":\"客商名称\",\"parameterName\":\"custname\",\"id\":\"87cfa6d0-5e25-4c02-87ce-1153b03c4961\",\"example\":\"测试管理档案客商111\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":15,\"description\":\"客商类型*必填\",\"parameterName\":\"custprop\",\"id\":\"cd9099f3-f658-4d69-9c06-4f6949b64c95\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":16,\"description\":\"客商分类01 内部 02外部 03 其他\",\"parameterName\":\"pk_areacl\",\"id\":\"b38026a3-a8d1-4b5d-82c0-923415892bb7\",\"example\":\"02\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":17,\"description\":\"公司编码\",\"parameterName\":\"pk_corp\",\"id\":\"bb2a2635-f0eb-474e-b048-f51db1998277\",\"example\":\"01\"}],\"concreteType\":\"Object\",\"index\":11,\"parameterName\":\"parentvo\",\"id\":\"edcb3b5e-6203-49f3-968a-3dcb32e0b15a\"}],\"concreteType\":\"Object\",\"index\":1,\"parameterName\":\"billvo\",\"id\":\"187156c7-602c-4d44-8e0a-c327f2a08020\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"8a188bb6-d3d9-457d-b046-b9a6d3a81dae\",\"parameterName\":\"body\",\"first\":true}]', '[]', 159, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('19a23d67dea246fba9afcea3af159f91', 8000350012, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '5e4f5bc4d6a8438ba13efc05a39bfc5c', '其他入库保存', NULL, '2', NULL, '1', '/u8cloud/api/ic/otherin/insert', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"f4f093a5-8a32-4752-a89c-c251b7344c72\",\"parameterName\":\"body\",\"first\":true}]', '[]', 95, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('2149760e12094430a8c61ba732c792cd', 8000350025, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '64b66d7dac3c4bc89c056c472208954d', '存货分类新增', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdinvcl/save', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"分类编码\",\"parameterName\":\"invclasscode\",\"id\":\"b6fb5c3f-6189-469f-b49c-98f3d7041ad0\",\"example\":\"04\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"分类名称\",\"parameterName\":\"invclassname\",\"id\":\"04eb2fbf-2d4e-4f1c-86c8-51e2b1feb4dc\",\"example\":\"成品测试\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"公司编码默认0001\",\"parameterName\":\"pk_corp\",\"id\":\"07ff5ae0-7273-48c6-b105-d553f7451fe8\",\"example\":\"0001\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"invcl\",\"id\":\"d83589e8-03b0-453f-a045-2fc7d48cdc3e\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"d94ccb4d-7bf6-4408-8972-470b2fb1a765\",\"parameterName\":\"body\",\"first\":true}]', '[]', 166, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('21b1cc3c74774dc8923ac174a12a68b2', 8000350010, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '81a2cc28c3a64ee1abbf9e64f96b4f30', '速网U8C_销售出库单保存即审批', '速网U8C_销售出库单保存即审批', '2', NULL, '1', '/u8cloud/api/ic/saleout/save/sign', '1', '1', '10000', '100', '[]', '[]', '1', '[]', '[]', 68, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('2219d67ca4f74ba9a447ad226f88790b', 8000350015, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '05b318825e1049af8f3a5703fe46351e', '部门档案-新增', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bddept/save', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"创建日期\",\"parameterName\":\"createDate\",\"id\":\"ceff0dc6-a601-4882-a117-ef05f816f1cc\",\"example\":\"2024-04-24\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"部门属性\",\"parameterName\":\"deptattr\",\"id\":\"d3301c56-8561-4496-8130-45babc6b04f0\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"部门编码\",\"parameterName\":\"deptcode\",\"id\":\"e2adbecc-ff19-448c-85ad-bc19865f35bb\",\"example\":\"99\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"description\":\"部门名称\",\"parameterName\":\"deptname\",\"id\":\"eca1e77f-9e9c-42b8-b9b4-759cab37cbf0\",\"example\":\"DEV测试一级部门\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"description\":\"部门类型\",\"parameterName\":\"depttype\",\"id\":\"0e536d7b-3348-4f4c-abad-d4fcffa79abd\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"description\":\"是否用于零售\",\"parameterName\":\"isuseretail\",\"id\":\"caf5e96f-cb18-4a7e-a886-53b735c7c995\",\"example\":\"false\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"description\":\"组织编码\",\"parameterName\":\"pk_corp\",\"id\":\"4565e1b7-a928-4ceb-969f-ad84d4ea224d\",\"example\":\"01\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"deptdoc\",\"id\":\"782aa1a0-042a-483f-9de8-03ec9795fef2\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"66ed2c6f-34a7-4816-94f0-5a77c2aa1830\",\"parameterName\":\"body\",\"first\":true}]', '[]', 156, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('22dae86e581f4f2e9b9d857961c4d1ea', 8000350004, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '56ccfdd16c59466986caa7f778d8908c', '采购订单审批即保存', '采购订单审批即保存', '2', NULL, '1', '/u8cloud/api/pu/order/saveapprove', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"cmangid\",\"id\":\"0d2afede-89fe-4155-b602-5da16db63541\",\"example\":\"0001F81000000000HNQW\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"nordernum\",\"id\":\"54d2a491-1f36-46c4-b0d7-3dffb3115371\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"norgtaxprice\",\"id\":\"4dfaa531-c862-4c5b-84f9-e05fa1ff5f51\",\"example\":\"10\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"childrenvo\",\"id\":\"071d3eb1-c1ac-49cb-b3be-72f67a8cd46a\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"cbiztype\",\"id\":\"6757e86a-4215-459e-be0a-99195e065d6d\",\"example\":\"0001F81000000000HJDM\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"cdeptid\",\"id\":\"970ccf18-7d3b-46d4-8f25-46d36ba38b22\",\"example\":\"1007F81000000000I0Y1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"parameterName\":\"coperator\",\"id\":\"f4fb3339-50f0-4e8b-b2c3-2529489a2415\",\"example\":\"0001F81000000000HGZ1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"parameterName\":\"cpurorganization\",\"id\":\"b55c46a9-322b-4765-87c2-9b4f5f0c9c21\",\"example\":\"0001F81000000000HJEN\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"parameterName\":\"cvendormangid\",\"id\":\"235678bc-443e-49bb-bd45-e9b83f960e90\",\"example\":\"0001F810000000000VZB\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"parameterName\":\"pk_corp\",\"id\":\"f447a97f-c054-4abe-acab-c4e9f31527fe\",\"example\":\"1007\"}],\"concreteType\":\"Object\",\"index\":5,\"parameterName\":\"parentvo\",\"id\":\"5159d2ad-c2b0-49d9-a2ea-b07b4bcae512\"}],\"concreteType\":\"Object\",\"index\":0,\"parameterName\":\"puordervo\",\"id\":\"0cdb262d-21c0-4831-846b-d2df4c0f48af\"}]', '[]', 6, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('290199b02cd843429da1e0af5e151485', 8000350002, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '601f31d4350f45a0b12682050f15abb2', '存货档案新增', '存货档案新增', '2', NULL, '1', '/u8cloud/api/uapbd/invbasdoc/insert', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"assistunit\",\"id\":\"02687afb-b84c-47a6-b4cd-5cabc242730d\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"invcode\",\"id\":\"5ec2b4b8-f51b-4960-8d55-e282255891b4\",\"example\":\"ceshi0005\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"invname\",\"id\":\"7c7787c7-a32b-43c5-bc3c-c69094a91d64\",\"example\":\"测试0005\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"parameterName\":\"pk_invcl\",\"id\":\"906bc4d5-eed5-43c0-ab8a-5e8175604aca\",\"example\":\"0001F81000000000HJ8C\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"pk_measdoc\",\"id\":\"816a4d37-9911-4e33-a2bf-71d6a2bdd383\",\"example\":\"0001F81000000000HJ8M\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"pk_taxitems\",\"id\":\"fe95d3a5-3771-4180-abf8-c2aca7884417\",\"example\":\"40040000000000000082\"}],\"concreteType\":\"Object\",\"index\":1,\"parameterName\":\"parentvo\",\"id\":\"8ee94f28-8353-4898-9def-26c47741ed9a\"}],\"concreteType\":\"ObjectCom\",\"index\":0,\"parameterName\":\"invbasdoc\",\"id\":\"70de5cb4-4ba7-4089-9faf-7ec7dedcc74e\"}]', '[]', 4, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('3d0a0296f7ee42b2a5cd33be6dc9d799', 8000350032, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '71d6de477f1e4ecc86c819fc33738bb1', '凭证删除', NULL, '2', NULL, '1', '/u8cloud/api/gl/voucher/delete', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"description\":\"当前页\",\"parameterName\":\"page_now\",\"id\":\"926c33d5-2066-40be-9465-0b74d058cf2f\",\"required\":true,\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"每页条数\",\"parameterName\":\"page_size\",\"id\":\"c074af79-5757-41b8-b460-f84162a89e4b\",\"required\":true,\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"凭证主键\",\"parameterName\":\"pk_voucher\",\"id\":\"03c8e16a-6ed8-4c97-aafc-1c64f99e8e72\",\"required\":true,\"example\":\"0001F11000000000IKP4\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"账簿编码\",\"parameterName\":\"pk_glorgbook\",\"id\":\"2227a7d6-0836-44d7-83a8-d85d096d51ee\",\"required\":true,\"example\":\"01-01\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"f1c8c283-b0a8-43c2-b4a3-5be69064a4de\",\"parameterName\":\"body\",\"first\":true}]', '[]', 198, '1', '2024-07-16 10:18:40', '1', '2024-07-16 10:18:40', 'Y', NULL, NULL, NULL, '2', NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('431049276d8d4f2893f67cc40384aeae', 8000350007, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '5e4f5bc4d6a8438ba13efc05a39bfc5c', '库存其他入库保存即签字', '库存其他入库保存即签字', '2', NULL, '1', '/u8cloud/api/ic/otherin/save/sign', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"bonroadflag\",\"id\":\"e0c040b0-d296-453e-a805-2943e5c528c3\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"cinventoryid\",\"id\":\"4c41e861-2b42-4593-a25e-52b2b2126b1d\",\"example\":\"0001F81000000000HJFH\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"dbizdate\",\"id\":\"10ce2b3a-c852-4268-80a5-9bf0ba20f482\",\"example\":\"2023-10-07\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"parameterName\":\"flargess\",\"id\":\"3930668c-83f1-4884-b552-5bef620666ae\",\"example\":\"N\"},{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"cspaceid\",\"id\":\"e7c1a416-e594-489d-8c70-42513538aa81\",\"example\":\"1007F81000000000I19T\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"parameterName\":\"ninspacenum\",\"id\":\"4afc603f-74f0-4ae6-8976-ada46eb58ec6\",\"example\":\"1\"}],\"concreteType\":\"ObjectCom\",\"index\":6,\"parameterName\":\"locator\",\"id\":\"374782c3-9bcd-4b6f-914b-51dcf200eb91\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"parameterName\":\"ninnum\",\"id\":\"c3908a11-5ada-4cb8-8d78-e50d8bdabe65\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"parameterName\":\"nshouldinnum\",\"id\":\"7ba1344a-cdab-44e9-a5fd-db0fb10afe27\",\"example\":\"1\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"childrenvo\",\"id\":\"2287630e-0451-45ee-a3ed-aac78962e559\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"parameterName\":\"cbizid\",\"id\":\"7ac5735d-93d4-449e-b6af-67ef28d9e53f\",\"example\":\"1007F81000000000I0YI\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"parameterName\":\"cbiztype\",\"id\":\"7c6977c7-4d22-49ab-9f91-a1ff4d06a7be\",\"example\":\"0001F81000000000HJDM\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":14,\"parameterName\":\"ccustomerid\",\"id\":\"46d26060-fda8-4cf7-a158-b8397c6386af\",\"example\":\"0001F81000000000HJRD\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":15,\"parameterName\":\"coperatorid\",\"id\":\"c0ffd48b-904d-430f-855c-ad4999cfc55c\",\"example\":\"0001F81000000000HGZ1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":16,\"parameterName\":\"cotherwhid\",\"id\":\"af6062cf-5b47-4119-8aa9-6c9b101adb9f\",\"example\":\"1007F81000000000I0Z7\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":17,\"parameterName\":\"cwarehouseid\",\"id\":\"2266b097-10bd-4496-9f32-07de6bace9d5\",\"example\":\"1007F81000000000I0Z7\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":18,\"parameterName\":\"dauditdate\",\"id\":\"2e6f5186-eb01-422b-bb27-0c85ec3db85e\",\"example\":\"2023-10-07\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":19,\"parameterName\":\"dbilldate\",\"id\":\"37ea0f0f-c6fb-479a-bfde-e76c09ef42c0\",\"example\":\"2023-10-07\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":20,\"parameterName\":\"pk_calbody\",\"id\":\"b5d2935d-4d0f-4804-ba61-2c2c3fc508be\",\"example\":\"1007F81000000000I0YF\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":21,\"parameterName\":\"pk_corp\",\"id\":\"6b25e6b3-9eb7-4a98-9162-6104fa93631f\",\"example\":\"1007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":22,\"parameterName\":\"vbillcode\",\"id\":\"b831d431-601e-4401-ae4b-7ef817433b55\",\"example\":\"ceshi005\"}],\"concreteType\":\"Object\",\"index\":11,\"parameterName\":\"parentvo\",\"id\":\"c92895a0-45cb-425d-a721-ba8d2f11b22f\"}],\"concreteType\":\"ObjectCom\",\"index\":0,\"parameterName\":\"GeneralBillVO_4A\",\"id\":\"ff3a17a3-8f6e-45bf-ae17-abe494009a6f\"}]', '[]', 9, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('44c64be3af0848a588f5dd9a8777bfab', 8000350031, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '71d6de477f1e4ecc86c819fc33738bb1', '凭证作废', NULL, '2', NULL, '1', '/u8cloud/api/gl/voucher/abandon', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"操作人编码\",\"parameterName\":\"abandoner_code\",\"id\":\"8d210c2b-6896-42f2-b1ce-d5e9af639599\",\"example\":\"17633965916\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"凭证主键\",\"parameterName\":\"pk_voucher\",\"id\":\"f6c76396-d5bb-498b-aa29-99c2e67c233e\",\"example\":\"0001F11000000000IKP4\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"bills\",\"id\":\"78fab8a6-3add-4b88-932d-c9bf45d8d876\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"4c9cca6e-4503-4e07-a3b8-9c6d0e2d3391\",\"parameterName\":\"body\",\"first\":true}]', '[]', 197, '1', '2024-07-16 10:18:40', '1', '2024-07-16 10:18:40', 'Y', NULL, NULL, NULL, '2', NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('4912e52ffa1046f7b3f2d2e3df1b6b78', 8000350028, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'f3acb3c21037486b9aaaced07b24e2d2', '人员档案新增', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdpsn/save', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamentallist\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"childrenvo\",\"id\":\"eb56b3bb-e1c7-46bc-a9dd-be12dafa5d37\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"公司编码\",\"parameterName\":\"currentcorp\",\"id\":\"8ca3aeb2-7355-4bed-bad2-67e1ce876c71\",\"example\":\"01\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"description\":\"人员名称\",\"parameterName\":\"psnname\",\"id\":\"0677074c-19ce-49cd-9c2f-967930803e4c\",\"example\":\"测试人员12\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"description\":\"人员主键(填写为更新反之为新增)\",\"parameterName\":\"pk_psnbasdoc\",\"id\":\"e104c2bf-ff2b-42ff-90d3-84f91fbb8e04\",\"example\":\"1001F1100000000067B1\"}],\"concreteType\":\"Object\",\"index\":5,\"parameterName\":\"psnbasvo\",\"id\":\"9a5fd953-76bd-4e6c-837a-729bf96170b8\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"description\":\"部门编码\",\"parameterName\":\"pk_deptdoc\",\"id\":\"46cb327c-73ce-4dd2-86d0-ee2f11d142df\",\"example\":\"999\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"description\":\"员工类型01在职02离职\",\"parameterName\":\"pk_psncl\",\"id\":\"1fbd9360-0e27-4d01-b3d0-6cca2e16710e\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"description\":\"人员编码\",\"parameterName\":\"psncode\",\"id\":\"121a8b54-52e2-4ca5-8417-384ae4c32f7f\",\"example\":\"999\"}],\"concreteType\":\"Object\",\"index\":8,\"parameterName\":\"psnmanvo\",\"id\":\"9d366549-e631-4770-9d9e-aa3549b1f82b\"}],\"concreteType\":\"Object\",\"index\":3,\"parameterName\":\"parentvo\",\"id\":\"ee25c3fa-9e75-4e86-a893-87250719ec9c\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"psn\",\"id\":\"1f724e00-c699-434b-9c12-bd9d2289e228\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"9b0ae8d1-ec1f-4e20-84b3-fee4742bf9ed\",\"parameterName\":\"body\",\"first\":true}]', '[]', 170, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('5038f1d7216a477c8b5ec3d4392a3b9e', 8000350001, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'c78369f5e69d4338bc1c27c2122827f2', '客商分配', '速网客商分配', '2', NULL, '1', '/u8cloud/api/uapbd/custdoc/assign', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"parameterName\":\"pk_corp\",\"id\":\"33bc86ee-652c-4822-b6a8-dbd329a20779\",\"example\":\"1004\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"custprop\",\"id\":\"b5d55712-b378-4dbd-b2ae-04bcb3d0fb2b\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"pk_cubasdoc\",\"id\":\"0c4a5614-effb-4d88-83e2-e9cd0f33ea3a\",\"example\":\"0001F810000000000FE0\"}],\"concreteType\":\"ObjectCom\",\"index\":0,\"parameterName\":\"custbasvo\",\"id\":\"df932132-3a93-463c-aaa7-7393b0abfa80\"}]', '[]', 3, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('5798ffdc8527473999e50c794244e9d0', 8000350019, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'c78369f5e69d4338bc1c27c2122827f2', '客商管理档案-修改', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/custmandoc/update', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamentallist\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"addrs\",\"id\":\"32fce380-1604-4e65-aead-0f717bc59866\"},{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"客商属性传递数据的时候必须传递两条明细由于客商管理档案在数据库表中存的两条,所以childrenvo\",\"parameterName\":\"custflag\",\"id\":\"6723dfb7-c001-40e7-af70-19f07329a9b7\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"description\":\"客商管理档案主键\",\"parameterName\":\"pk_cumandoc\",\"id\":\"83b70517-8d18-4b41-bb93-304f1048cc46\",\"example\":\"0001F11000000000I6I9\"}],\"concreteType\":\"ObjectCom\",\"index\":3,\"parameterName\":\"childrenvo\",\"id\":\"39e8d457-8a5d-4309-9fab-495d9e289344\"},{\"parameterType\":\"fundamentallist\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"custBanks\",\"id\":\"2adafd63-ded1-4217-ae76-fe64dd59589c\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"description\":\"创建人编码\",\"parameterName\":\"creator\",\"id\":\"3ac5b03b-e9a5-4155-8763-372c9aea2336\",\"example\":\"17633965916\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"description\":\"客商编码\",\"parameterName\":\"custcode\",\"id\":\"717f55c1-20d3-4d6f-93cb-a8c82511c342\",\"example\":\"202499101111\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"description\":\"客商名称\",\"parameterName\":\"custname\",\"id\":\"84497538-64e6-4733-810e-b8e3f8fd4345\",\"example\":\"测试管理档案客商1112\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"description\":\"客商类型\",\"parameterName\":\"custprop\",\"id\":\"c6ba1a38-402b-4a2b-9d50-483ac6e404f0\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"description\":\"地区分类编码\",\"parameterName\":\"pk_areacl\",\"id\":\"42e2a12a-c73e-455b-a826-a64d57967c6c\",\"example\":\"02\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"description\":\"公司编码\",\"parameterName\":\"pk_corp\",\"id\":\"e73b7786-747f-41d9-8494-3ea39dbca683\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":14,\"description\":\"基本档案主键\",\"parameterName\":\"pk_cubasdoc\",\"id\":\"6dc986e4-ff76-469e-af9b-d1b7a6065789\",\"example\":\"0001F11000000000I6I5\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":15,\"description\":\"管理档案主键\",\"parameterName\":\"pk_cumandoc\",\"id\":\"6b5ac0b6-484c-4d58-894b-23c6d0d93755\",\"example\":\"0001F11000000000I6I9\"}],\"concreteType\":\"Object\",\"index\":7,\"parameterName\":\"parentvo\",\"id\":\"6af9dddc-8e8d-4213-a2cb-13c3fa3fa756\"}],\"concreteType\":\"Object\",\"index\":1,\"parameterName\":\"billvo\",\"id\":\"53ec85a9-12bd-4537-9ddb-c663e9191914\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"9fa29026-7a11-4dad-8c85-6c3a75ca28ef\",\"parameterName\":\"body\",\"first\":true}]', '[]', 160, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('76c28dee27e54372854b6da07c0b3f08', 8000350000, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'c78369f5e69d4338bc1c27c2122827f2', '速网U8C_客商档案新增', '速网U8C_客商档案新增', '2', NULL, '1', '/u8cloud/api/uapbd/custdoc/insert', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"accname\",\"id\":\"69014133-b81e-4a9d-82fc-7c29821e77f9\",\"example\":\"666601\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"account\",\"id\":\"51980e53-c1dd-448a-bf36-d24fd817b1a5\",\"example\":\"test001\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"accountname\",\"id\":\"97111e2d-8df9-4465-a241-e1969b032287\",\"example\":\"zy测试银行账户\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"parameterName\":\"banktypename\",\"id\":\"176cd4c8-5228-4dd6-bee7-2101f09a16d3\",\"example\":\"6666\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"defflag\",\"id\":\"8d833cbf-a396-41af-ba52-cb58b3aa5a74\",\"example\":\"Y\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"pk_currtype\",\"id\":\"d80241ec-c9fb-480c-9e0a-bd1589595a20\",\"example\":\"CNY\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"parameterName\":\"status\",\"id\":\"2c7d4b42-b26e-4aa9-a294-3b330e08cf70\",\"example\":\"2\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"parameterName\":\"unitname\",\"id\":\"9e6a593f-e35f-456e-879a-41d3d63bb94b\",\"example\":\"测试001\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"banks\",\"id\":\"3815c339-d96b-40d6-a96c-81b8cf68be28\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"parameterName\":\"conaddr\",\"id\":\"b5990933-94e0-4015-9f53-2ce6fa9bc3da\",\"example\":\"测试33145411113\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"parameterName\":\"creator\",\"id\":\"f0cce0b5-b5fa-4ea7-8f15-f1ac075eb7f1\",\"example\":\"0001F8100000000000PL\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"parameterName\":\"custcode\",\"id\":\"853453c3-dad1-4155-998b-9d1c4b8e2acd\",\"example\":\"ceshi007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":14,\"parameterName\":\"custname\",\"id\":\"2b06423d-827a-465d-b829-42471733fa51\",\"example\":\"测试007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":15,\"parameterName\":\"custprop\",\"id\":\"c4277bcb-7d80-4c12-8508-935086e2c7df\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":16,\"parameterName\":\"custshortname\",\"id\":\"6c02f4ec-618c-4973-babe-a0c81c179743\",\"example\":\"测试007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":17,\"parameterName\":\"freecustflag\",\"id\":\"48c1d795-4396-4189-8f22-9228b2424fce\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":18,\"parameterName\":\"isconnflag\",\"id\":\"92be035c-eb7c-46be-a2c3-5e48ce18cf4f\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":19,\"parameterName\":\"pk_areacl\",\"id\":\"8bc3d731-ab42-46d5-afc3-3227de0df96b\",\"example\":\"01\"}],\"concreteType\":\"Object\",\"index\":10,\"parameterName\":\"parentvo\",\"id\":\"627af933-4b7f-433b-beb5-f2a49b50cfaa\"}],\"concreteType\":\"ObjectCom\",\"index\":0,\"parameterName\":\"cbdocvo\",\"id\":\"33aac70c-d95a-475d-8f98-28925223f305\"}]', '[]', 2, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('76d717b85ff04ad5ad069c27cc82c476', 8000350026, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '64b66d7dac3c4bc89c056c472208954d', '存货分类修改', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdinvcl/update', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"分类编码\",\"parameterName\":\"invclasscode\",\"id\":\"3b2af319-87c8-400a-b38a-d54f9b207f26\",\"example\":\"04\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"分类名称\",\"parameterName\":\"invclassname\",\"id\":\"7c5bd695-ed84-4a92-a1c7-31c862e98d21\",\"example\":\"成品测试1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"公司编码默认0001\",\"parameterName\":\"pk_corp\",\"id\":\"482d659b-b374-4fb5-b31b-32bca4a6d8be\",\"example\":\"0001\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"description\":\"分类主键\",\"parameterName\":\"pk_invcl\",\"id\":\"3fa6caac-e0cd-4ec7-8df4-7c990504ee25\",\"example\":\"0001F11000000000I6NN\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"invcl\",\"id\":\"0638670a-e65d-46e1-aabd-adc7a956c4cb\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"81cdd912-9bf3-4cb4-b74f-2a8ee27de93a\",\"parameterName\":\"body\",\"first\":true}]', '[]', 167, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('7d31e3a226944de088ac431f0e01dce5', 8000350029, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'f3acb3c21037486b9aaaced07b24e2d2', '人员档案删除', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdpsn/delete', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"description\":\"公司编码\",\"parameterName\":\"corpcode\",\"id\":\"9fbd0909-2fa8-4de9-b5e6-8472dcc8e343\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"人员编码\",\"parameterName\":\"psncode\",\"id\":\"0b769e22-96a4-41da-b557-73cd1ec60b11\",\"example\":\"999\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"e46d3508-a724-4fa6-8776-d9f13e48deb7\",\"parameterName\":\"body\",\"first\":true}]', '[]', 171, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('7ff61b82173e4d1fa2d71500c187029b', 8000350014, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '71d6de477f1e4ecc86c819fc33738bb1', '凭证新增', NULL, '2', NULL, '1', '/u8cloud/api/gl/voucher/insert', '1', '1', '30000', '100', '[{\"parameterType\":\"fundamental\",\"length\":\"30\",\"index\":0,\"concreteType\":\"String\",\"id\":\"1ad4c45d-22b6-4ddb-942b-19140e774372\",\"parameterName\":\"usercode\",\"example\":\"aoxing\"},{\"parameterType\":\"fundamental\",\"length\":\"30\",\"index\":1,\"concreteType\":\"String\",\"id\":\"4dd1d9b7-cc0d-4df2-ba1d-c3a215b0302a\",\"parameterName\":\"password\",\"example\":\"83f1ad3e7fa3617f1aae62ae7413c810\"},{\"parameterType\":\"fundamental\",\"length\":\"30\",\"index\":2,\"concreteType\":\"String\",\"id\":\"bc8df059-e505-47ec-b36e-235ba9dc4f29\",\"parameterName\":\"trantype\",\"example\":\"code\"},{\"parameterType\":\"fundamental\",\"length\":\"30\",\"index\":3,\"concreteType\":\"String\",\"id\":\"20d53708-43ac-43be-961a-567b24cdf890\",\"parameterName\":\"system\",\"example\":\"01\"}]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamentallist\",\"concreteType\":\"String\",\"index\":3,\"description\":\"辅助核算列表\",\"parameterName\":\"ass\",\"id\":\"e8e4e3f1-e2b8-4dbc-b85c-f4819b3f05b8\"},{\"parameterType\":\"fundamentallist\",\"concreteType\":\"String\",\"index\":4,\"description\":\"现金流量\",\"parameterName\":\"cashflow\",\"id\":\"d14c267e-66ea-45c8-9554-822170858c90\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"description\":\"原币贷方金额(必填,没有就传0就行了)*必填\",\"parameterName\":\"creditamount\",\"id\":\"659bdf16-a7a4-44a5-a0f5-d57f78ef206b\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"description\":\"原币借方金额(必填,没有就传0就行了)*必填\",\"parameterName\":\"debitamount\",\"id\":\"e55685c6-a0f8-488d-bd68-3442813c7806\",\"example\":\"100\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"description\":\"摘要\",\"parameterName\":\"explanation\",\"id\":\"2fb7d04d-6154-4bc1-aa59-80ef7c14d2ad\",\"example\":\"测试借方金额\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"description\":\"本币贷方金额(必填,没有就传0就行了)*必填\",\"parameterName\":\"localcreditamount\",\"id\":\"b490d96a-b658-47ea-9b5f-ac6dc6e90f58\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"description\":\"本币借方金额(必填,没有就传0就行了)*必填\",\"parameterName\":\"localdebitamount\",\"id\":\"f7d1a53c-3d7c-4123-adae-dc91891429ec\",\"example\":\"100\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"description\":\"客户编码\",\"parameterName\":\"pk_accsubj\",\"id\":\"ae4e4676-312d-4d48-8683-79574c108279\",\"example\":\"1132\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"description\":\"币种\",\"parameterName\":\"pk_currtype\",\"id\":\"6c437906-d9ce-41d5-9a5c-c84db83f3999\",\"example\":\"CNY\"}],\"concreteType\":\"ObjectCom\",\"index\":2,\"description\":\"明细\",\"parameterName\":\"details\",\"id\":\"693ff58d-86f3-4117-a7d5-551db1c3ed1e\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"description\":\"凭证号\",\"parameterName\":\"no\",\"id\":\"00141b68-d19e-422c-9093-6d20a80d486b\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"description\":\"所属公司编码\",\"parameterName\":\"pk_corp\",\"id\":\"a6619f3a-1894-41ef-8cb6-7f8c72b2db2b\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":14,\"description\":\"账簿编码\",\"parameterName\":\"pk_glorgbook\",\"id\":\"16a7c55c-87dc-4bd3-b7d1-929d5fc437b6\",\"example\":\"01-01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":15,\"description\":\"用户编码\",\"parameterName\":\"pk_prepared\",\"id\":\"12f2ee11-78a3-4526-ad4c-1fde81b6e98c\",\"example\":\"17633965916\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":16,\"description\":\"凭证类型编码\",\"parameterName\":\"pk_vouchertype\",\"id\":\"cb81b4e1-fa2c-44a7-87b1-9bff8ea39b00\",\"example\":\"记账\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"description\":\"凭证主体\",\"parameterName\":\"voucher\",\"id\":\"f9238f40-ccc6-4b63-8e6c-57432e54ac32\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"9cf9d3b2-3e8f-4aa9-bf43-b57166023b7f\",\"parameterName\":\"body\",\"first\":true}]', '[]', 155, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('8858a96701414b7687178969fa4b2f8f', 8000350006, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '81a2cc28c3a64ee1abbf9e64f96b4f30', '速网U8C_销售订单保存即审批', '速网U8C_销售订单保存即审批', '2', NULL, '1', '/u8cloud/api/so/saleorder/saveapprove', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"blargessflag\",\"id\":\"6f0c57fd-b5a0-4c24-9651-04390cac7316\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"cadvisecalbodyid\",\"id\":\"4d46f085-ecf4-426c-8216-458d5be02e04\",\"example\":\"1007F81000000000I0YF\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"cinventoryid\",\"id\":\"8ac81482-e8cc-47ad-ad11-8969da8b9ab6\",\"example\":\"0001F81000000000HJR7\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"parameterName\":\"nnumber\",\"id\":\"815afec0-1a3e-41dd-84d5-65bcf871db6e\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"noriginalcurprice\",\"id\":\"6594589c-3913-43fb-a36e-8ba553f15f24\",\"example\":\"8.85\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"vostatus\",\"id\":\"33e3de7c-ae23-4efa-aca8-a69b3e2e603b\",\"example\":\"new\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"childrenvo\",\"id\":\"7490ddcf-5b49-4dea-aaca-def95b5139b7\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"parameterName\":\"bretinvflag\",\"id\":\"9e5f88fd-a2b2-434b-b5bd-3e63b6edb01e\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"parameterName\":\"cbiztype\",\"id\":\"b257ff66-6a06-4a01-8e14-fddee6423431\",\"example\":\"1001F810000000000003\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"parameterName\":\"ccalbodyid\",\"id\":\"688f54ca-6bbb-4482-bf73-14527f209e50\",\"example\":\"1001F81000000000290R\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"parameterName\":\"ccustomerid\",\"id\":\"9761c3a0-04e8-48cd-a0b3-078aa4fda30d\",\"example\":\"0001F81000000000HJRD\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"parameterName\":\"cdeptid\",\"id\":\"59b88197-0625-4ae1-a31e-989ac31c8641\",\"example\":\"1007F81000000000I2BN\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":14,\"parameterName\":\"coperatorid\",\"id\":\"02b2ea8f-00ba-433f-a954-8c4495ad3424\",\"example\":\"0001F81000000000HGZ1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":15,\"parameterName\":\"csalecorpid\",\"id\":\"75359be1-eb41-40da-acb7-a5ff82e70a55\",\"example\":\"0001F81000000000HKST\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":16,\"parameterName\":\"pk_corp\",\"id\":\"b1df1e06-eeca-4487-8620-eb5fd1c6abe8\",\"example\":\"1007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":17,\"parameterName\":\"vreceiptcode\",\"id\":\"0f9c2a41-eaf3-4c74-93a8-df5873aaf3aa\",\"example\":\"ceshi003\"}],\"concreteType\":\"Object\",\"index\":8,\"parameterName\":\"parentvo\",\"id\":\"831c8eee-d8bc-4399-82f2-77143226cf1d\"}],\"concreteType\":\"Object\",\"index\":0,\"parameterName\":\"saleorder\",\"id\":\"a37043a9-85f8-452a-a421-a426d47c927f\"}]', '[]', 8, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('89e1d03e106b4cd9b4e27fabb8701d37', 8000350024, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'ef3465ed2f0c4bef950d54972ce11768', '项目基本档案-分配', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdjobbasfil/assign', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"所属公司主键\",\"parameterName\":\"pk_corp\",\"id\":\"bbb2dca9-9694-4597-9188-5afcc97f643b\",\"example\":\"所属公司主键\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"项目基本档案主键\",\"parameterName\":\"pk_jobbasfil\",\"id\":\"1a56a6f0-a889-45b6-8e60-9eb1e8e572ca\",\"example\":\"项目基本档案主键\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"jobbasfilvo\",\"id\":\"d4598b40-d09c-4238-9fb8-f9f38808bef7\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"4d4fab3e-65ce-4d39-a725-4a670fb01ced\",\"parameterName\":\"body\",\"first\":true}]', '[]', 165, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('a3b1a868047544d293a327cb14f914e9', 8000350023, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'ef3465ed2f0c4bef950d54972ce11768', '项目管理档案-删除', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdjobbasfil/delete', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"description\":\"项目编码\",\"parameterName\":\"id\",\"id\":\"543adea8-5bfa-4dee-ae36-43f311346f1d\",\"example\":\"20249002\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"4c76b510-3512-4bf2-a082-c13bf9e16f79\",\"parameterName\":\"body\",\"first\":true}]', '[]', 164, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('a9213967143e4755aa701d0c77dc80f2', 8000350017, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '05b318825e1049af8f3a5703fe46351e', '部门档案-删除', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bddept/delete', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"description\":\"部门编码\",\"parameterName\":\"code\",\"id\":\"e13e0b00-c177-4480-91ae-287eaf28f729\",\"example\":\"99\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"部门主键\",\"parameterName\":\"id\",\"id\":\"16f64405-3771-4bd7-80cc-c154442fe8e4\",\"example\":\"1001F11000000000676O\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"公司编码\",\"parameterName\":\"unitcode\",\"id\":\"62bc6f7d-99a4-4ce9-85b5-1238d5705cbf\",\"example\":\"01\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"cfefc53a-367b-448d-88bb-618d5db4e43c\",\"parameterName\":\"body\",\"first\":true}]', '[]', 158, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('b00d2570d8814a09ab4fbbae75b748a8', 8000350022, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'ef3465ed2f0c4bef950d54972ce11768', '项目基本档案-修改', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdjobbasfil/update', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"是否完工\",\"parameterName\":\"finishedflag\",\"id\":\"2502ab3a-94af-4b93-b7a7-2d4d782f7cfc\",\"example\":\"false\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"预计完工日期\",\"parameterName\":\"forecastenddate\",\"id\":\"ac71ec27-c9a0-46b9-a7a1-636361aaac78\",\"example\":\"2024-09-22\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"项目编码\",\"parameterName\":\"jobcode\",\"id\":\"143102b8-27a4-4ab8-9eaf-a4cf8a543031\",\"example\":\"20249001\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"description\":\"项目名称\",\"parameterName\":\"jobname\",\"id\":\"fbb69482-02e0-4dac-ada2-f0d11ab4a63d\",\"example\":\"测试项目1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"description\":\"所属公司 默认0001\",\"parameterName\":\"pk_corp\",\"id\":\"16366b81-2276-4063-a396-100028a0adcf\",\"example\":\"0001\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"description\":\"项目分类\",\"parameterName\":\"pk_jobcl\",\"id\":\"70acfe17-ce24-40a8-b8a9-88bd7e0ee67d\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"description\":\"项目类型\",\"parameterName\":\"pk_jobtype\",\"id\":\"4572e196-1041-4f50-b0fe-e39ea3e18708\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"description\":\"项目主键\",\"parameterName\":\"pk_jobbasfil\",\"id\":\"6deb9590-517b-4811-af03-ffee60a8f70c\",\"example\":\"0001F1100000000008B9\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"jobbasfils\",\"id\":\"0bf3769a-37fc-46fa-a21d-b9e5ce4b2ebe\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"bde85557-d1cc-4b4f-afbd-3224903c9214\",\"parameterName\":\"body\",\"first\":true}]', '[]', 163, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('c94eda7988384a4e80bec6148239f242', 8000350003, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '601f31d4350f45a0b12682050f15abb2', '存货档案分配', '存货档案分配', '2', NULL, '1', '/u8cloud/api/uapbd/invbasdoc/assign', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"assistunit\",\"id\":\"2a19854e-fa74-4936-a970-40584b10878d\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"invcode\",\"id\":\"0840cd1d-8f17-451f-8b8a-d66e49fe1cb3\",\"example\":\"ceshi0005\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"invname\",\"id\":\"32fba384-d961-4483-902a-e1d96574bab4\",\"example\":\"测试0005\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"parameterName\":\"pk_invcl\",\"id\":\"8adba933-21dd-4b55-a4b0-0d37f6804256\",\"example\":\"0001F81000000000HJ8C\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"pk_measdoc\",\"id\":\"09288d2b-1864-4a67-803e-60a661706002\",\"example\":\"0001F81000000000HJ8M\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"pk_taxitems\",\"id\":\"8994532c-0efd-4dbc-adc8-805e07bce37e\",\"example\":\"40040000000000000082\"}],\"concreteType\":\"Object\",\"index\":1,\"parameterName\":\"parentvo\",\"id\":\"89f4bacc-f2ec-4542-bd8f-cfdb72b73c27\"}],\"concreteType\":\"ObjectCom\",\"index\":0,\"parameterName\":\"invbasdoc\",\"id\":\"ae814ed6-2fc1-4f07-80eb-d869d378c721\"}]', '[]', 5, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('e43948e32d8d4303a3052cb40f8eb5a5', 8000350009, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'b4c9b97eaa1042d2bfabb704e35fdc19', '调拨订单保存即审批', '调拨订单保存即审批\n', '2', NULL, '1', '/u8cloud/api/to/transorder/saveapprove', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"cinvbasid\",\"id\":\"eadc291a-13a9-4b68-956b-ff444f1a9ff2\",\"example\":\"B01008A\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"nnum\",\"id\":\"f6148926-03b9-4926-98be-2195d4777826\",\"example\":\"1\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"childrenvo\",\"id\":\"5abeb6a0-d048-4b4b-858d-cbcd94371677\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"parameterName\":\"cbiztypeid\",\"id\":\"c0dd37f0-b1e5-4410-bc16-ee85e1e34ced\",\"example\":\"0001ZZ1000000000UFQ0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"cincbid\",\"id\":\"bf86de5c-3561-4218-8026-9ccf4bf695f0\",\"example\":\"1007F81000000000I0YF\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"cincorpid\",\"id\":\"253f18cb-8888-4bef-a793-002452a836cd\",\"example\":\"1007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"parameterName\":\"cinwhid\",\"id\":\"0faa8567-d305-483d-9eb5-cf29f24766f9\",\"example\":\"1007F81000000000I13S\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"parameterName\":\"coperatorid\",\"id\":\"b227d073-c25c-4ad6-8c69-afc9173b4379\",\"example\":\"0001F81000000000HGYQ\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"parameterName\":\"coutcbid\",\"id\":\"1b16ba03-d67f-4061-9dbd-c6cff48cc042\",\"example\":\"1007F81000000000I0YF\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"parameterName\":\"coutcorpid\",\"id\":\"59bb72be-8165-4b8b-974d-114dadc1355c\",\"example\":\"1007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"parameterName\":\"coutwhid\",\"id\":\"f3a6d51c-e9bc-4139-b1c4-bc5acdafe956\",\"example\":\"1007F81000000000I0Z7\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"parameterName\":\"vcode\",\"id\":\"f5889173-9c65-471e-bc11-96aa3bb4ed0f\",\"example\":\"ceshi007\"}],\"concreteType\":\"Object\",\"index\":4,\"parameterName\":\"parentvo\",\"id\":\"a639c3f3-b42d-4603-a365-bdaa6387059a\"}],\"concreteType\":\"Object\",\"index\":0,\"parameterName\":\"billvo\",\"id\":\"7b562eaf-e25e-4fd9-982a-3069ba4ba2c5\"}]', '[]', 11, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('e8818b561b084dc8937c67626a5b19da', 8000350011, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '81a2cc28c3a64ee1abbf9e64f96b4f30', '速网U8C_销售订单关闭', '速网U8C_销售订单关闭', '2', NULL, '1', '/u8cloud/api/so/saleorder/close', '1', '1', '10000', '100', '[]', '[]', '1', '[]', '[]', 69, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('ef6fd4bac1ba4c43a73bdc8e07e0cbe2', 8000350020, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'c78369f5e69d4338bc1c27c2122827f2', '客商管理档案-删除', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/custmandoc/delete', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"description\":\"公司编码\",\"parameterName\":\"unitcode\",\"id\":\"8ce4e367-f0b7-498f-952a-9057dc15cc86\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"客商编码\",\"parameterName\":\"custcode\",\"id\":\"d1213c87-bbf7-426e-b1f2-bcaeebd232f3\",\"example\":\"202499101111\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"5e2ee220-20b6-4f48-9723-73164ce75163\",\"parameterName\":\"body\",\"first\":true}]', '[]', 161, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('f223c8f5a3b242a6a800e092db0c33da', 8000350021, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'ef3465ed2f0c4bef950d54972ce11768', '项目基本档案-新增', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdjobbasfil/save', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"是否完工*必填\",\"parameterName\":\"finishedflag\",\"id\":\"8d00c456-cb2f-4d5a-b1e9-4bee25dce595\",\"example\":\"false\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"预计完工日期\",\"parameterName\":\"forecastenddate\",\"id\":\"fb2b0a1e-63d3-4b41-81b8-b56f3d3aec50\",\"example\":\"2024-09-22\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"项目编码\",\"parameterName\":\"jobcode\",\"id\":\"7d28e5f9-7593-496f-84f7-044069f78fed\",\"example\":\"20249001\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"description\":\"项目名称\",\"parameterName\":\"jobname\",\"id\":\"fd78b563-3b93-4bf9-970f-80d3abb04ed7\",\"example\":\"测试项目\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"description\":\"所属公司,默认0001\",\"parameterName\":\"pk_corp\",\"id\":\"a03142ad-bde3-4589-9fe0-de7f2b14bea7\",\"example\":\"0001\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"description\":\"项目分类\",\"parameterName\":\"pk_jobcl\",\"id\":\"3c018241-fee6-4704-ad02-8df11673bc20\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"description\":\"项目类型\",\"parameterName\":\"pk_jobtype\",\"id\":\"52b080ec-689a-459c-bb4c-bbe437464f9c\",\"example\":\"01\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"jobbasfils\",\"id\":\"caccafa6-2695-43b7-aefd-5b4af0132fab\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"1c75e9b4-9176-4852-ab69-3b5b28091a33\",\"parameterName\":\"body\",\"first\":true}]', '[]', 162, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('f479b033bfe240c3bc9bf1eee4894624', 8000350013, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'df25cd0136ac4a5e94ea2f820176e00c', '其他出库保存', NULL, '2', NULL, '1', '/u8cloud/api/ic/otherout/insert', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"88fffdf0-b0b2-44b8-b120-9c58fdfc2129\",\"parameterName\":\"body\",\"first\":true}]', '[]', 96, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('f4d04a88ba7c431f9d4ab81465c2aae3', 8000350016, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '05b318825e1049af8f3a5703fe46351e', '部门修改', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bddept/update', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"description\":\"创建日期\",\"parameterName\":\"createDate\",\"id\":\"35b3c0a6-5720-43b8-9174-14d1f2d56471\",\"example\":\"2024-04-24\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"description\":\"部门属性(其他部门1,采购2,销售3,采购销售4)\",\"parameterName\":\"deptattr\",\"id\":\"c7e7992d-7027-40ab-9293-d235e263b19d\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"description\":\"部门编码\",\"parameterName\":\"deptcode\",\"id\":\"31fef11e-fe45-4014-be7f-6be2f698b298\",\"example\":\"99\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"description\":\"部门名称\",\"parameterName\":\"deptname\",\"id\":\"909a6c10-f098-406b-b9bd-66d40e6edb52\",\"example\":\"DEV测试一级部门1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"description\":\"部门类型\",\"parameterName\":\"depttype\",\"id\":\"8a2c04b4-2e28-447c-a805-b83efbfab36a\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"description\":\"是否用于零售\",\"parameterName\":\"isuseretail\",\"id\":\"51bfead8-63f9-4075-ab6b-f75450907966\",\"example\":\"false\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"description\":\"公司编码\",\"parameterName\":\"pk_corp\",\"id\":\"bff76dd6-2e96-4942-a99e-873e29f4da19\",\"example\":\"01\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"description\":\"部门主键\",\"parameterName\":\"pk_deptdoc\",\"id\":\"ec4e39a4-2f05-4c4f-96a8-9b4865c4ec70\",\"example\":\"1001F11000000000676O\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"deptdoc\",\"id\":\"f0928b26-0a47-45b4-818f-35079c76ce80\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"af3fb096-be80-4976-865e-f996a09d002f\",\"parameterName\":\"body\",\"first\":true}]', '[]', 157, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('f623449f939e4fd9857eb0fba53797a3', 8000350005, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'c0b2315ff678446ab6ba390c1926fe3c', '采购付款单保存即审批', '采购付款单保存即审批', '2', NULL, '1', '/u8cloud/api/arap/fk/insertapprove', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"bbhl\",\"id\":\"7aff6eac-f575-4ae5-a027-848645ab4020\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"dfbbje\",\"id\":\"02b1c539-a6d3-46ac-9a99-b6357ea748c5\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"dfbbsj\",\"id\":\"7253200a-030b-4ddc-829c-089509eee718\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":5,\"parameterName\":\"dfbbwsje\",\"id\":\"641b56c4-00aa-4cff-b040-4e35f70a68cc\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"dfshl\",\"id\":\"a47098b5-15b9-4560-aaf1-3e661dc815ee\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"dfybje\",\"id\":\"a0adf1df-234a-414f-95d6-3fa09a2e5b91\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"parameterName\":\"dfybsj\",\"id\":\"f5b8e1be-4c5c-40d9-b867-0e26788129d2\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":9,\"parameterName\":\"dfybwsje\",\"id\":\"152fca0a-a993-48a6-a9e0-58dd23319719\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"parameterName\":\"dj\",\"id\":\"759492d1-0a54-4605-ad4a-c8f018c74de1\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"parameterName\":\"hsdj\",\"id\":\"9292797f-ca0a-49ba-834a-2e5680d78b01\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"parameterName\":\"jfbbje\",\"id\":\"a71ebdd0-643b-4ff0-8bc5-5b8baa8fca67\",\"example\":\"999\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"parameterName\":\"jfbbsj\",\"id\":\"ad930aa2-d63a-4767-bdd6-8742436ad63b\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":14,\"parameterName\":\"jfshl\",\"id\":\"8cc0c71e-aa01-428a-a9d4-981f717a6991\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":15,\"parameterName\":\"jfybje\",\"id\":\"2928980d-58a1-4345-ba95-56cab883f3e1\",\"example\":\"999\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":16,\"parameterName\":\"jfybsj\",\"id\":\"168ed4e5-0dda-439b-a6dc-9d2d222531b3\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":17,\"parameterName\":\"jfybwsje\",\"id\":\"b7d6ec64-fff6-4b88-8fd2-65e4aa7421d2\",\"example\":\"999\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":18,\"parameterName\":\"kslb\",\"id\":\"22e3190e-19db-49c5-880f-7c044e9e58ec\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":19,\"parameterName\":\"sl\",\"id\":\"6d5f9c6e-d8b7-4825-a022-2dddf03fbd14\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":20,\"parameterName\":\"tradertype\",\"id\":\"49bb7919-6d6c-499c-ad4b-a639a85a9d5b\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":21,\"parameterName\":\"wbfbbje\",\"id\":\"58c49293-fa8c-4050-bc33-b0dc4016a603\",\"example\":\"999\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"children\",\"id\":\"322e3c04-dba4-4294-bd69-8053ef534ffa\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":23,\"parameterName\":\"bzbm\",\"id\":\"df9906a7-d287-4aa5-94c6-1b59729c222d\",\"example\":\"00010000000000000001\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":24,\"parameterName\":\"djbh\",\"id\":\"6254d078-334f-4466-a744-7d665722ed9a\",\"example\":\"FK2309250004\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":25,\"parameterName\":\"djlxbm\",\"id\":\"ec3f5256-59a3-4cae-96cd-a4dfeb5f3ea8\",\"example\":\"D3\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":26,\"parameterName\":\"djrq\",\"id\":\"984c54c7-8332-4eb0-843d-c205b5a688c7\",\"example\":\"2023-09-27\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":27,\"parameterName\":\"dwbm\",\"id\":\"f7cbc093-519e-491c-9817-d15a93279186\",\"example\":\"1007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":28,\"parameterName\":\"effectdate\",\"id\":\"152b9d89-8b2c-466d-8a1a-70674843f3f8\",\"example\":\"2023-09-27\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":29,\"parameterName\":\"hbbm\",\"id\":\"cafddd3a-dd1c-4096-86e3-7cf92c998e04\",\"example\":\"0001F81000000000HJRA\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":30,\"parameterName\":\"isreded\",\"id\":\"78b2a316-7582-44f7-ac34-3ee942abf859\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":31,\"parameterName\":\"lrr\",\"id\":\"ba039bff-8774-4101-8729-499607a0e7aa\",\"example\":\"0001F81000000000HGYQ\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":32,\"parameterName\":\"prepay\",\"id\":\"0dd31959-74c0-4d85-8fbd-f995fcf29898\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":33,\"parameterName\":\"qcbz\",\"id\":\"5619061c-20c1-46a0-9f93-8326ec3367e1\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":34,\"parameterName\":\"shr\",\"id\":\"ca33d4c4-ff37-466b-9759-09d6532929a5\",\"example\":\"0001F81000000000HGZ1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":35,\"parameterName\":\"shrq\",\"id\":\"8cdb21ec-7cdc-4e0e-943e-d8595fe99dcd\",\"example\":\"2023-09-27\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":36,\"parameterName\":\"tradertype\",\"id\":\"bec4a564-89bc-4d6a-bc3e-fee9343057a2\",\"example\":\"0\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":37,\"parameterName\":\"wldx\",\"id\":\"f233a73f-19d0-4b61-9fe4-669e6f6a2209\",\"example\":\"1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":38,\"parameterName\":\"xslxbm\",\"id\":\"97b1671a-f368-4515-8790-17b3d648d6a6\",\"example\":\"00011110000000002RGT\"}],\"concreteType\":\"Object\",\"index\":22,\"parameterName\":\"parentvo\",\"id\":\"ff76661d-961a-4ccb-8555-b0814efd300a\"}],\"concreteType\":\"ObjectCom\",\"index\":0,\"parameterName\":\"billvo\",\"id\":\"ba471ce4-118f-4902-a3c1-4992c371aecd\"}]', '[]', 7, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('f7c2d73bd47b40549a7f77ed15f19e8e', 8000350008, NULL, '1', '3b52dc340cad48dab548b17d3095b981', 'df25cd0136ac4a5e94ea2f820176e00c', '其他出库保存即签字', '其他出库保存即签字', '2', NULL, '1', '/u8cloud/api/ic/otherout/save/sign', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"bonroadflag\",\"id\":\"08cd9a51-837e-4f69-a7e9-a9c5ce80cc5d\",\"example\":\"N\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":3,\"parameterName\":\"cinventoryid\",\"id\":\"08f9145b-2385-46bb-8922-23d305b3ea85\",\"example\":\"0001F81000000000HJFH\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"flargess\",\"id\":\"e8e39a04-931c-40d7-b351-d06f1e3227b0\",\"example\":\"N\"},{\"parameterType\":\"complexlist\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":6,\"parameterName\":\"cspaceid\",\"id\":\"83e249d0-9ea9-40b0-b81e-e7ae4527f8dc\",\"example\":\"1007F81000000000I19T\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":7,\"parameterName\":\"noutspacenum\",\"id\":\"607b83a9-df01-46b7-b05a-2bf8494475ed\",\"example\":\"0\"}],\"concreteType\":\"ObjectCom\",\"index\":5,\"parameterName\":\"locator\",\"id\":\"57fb6980-b5f1-457d-b9bd-7ce036453e8e\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":8,\"parameterName\":\"noutnum\",\"id\":\"e25dac78-9055-4ec7-aca1-a584c2b21dbc\",\"example\":\"0\"}],\"concreteType\":\"ObjectCom\",\"index\":1,\"parameterName\":\"childrenvo\",\"id\":\"0adf4304-bb1d-41a1-8dd4-d945c2e226bb\"},{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":10,\"parameterName\":\"coperatorid\",\"id\":\"6e81e723-b1af-4713-8c56-fe19a69beab7\",\"example\":\"0001F81000000000HGZ1\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":11,\"parameterName\":\"cwarehouseid\",\"id\":\"a6802c07-6617-4f86-8569-6a4a244399a0\",\"example\":\"1007F81000000000I0Z7\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":12,\"parameterName\":\"pk_calbody\",\"id\":\"1e515dd9-2049-411f-b065-969cf7fa2e75\",\"example\":\"1007F81000000000I0YF\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":13,\"parameterName\":\"pk_corp\",\"id\":\"60701db0-81d6-423b-afa3-e4735f81d442\",\"example\":\"1007\"},{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":14,\"parameterName\":\"vbillcode\",\"id\":\"6a56b584-ceaa-44ec-94d1-9f4f46442991\",\"example\":\"ceshi005\"}],\"concreteType\":\"Object\",\"index\":9,\"parameterName\":\"parentvo\",\"id\":\"84da4e56-1ea9-4e8c-b776-e84a75295471\"}],\"concreteType\":\"ObjectCom\",\"index\":0,\"parameterName\":\"GeneralBillVO_4I\",\"id\":\"4afa054e-811a-4c1c-8fb1-23e78d60d913\"}]', '[]', 10, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('fca4e31da00d47fb8a6ae6f1e185e8a2', 8000350027, NULL, '1', '3b52dc340cad48dab548b17d3095b981', '64b66d7dac3c4bc89c056c472208954d', '存货分类删除', NULL, '2', NULL, '1', '/u8cloud/api/uapbd/bdinvcl/delete', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"description\":\"分类编码\",\"parameterName\":\"code\",\"id\":\"a5a198fc-5bb1-48c0-8302-40980e50c5ad\",\"example\":\"04\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"b8b3e0ba-4979-407a-88fa-e4151cf251a6\",\"parameterName\":\"body\",\"first\":true}]', '[]', 168, '1', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', 'Y', NULL, NULL, NULL, NULL, NULL, NULL, NULL);
-
-INSERT INTO sys_application_api_para (id, app_id, interface_key, interface_value, interface_type, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('04c7764766504656b32176ab87ee0bd7', '3b52dc340cad48dab548b17d3095b981', 'password', '83f1ad3e7fa3617f1aae62ae7413c810', '1', 4, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_para (id, app_id, interface_key, interface_value, interface_type, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('0f37aef4670047febecac1cc7417d56c', '3b52dc340cad48dab548b17d3095b981', 'usercode', 'aoxing', '1', 3, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_para (id, app_id, interface_key, interface_value, interface_type, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('22dbefe60056444295e34005368de36c', '3b52dc340cad48dab548b17d3095b981', 'trantype', 'code', '1', 5, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_para (id, app_id, interface_key, interface_value, interface_type, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('315dd421ba1547fe8319773f4822129e', '3b52dc340cad48dab548b17d3095b981', 'system', '01', '1', 6, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('05b318825e1049af8f3a5703fe46351e', '3b52dc340cad48dab548b17d3095b981', '部门档案', 46, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('1f061a02e4604353b5f62e33c7307840', '3b52dc340cad48dab548b17d3095b981', '库存委托加工入库单', 90, NULL, 'Y', '2024-07-16 11:17:16', '1', '2024-07-16 11:17:16', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('2336f43a33d244959285a74c16443aa8', '3b52dc340cad48dab548b17d3095b981', '转库单', 89, NULL, 'Y', '2024-07-16 11:15:58', '1', '2024-07-16 11:15:58', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('48de5b43d1ea4f7ebfd0a18d8ac2253a', '3b52dc340cad48dab548b17d3095b981', '采购入库', 86, NULL, 'Y', '2024-07-16 11:08:28', '1', '2024-07-16 11:08:28', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('56ccfdd16c59466986caa7f778d8908c', '3b52dc340cad48dab548b17d3095b981', '采购订单', 10, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('5bfeb3fef9004a9a8df21c30ef2c3265', '3b52dc340cad48dab548b17d3095b981', '委外订单', 88, NULL, 'Y', '2024-07-16 11:15:29', '1', '2024-07-16 11:15:29', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('5e4f5bc4d6a8438ba13efc05a39bfc5c', '3b52dc340cad48dab548b17d3095b981', '其他入库单', 13, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('601f31d4350f45a0b12682050f15abb2', '3b52dc340cad48dab548b17d3095b981', '存货档案', 9, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('60788a2d84f84d9288c92b371ff65f36', '3b52dc340cad48dab548b17d3095b981', '银行类别', 49, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('64b66d7dac3c4bc89c056c472208954d', '3b52dc340cad48dab548b17d3095b981', '存货分类', 48, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('71d6de477f1e4ecc86c819fc33738bb1', '3b52dc340cad48dab548b17d3095b981', '凭证管理', 45, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('74f7cdafcc264989b6c091ac6c431e3a', '3b52dc340cad48dab548b17d3095b981', '产成品入库单', 87, NULL, 'Y', '2024-07-16 11:13:51', '1', '2024-07-16 11:13:51', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('81a2cc28c3a64ee1abbf9e64f96b4f30', '3b52dc340cad48dab548b17d3095b981', '销售订单', 12, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('ae7f51130f7646fe8e704fd259f161e0', '3b52dc340cad48dab548b17d3095b981', '收款单', 85, NULL, 'Y', '2024-07-16 11:06:17', '1', '2024-07-16 11:06:17', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('b4c9b97eaa1042d2bfabb704e35fdc19', '3b52dc340cad48dab548b17d3095b981', '调拨单', 15, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('be79f584800346e8b4332db0c45d706f', '3b52dc340cad48dab548b17d3095b981', '销售出库', 83, NULL, 'Y', '2024-07-16 11:01:30', '1', '2024-07-16 11:01:30', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('c0b2315ff678446ab6ba390c1926fe3c', '3b52dc340cad48dab548b17d3095b981', '采购付款单', 11, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('c78369f5e69d4338bc1c27c2122827f2', '3b52dc340cad48dab548b17d3095b981', '客商档案', 8, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('df25cd0136ac4a5e94ea2f820176e00c', '3b52dc340cad48dab548b17d3095b981', '其他出库单', 14, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('ef3465ed2f0c4bef950d54972ce11768', '3b52dc340cad48dab548b17d3095b981', '项目档案', 47, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('f3acb3c21037486b9aaaced07b24e2d2', '3b52dc340cad48dab548b17d3095b981', '人员档案', 50, NULL, 'Y', '2024-07-16 10:18:39', '1', '2024-07-16 10:18:39', '1');
-
-
-update sys_application_api set extension_api = '2' where extension_api is null;
-update sys_application_api set return_success_field = 'status' where return_success_field is null;
-update sys_application_api set return_success_value = '200' where return_success_value is null;
-update sys_application_api set return_msg = 'msg' where return_msg is null;
-
-
-commit;
-
-
diff --git a/buildpackage/src/main/resources/dbSql/dj/V3.0.13__init_app_djzyOA.sql b/buildpackage/src/main/resources/dbSql/dj/V3.0.13__init_app_djzyOA.sql
deleted file mode 100644
index 34c80780..00000000
--- a/buildpackage/src/main/resources/dbSql/dj/V3.0.13__init_app_djzyOA.sql
+++ /dev/null
@@ -1,35 +0,0 @@
-INSERT INTO sys_application (id, app_logo, app_status, name, version_number, access_mode, affiliation_field, manufacturer, app_introduction, client_path, app_id, system_address, web_path, program_path, public_key, secret_key, interface_address, interface_status, app_type, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('53936623a8bd451fb7f5fed09cb36fab', NULL, '1', '东进致远OA', '8.2', '[\"1\"]', '11', '致远', '越城区发展集团致远OA', 'http://ufidahz.com.cn:9955/', 800034, NULL, 'http://ufidahz.com.cn:9955/', 'http://ufidahz.com.cn:9955/', 'ZJYATW/MfYZX7zF0eAh4DJXbyTLwUtwSoSz5Y/o1ksAaN/dCe7eDIk+3zDUT+v578prj', '+5BUkLQh3iX3VHgEt5bE2IPh+ZeebGvDaEspsvVu739Ar6sFnwg+fpPod4t6XhoTj3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=', 'http://115.239.174.22:9999', '1', '1', '1', 17, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:17:56', '1');
-
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('23499f05d50b495d989208e124469eff', 8000340004, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '33406ee83887421bb1cdeb728606dcbf', '按登录名取人员信息', '按登录名取人员信息', '2', NULL, '1', '/seeyon/rest/orgMember', '1', '2', '10000', '100', '[]', '[]', '1', '[{\"id\":\"c8620cd3-7ee3-47a9-8b1d-88d26f7c21d8\",\"parameterName\":\"body\",\"first\":true}]', '[]', 228, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'enabled', 'true', 'enabled');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('539a319b80224ce6a39106324bb68ef9', 8000340005, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '81333abd92ac40d7b15b080d6d3750a9', '附件上传', '假的', '2', NULL, '1', '/seeyon/rest/attachment', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"03521015-0cf3-4b9f-b0d6-41d13b5578e4\",\"parameterName\":\"body\",\"first\":true}]', '[]', 235, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '1', '1', '1', '1');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('6cc3ea97cec24265810efced08509203', 8000340007, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '27eae7084739493c97f2da86ba5f434b', '支付申请明细日志', 'OA付款推到CBS的支付申请日志', '2', '6f561dd4a5a74bba850cc37e5c287e92', '1', '/seeyon/rest/form/import/formmain_0232', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"index\":0,\"concreteType\":\"String\",\"id\":\"cc04b232-1755-49ab-b5bd-451ed4e7a9cf\",\"parameterName\":\"token\"}]', '[]', '1', '[{\"index\":0,\"id\":\"e167aa7a-43c0-476c-ae0d-9fc75752fc77\",\"parameterName\":\"body\",\"first\":true}]', '[]', 237, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, 'CbsLogServiceImpl', 'getTokenExt', '1', '1', '1', '1');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('8aa016962a474a54a4a8efc60f284fa3', 8000340006, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '27eae7084739493c97f2da86ba5f434b', 'CBS收款记录', '保存CBS收款记录到OA底表\n调用的是xml格式的接口', '2', '6f561dd4a5a74bba850cc37e5c287e92', '1', '/seeyon/rest/form/import/formmain_0233', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"index\":0,\"concreteType\":\"String\",\"id\":\"3a5e0ff5-7790-4402-9e93-a175f35a6630\",\"parameterName\":\"token\"}]', '[]', '1', '[{\"id\":\"a09d407c-df44-46fa-ab3c-cf99f1332b17\",\"parameterName\":\"body\",\"first\":true}]', '[]', 236, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, 'CbsLogServiceImpl', 'getTokenExt', '1', '1', '1', '1');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('9f047fd9a30246b48d12844da5ab59d5', 8000340003, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '27eae7084739493c97f2da86ba5f434b', '无流程表单批量新增', NULL, '2', NULL, '1', '/seeyon/rest/cap4/form/soap/batch-add', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"ad5f0b02-d555-4f65-8856-6afbab270870\",\"parameterName\":\"body\",\"first\":true}]', '[]', 221, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'code', '0', 'code');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('c75bab671dc94be68bf4498d49a93951', 8000340002, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '3b45cc93711c49c6a150d3b6aeddc60f', '流程表单发起', '流程表单发起', '2', NULL, '1', '/seeyon/rest/bpm/process/start', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"c25f517e-b8b8-4fcb-9466-6952ff754a1c\",\"parameterName\":\"body\",\"first\":true}]', '[]', 220, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'code', '0', 'code');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('c7ac1418cb0a4061ade501ee5614630d', 8000340000, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '75200bc1ee464e86accf4022c71cc16c', 'token', '获取oatoken', '2', NULL, '1', '/seeyon/rest/token', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"index\":0,\"concreteType\":\"String\",\"description\":\"hzya_rest\",\"id\":\"a7f634e6-4325-409f-9d4d-c05418153f13\",\"parameterName\":\"userName\",\"example\":\"hzya_rest\"},{\"parameterType\":\"fundamental\",\"index\":1,\"concreteType\":\"String\",\"id\":\"f34ec8a4-10ca-4af5-8895-0bc650f92516\",\"parameterName\":\"password\",\"example\":\"5339d0e3-b23b-45d6-b301-c59de8bd447a\"},{\"parameterType\":\"fundamental\",\"index\":2,\"concreteType\":\"String\",\"description\":\"hzya_rest\",\"id\":\"4435d5e8-20d1-4b39-9286-77589e338c1e\",\"parameterName\":\"loginName\",\"example\":\"hzya_rest\"}]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"index\":1,\"concreteType\":\"String\",\"description\":\"hzyaRest\",\"id\":\"37d4be39-a313-4776-9b80-214bb73666aa\",\"parameterName\":\"userName\",\"example\":\"hzyaRest\"},{\"parameterType\":\"fundamental\",\"index\":2,\"concreteType\":\"String\",\"description\":\"0c92d077-03ea-4d58-92c2-c743dae957d1\",\"id\":\"9fb64713-6645-429d-b377-66f4bc72e968\",\"parameterName\":\"password\",\"example\":\"0c92d077-03ea-4d58-92c2-c743dae957d1\"},{\"parameterType\":\"fundamental\",\"index\":3,\"concreteType\":\"String\",\"description\":\"xel\",\"id\":\"16789d17-bc77-4fd5-9ca9-5dbbbed2d59b\",\"parameterName\":\"loginName\",\"example\":\"xel\"}],\"index\":0,\"concreteType\":\"Object\",\"id\":\"8aef3b7b-e4b7-4465-b0c5-88ecc5f84200\",\"parameterName\":\"body\",\"first\":true}]', '[{\"parameterType\":\"fundamental\",\"index\":0,\"concreteType\":\"String\",\"id\":\"85f455c0-eed0-4292-8130-a52c242974ec\",\"parameterName\":\"userName\"},{\"parameterType\":\"fundamental\",\"index\":1,\"concreteType\":\"String\",\"id\":\"902fce32-f09d-4ce6-ac88-a06ef1950963\",\"parameterName\":\"id\"}]', 214, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'userName', 'hzyaRest', 'id不为空说明成功');
-INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('f3778b38d03048249e9d063abbcacc5c', 8000340001, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '3b45cc93711c49c6a150d3b6aeddc60f', '更新表单', '更新表单', '1', NULL, '1', '/seeyon/rest/businessResource/updateForm', '1', '1', '10000', '100', '[{\"parameterType\":\"authport\",\"index\":0,\"concreteType\":\"String\",\"id\":\"fdc278ea-8981-4db0-92b4-0b067d740ab6\",\"parameterName\":\"token\",\"example\":[\"id\"]}]', '[]', '1', '[]', '[]', 215, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'code', '0', '0表示成功');
-
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('27eae7084739493c97f2da86ba5f434b', '53936623a8bd451fb7f5fed09cb36fab', '无流程表单', 65, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('33406ee83887421bb1cdeb728606dcbf', '53936623a8bd451fb7f5fed09cb36fab', '组织架构', 70, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('3b45cc93711c49c6a150d3b6aeddc60f', '53936623a8bd451fb7f5fed09cb36fab', '流程表单', 64, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('75200bc1ee464e86accf4022c71cc16c', '53936623a8bd451fb7f5fed09cb36fab', 'token', 63, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('81333abd92ac40d7b15b080d6d3750a9', '53936623a8bd451fb7f5fed09cb36fab', '附件', 66, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
-INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('ced72ee34965400cbac80b8944fb9eda', '53936623a8bd451fb7f5fed09cb36fab', '销售合同', 84, NULL, 'Y', '2024-07-16 11:03:40', '1', '2024-07-16 11:03:40', '1');
-
-INSERT INTO sys_application_database (id, app_id, source_code, source_name, source_type, source_ip, source_port, login_name, password, db_name, service_name, db_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('21a9e85a5dfc497a9fdd5b2e084b57ec', '53936623a8bd451fb7f5fed09cb36fab', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', 19, '1', '2024-07-16 10:17:56', '1', '2024-07-16 10:17:56', 'Y', NULL);
-
-INSERT INTO sys_application_plugin (id, app_id, plugin_name, plugin_code, plugin_version, plugin_remark, release_date, plugin_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('9378e84eacb94edaafcc09f3469b37e1', '53936623a8bd451fb7f5fed09cb36fab', 'OA用户档案', 'MdmCustomerPlugin', '1.0', NULL, '2024-06-24 00:00:00', '1', 11, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL);
-INSERT INTO sys_application_plugin (id, app_id, plugin_name, plugin_code, plugin_version, plugin_remark, release_date, plugin_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('98929ef5049f455db40fad55b7127b21', '53936623a8bd451fb7f5fed09cb36fab', 'OA付款单同步BIP', 'PayBillPlugin', '1', NULL, '2024-06-25 00:00:00', '1', 16, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL);
-INSERT INTO sys_application_plugin (id, app_id, plugin_name, plugin_code, plugin_version, plugin_remark, release_date, plugin_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('a58d30d71f5943e9b114001ff36c69c3', '53936623a8bd451fb7f5fed09cb36fab', 'OA客户档案', 'MdmCustomerPlugin', '1.0', NULL, '2024-06-24 00:00:00', '1', 13, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL);
-INSERT INTO sys_application_plugin (id, app_id, plugin_name, plugin_code, plugin_version, plugin_remark, release_date, plugin_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('d2032b6aff7345b69553e6d0ca07c65c', '53936623a8bd451fb7f5fed09cb36fab', 'OA银行档案', 'MdmCustomerPlugin', '1.0', NULL, '2024-06-25 00:00:00', '1', 14, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL);
-
-
-update sys_application_api set extension_api = '2' where extension_api is null;
-update sys_application_api set return_success_field = 'status' where return_success_field is null;
-update sys_application_api set return_success_value = '200' where return_success_value is null;
-update sys_application_api set return_msg = 'msg' where return_msg is null;
-
-
-commit;
-
-
diff --git a/buildpackage/src/main/test/com/hzya/frame/SpringTransactionalApplicationTests.java b/buildpackage/src/main/test/com/hzya/frame/SpringTransactionalApplicationTests.java
deleted file mode 100644
index 0dbc877d..00000000
--- a/buildpackage/src/main/test/com/hzya/frame/SpringTransactionalApplicationTests.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.hzya.frame;
-
-import com.hzya.frame.demo.service.TestService;
-import org.junit.jupiter.api.Test;
-import org.springframework.boot.test.context.SpringBootTest;
-
-import javax.annotation.Resource;
-import java.sql.SQLException;
-
-@SpringBootTest
-class SpringTransactionalApplicationTests {
-
-
- @Resource
- private TestService testService;
-
- @Test
- void contextLoads() {
- }
-
- @Test
- void testS() throws SQLException {
- }
-
-}
diff --git a/buildpackage/src/main/test/com/hzya/frame/Test01.java b/buildpackage/src/main/test/com/hzya/frame/Test01.java
deleted file mode 100644
index cc57b5e6..00000000
--- a/buildpackage/src/main/test/com/hzya/frame/Test01.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.hzya.frame;
-
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.nc.service.impl.NcInterfaceServiceImpl;
-import org.junit.jupiter.api.Test;
-import org.springframework.boot.test.context.SpringBootTest;
-
-import javax.annotation.Resource;
-
-/**
- * @Content
- * @Author 👻👻👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-07-19 10:54
- * @Version 1.0
- */
-@SpringBootTest
-public class Test01 {
- @Resource
- private NcInterfaceServiceImpl ncInterfaceService;
-
- @Test
- public void test01() {
- JSONObject jsonObject = new JSONObject();
- ncInterfaceService.updateUser(jsonObject);
- }
-}
diff --git a/buildpackage/src/main/webapp/WEB-INF/lib/openapi-sdk-1.0.0.jar b/buildpackage/src/main/webapp/WEB-INF/lib/openapi-sdk-1.0.0.jar
deleted file mode 100644
index eac564c0..00000000
Binary files a/buildpackage/src/main/webapp/WEB-INF/lib/openapi-sdk-1.0.0.jar and /dev/null differ
diff --git a/buildpackage/src/main/webapp/WEB-INF/lib/taobao-sdk-java-auto-1.1.jar b/buildpackage/src/main/webapp/WEB-INF/lib/taobao-sdk-java-auto-1.1.jar
deleted file mode 100644
index e8fb256e..00000000
Binary files a/buildpackage/src/main/webapp/WEB-INF/lib/taobao-sdk-java-auto-1.1.jar and /dev/null differ
diff --git a/buildpackage/src/test/java/com/hzya/frame/TestUser.java b/buildpackage/src/test/java/com/hzya/frame/TestUser.java
deleted file mode 100644
index a425055c..00000000
--- a/buildpackage/src/test/java/com/hzya/frame/TestUser.java
+++ /dev/null
@@ -1,57 +0,0 @@
-package com.hzya.frame;
-
-import org.springframework.data.annotation.Id;
-import java.io.Serializable;
-
-
-public class TestUser implements Serializable {
-
- private static final long serialVersionUID = -3258839839160856614L;
- @Id
- private String id;
- private String name;
- private String code;
-
- @Override
- public String toString() {
- return "TestUser{" +
- "id='" + id + '\'' +
- ", name='" + name + '\'' +
- ", code='" + code + '\'' +
- '}';
- }
-
- public String getId() {
- return id;
- }
-
- public void setId(String id) {
- this.id = id;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getCode() {
- return code;
- }
-
- public void setCode(String code) {
- this.code = code;
- }
-
- public TestUser() {
- }
-
- public TestUser(String id, String name, String code) {
- this.id = id;
- this.name = name;
- this.code = code;
- }
-
-}
diff --git a/buildpackage/src/test/java/com/hzya/frame/temButtom.java b/buildpackage/src/test/java/com/hzya/frame/temButtom.java
index a711e11c..68701ee7 100644
--- a/buildpackage/src/test/java/com/hzya/frame/temButtom.java
+++ b/buildpackage/src/test/java/com/hzya/frame/temButtom.java
@@ -1,45 +1,11 @@
package com.hzya.frame;
-import cn.hutool.core.convert.Convert;
-import cn.hutool.http.HttpRequest;
-import com.alibaba.fastjson.JSON;
-import com.alibaba.fastjson.JSONObject;
-import com.baomidou.dynamic.datasource.annotation.DS;
-import com.hzya.frame.cbs8.dto.req.PayRequestDTO;
-import com.hzya.frame.cbs8.dto.req.PayResultRequestDTO;
-import com.hzya.frame.cbs8.dto.res.PayResultResDTO;
-import com.hzya.frame.cbs8.service.ICbs8ExtService;
-import com.hzya.frame.cbs8.service.ICbs8Service;
-import com.hzya.frame.cbs8.util.CBSUtil;
-import com.hzya.frame.cbs8.util.CbsAccessToken;
-import com.hzya.frame.plugin.cbs8.plugin.PayApplyPluginInitializer;
-import com.hzya.frame.plugin.cbs8.plugin.PayResultPluginInitializer;
-import com.hzya.frame.plugin.cbs8.plugin.TransactionDetailPluginInitializer;
-import com.hzya.frame.plugin.seeyonExt.plugin.SeeyonExtPluginInitializer;
-import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
-import com.hzya.frame.seeyon.cbs8.service.IPaymentService;
-import com.hzya.frame.stringutil.StringUtil;
-import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
import com.hzya.frame.util.AESUtil;
-import com.mongodb.client.result.UpdateResult;
-import org.apache.http.protocol.HTTP;
import org.junit.Test;
import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.data.annotation.Id;
-import org.springframework.data.domain.Sort;
-import org.springframework.data.mongodb.core.MongoTemplate;
-import org.springframework.data.mongodb.core.mapping.Document;
-import org.springframework.data.mongodb.core.query.Criteria;
-import org.springframework.data.mongodb.core.query.Query;
-import org.springframework.data.mongodb.core.query.Update;
import org.springframework.test.context.junit4.SpringRunner;
-import javax.annotation.Resource;
-import java.io.Serializable;
-import java.util.*;
-
/**
* @ClassName dsasas
* @Description
@@ -50,132 +16,6 @@ import java.util.*;
@SpringBootTest(classes = {WebappApplication.class})
public class temButtom {
- @Resource
- SeeyonExtPluginInitializer seeyonExtPluginInitializer;
- @Resource
- ICbs8Service cs8Service;
- @Resource
- ICbs8ExtService cbs8ExtService;
- @Autowired
- private IPaymentService paymentService;
- @Autowired
- private PayApplyPluginInitializer payApplyPluginInitializer;
-
- @Autowired
- private TransactionDetailPluginInitializer transactionDetailPluginInitializer;
- @Autowired
- private PayResultPluginInitializer payResultPluginInitializer;
-
-
-
- @Test
- public void cbs8PluginTest(){
- try {
- //支付申请 测试通过
- //payApplyPluginInitializer.executeBusiness(new JSONObject());
- //查询交易明细 测试通过
- //transactionDetailPluginInitializer.executeBusiness(new JSONObject());
- //交易结果查询 未测试 (OA没有日志底表,无法测试)
- payResultPluginInitializer.executeBusiness(new JSONObject());
- //电子回单测试 通过apipost测试过了,可以取到cbs电子回单,只是没法上传到OA
- //
-
- }catch (Exception e){
- e.printStackTrace();
- }
- }
- @Test
- public void queryUnpaid(){
- //查询待支付的列表
- PaymentEntity paymentEntity = new PaymentEntity();
- paymentEntity.setDataSourceCode("yc-test");
- try {
- List paymentList = paymentService.queryUnpaid(paymentEntity);
- System.out.println(paymentList);
- } catch (Exception e) {
- e.printStackTrace();
- throw new RuntimeException(e);
- }
- System.out.println("1111");
- }
- @Test
- public void queryResultTest(){
- // SysExtensionApiEntity sysExt = new SysExtensionApiEntity();
- // sysExt.setBodys("{\"referenceNum\":\"CL202406140002\"}");
- // cbs8ExtService.payResult(sysExt);
- // System.out.println("11111");
- List cl202406140002 = cs8Service.queryPayResult(new PayResultRequestDTO("CL202406140002"));
- System.out.println("111");
- }
-
- @Test
- public void cbs8ExtTest(){
- PaymentEntity paymentEntity = new PaymentEntity();
- paymentEntity.setReferenceNum("CL202406140003");
- paymentEntity.setPayAccount("655905707410000");
- paymentEntity.setPayBankName("");
- paymentEntity.setAmount("99.02");
- paymentEntity.setRevAccount("123456778");
- paymentEntity.setRevBankName("中国工商银行总行清算中心");
- paymentEntity.setRevBankType("ICB");
- paymentEntity.setRevAccountName("测试账户");
- paymentEntity.setCnapsCode("102100099996");
- paymentEntity.setPurpose("测试用途");
- paymentEntity.setBusType("202");
- paymentEntity.setCurrency("10");
- if (null != paymentEntity){
- PayRequestDTO payRequestDTO = new PayRequestDTO();
- String ferenceNum = Convert.toStr(paymentEntity.getReferenceNumNew(),paymentEntity.getReferenceNum());
- payRequestDTO.setReferenceNum(ferenceNum);
- payRequestDTO.setBusType(paymentEntity.getBusType());
- payRequestDTO.setAmount(paymentEntity.getAmount());
- payRequestDTO.setCurrency(paymentEntity.getCurrency());
- payRequestDTO.setPayAccount(StringUtil.replaceBlank(paymentEntity.getPayAccount()));
- payRequestDTO.setRevAccount(StringUtil.replaceBlank(paymentEntity.getRevAccount()));
- payRequestDTO.setRevAccountName(StringUtil.replaceBlank(paymentEntity.getRevAccountName()));
- payRequestDTO.setRevBankType(StringUtil.replaceBlank((paymentEntity.getRevBankType())));
- payRequestDTO.setRevBankName(StringUtil.replaceBlank(paymentEntity.getRevBankName()));
- payRequestDTO.setCnapsCode(StringUtil.replaceBlank((paymentEntity.getCnapsCode())));
- payRequestDTO.setPurpose(paymentEntity.getPurpose());
- payRequestDTO.setErpExtend1(paymentEntity.getPayType());
- //集中支付模式
- if (CBSUtil.CENTRALIZED_PAYMENT_TYPE.equals(payRequestDTO.getBusType())){
- payRequestDTO.setBusiStep("1");
- payRequestDTO.setApplyUnitCode(paymentEntity.getPayCompanyCode());
- payRequestDTO.setPayAccount(null);
- }
- List list = new ArrayList<>();
- list.add(payRequestDTO);
- String requestData = JSONObject.toJSONString(list);
- System.out.println("明文参数:"+requestData);
- //签名
- long timestamp = System.currentTimeMillis();
- String sign = CBSUtil.sign(requestData,timestamp);
- //加密
- byte[] encryptedData = CBSUtil.encrypt(requestData);
- Map header = new HashMap();
- header.put(CBSUtil.SIGN_HEADER_NAME,sign);
- header.put(CBSUtil.TIMESTAMP_HEADER,Long.toString(timestamp));
- header.put(HTTP.CONTENT_TYPE,CBSUtil.TARGET_CONTENT_TYPE);
- header.put(CBSUtil.AUTHORIZATION,CBSUtil.BEARER+CbsAccessToken.getToken());
- byte[] bodyByte = HttpRequest.post("https://cbs8-openapi-reprd.csuat.cmburl.cn/openapi/payment/openapi/v1/payment-apply-common").addHeaders(header).body(encryptedData).execute().bodyBytes();
- String decrypt = CBSUtil.decrypt(bodyByte);
- System.out.println(decrypt);
- }
- }
- @Test
- public void seeyonExtTest(){
- JSONObject jsonStr = new JSONObject();
- jsonStr.put("integration_task_living_details_id","4276973516873482804");
- JSONObject requestJson = new JSONObject();
- requestJson.put("jsonStr", JSON.toJSONString(jsonStr));
- try {
- seeyonExtPluginInitializer.executeBusiness(requestJson);
- } catch (Exception e) {
- throw new RuntimeException(e);
- }
- }
-
@Test
public void test01() {
String a = AESUtil.encrypt("hzya@1314");
@@ -184,109 +24,7 @@ public class temButtom {
System.out.println(b);
}
- @Resource
- private MongoTemplate mongoTemplate;
-
- @Test
- public void mongodbTest() {
- boolean flag = true;
- TestUser testUser = new TestUser("1","张三","U001");
- for (int i = 0; i < 20; i++) {
- int a = i+4;
- TestUser user = new TestUser(String.valueOf(a),"张三"+a,"U00"+a);
- //mongoTemplate.insert(user,"user");
- }
- //新增数据
- //mongoTemplate.insert(testUser,"user");
- System.out.println(testUser.toString());
- //新增或修改数据
- testUser.setName("李四");
- //mongoTemplate.save(testUser,"user");
- System.out.println(testUser.toString());
-
- //批量新增
- TestUser testUser1 = new TestUser("2","王武","U002");
- TestUser testUser2 = new TestUser("3","赵六","U003");
- List testUsers = new ArrayList<>();
- testUsers.add(testUser1);
- testUsers.add(testUser2);
- //mongoTemplate.insert(testUsers,"user");
-
- //修改数据
- Query query= new Query(Criteria.where("id").is(testUser1.getId()));
- //更新值
- Update update= new Update().set("name", testUser1.getName()+"up").set("code", testUser1.getCode());
- //更新查询满足条件的文档数据(全部)
- //UpdateResult result = mongoTemplate.updateMulti(query, update, TestUser.class,"user");
- //if(result!=null){
- // System.out.println("更新条数:" + result.getMatchedCount());
- //}
-
- //删除数据
- Query query1 = new Query(Criteria.where("_id").is(testUser1.getId()));
- //List result1= mongoTemplate.findAllAndRemove(query1, TestUser.class,"user");
- //System.out.println("删除的文档数据:" + result1.toString());
-
- //查询所有
- //List list = mongoTemplate.findAll(TestUser.class, "user");
- //System.out.println(list.toString());
-
-
- //根据id查询,注意是文档的id,不是数据行的id
- //TestUser result2 = mongoTemplate.findById("1", TestUser.class,"user");
- //System.out.println("查询结果:" + result2.toString());
-
- //查询一条数据
- Query query2 = new Query(Criteria.where("name").is("赵六"));
- TestUser result3 = mongoTemplate.findOne(query2, TestUser.class,"user");
- System.out.println("查询结果:" + result3.toString());
-
- //模糊查询
- Query query9 = new Query(Criteria.where("name").regex("张三"));
- List result9 = mongoTemplate.find(query9, TestUser.class,"user");
- System.out.println("查询结果:" + result9.toString());
- //查询列表单个查询条件
- Query query4 = new Query(Criteria.where("name").is(testUser.getName()));
- List result4 = mongoTemplate.find(query4, TestUser.class,"user");
- System.out.println("查询结果:" + result4.toString());
-
- // 查询列表多个查询条件
- Criteria criteriaUserName = Criteria.where("name").is(testUser.getName());
- Criteria criteriaPassWord = Criteria.where("code").is(testUser.getCode());
- // 创建条件对象,将上面条件进行 AND 关联
- Criteria criteria = new Criteria().andOperator(criteriaUserName, criteriaPassWord);
- // 创建查询对象,然后将条件对象添加到其中
- Query query5 = new Query(criteria);
- List result5 = mongoTemplate.find(query5, TestUser.class,"user");
- System.out.println("查询结果:" + result5.toString());
-
- // 创建条件对象,将上面条件进行 OR 关联
- Criteria criteria1 = new Criteria().orOperator(criteriaUserName, criteriaPassWord);
- // 创建查询对象,然后将条件对象添加到其中
- Query query6 = new Query(criteria1);
- List result6 = mongoTemplate.find(query6, TestUser.class,"user");
- System.out.println("查询结果:" + result6.toString());
-
- // 创建条件对象条件进行 in 关联
- List ids = Arrays.asList("1", "2");
- // 创建条件
- Criteria criteria7 = Criteria.where("id").in(ids);
- // 创建查询对象,然后将条件对象添加到其中
- Query query7 = new Query(criteria7);
- List result7 = mongoTemplate.find(query7, TestUser.class,"user");
- System.out.println("查询结果:" + result7.toString());
-
- //从第一行开始,查询2条数据返回
- Query query8 = new Query(Criteria.where("name").is(testUser.getName())).with(Sort.by("code")).limit(2).skip(0);
- List result8 = mongoTemplate.find(query8, TestUser.class,"user");
- System.out.println("查询结果:" + result8.toString());
-
- Query query10 = new Query(Criteria.where("name").is(testUser.getName()));
- long count = mongoTemplate.count(query10,"user");
- System.out.println("统计结果:" + count);
-
- }
}
diff --git a/common/src/test/java/Test.java b/common/src/test/java/Test.java
deleted file mode 100644
index 0e7d759f..00000000
--- a/common/src/test/java/Test.java
+++ /dev/null
@@ -1,8 +0,0 @@
-/**
- * @Content
- * @Author 👻👻👻👻👻👻👻👻👻👻 gjh
- * @Date 2023-07-18 13:57
- * @Version 1.0
- */
-public class Test {
-}
diff --git a/service/pom.xml b/service/pom.xml
index 6287f4e7..84315e0a 100644
--- a/service/pom.xml
+++ b/service/pom.xml
@@ -21,43 +21,15 @@
mysql-connector-java
${mysql-connector-java}
-
- com.hzya.bip
- pubbaseapp_nccloud_rtLevel
- 1
- system
- ${basedir}/src/main/resources/lib/pubbaseapp_nccloud_rtLevel-1.jar
-
-
- com.hzya.bipyonyoulog
- yonyoulog
- 1
- system
- ${basedir}/src/main/resources/lib/yonyoulog.jar
-
-
- com.hzya.bcprov
- bcprov
- 1
- system
- ${basedir}/src/main/resources/lib/bcprov-jdk15on-1.70.jar
-
-
-
- com.hzya.DataApiSdk
- DataApiSdk
- 1
- system
- ${basedir}/src/main/resources/lib/DataApiSdk-jar-with-dependencies.jar
-
-
- com.hzya.openBasicSDK
- openBasicSDK
- 1
- system
- ${basedir}/src/main/resources/lib/openBasicSDK-2.1.230630.jar
-
+
+
+
+
+
+
+
+
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipOrgsDao.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipOrgsDao.java
deleted file mode 100644
index 0ad05a4c..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipOrgsDao.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dao;
-
-import com.hzya.frame.basedao.dao.IBaseDao;
-import com.hzya.frame.bip.v3.v2207.entity.BipOrgsEntity;
-
-import java.util.List;
-
-
-public interface IBipOrgsDao extends IBaseDao {
-
- /**
- * 查询BIP业务单元
- * @param BipOrgsEntity
- * @return
- */
- List thirdInterfaceGetOrgs(BipOrgsEntity BipOrgsEntity);
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipOrgsDetailsDao.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipOrgsDetailsDao.java
deleted file mode 100644
index e0e6ea3f..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipOrgsDetailsDao.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dao;
-
-import com.hzya.frame.basedao.dao.IBaseDao;
-import com.hzya.frame.bip.v3.v2207.entity.BipOrgsDetailsEntity;
-
-import java.util.List;
-
-
-public interface IBipOrgsDetailsDao extends IBaseDao {
-
- /**
- * 查询BIP业务单元银行账户
- * @param BipOrgsDetailsEntity
- * @return
- */
- List thirdInterfaceGetOrgsDetails(BipOrgsDetailsEntity BipOrgsDetailsEntity);
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipSupplierDao.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipSupplierDao.java
deleted file mode 100644
index ba069080..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipSupplierDao.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dao;
-
-import com.baomidou.dynamic.datasource.annotation.DS;
-import com.hzya.frame.basedao.dao.IBaseDao;
-import com.hzya.frame.bip.v3.v2207.entity.BipSupplierEntity;
-
-import java.util.List;
-
-
-public interface IBipSupplierDao extends IBaseDao {
-
- /**
- * 查询BIP供应商
- * @param bipSupplierEntity
- * @return
- */
- List thirdInterfaceGetSupplier(BipSupplierEntity bipSupplierEntity);
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipSupplierDetailsDao.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipSupplierDetailsDao.java
deleted file mode 100644
index 2edaa29e..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/IBipSupplierDetailsDao.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dao;
-
-import com.hzya.frame.basedao.dao.IBaseDao;
-import com.hzya.frame.bip.v3.v2207.entity.BipSupplierDetailsEntity;
-import com.hzya.frame.bip.v3.v2207.entity.BipSupplierEntity;
-
-import java.util.List;
-
-
-public interface IBipSupplierDetailsDao extends IBaseDao {
-
- /**
- * 查询BIP供应商明细
- * @param bipSupplierDetailsEntity
- * @return
- */
- List thirdInterfaceGetSupplierDetails(BipSupplierDetailsEntity bipSupplierDetailsEntity);
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipOrgsDaoImpl.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipOrgsDaoImpl.java
deleted file mode 100644
index 478c54ca..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipOrgsDaoImpl.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dao.impl;
-
-import com.baomidou.dynamic.datasource.annotation.DS;
-import com.hzya.frame.basedao.dao.MybatisGenericDao;
-import com.hzya.frame.bip.v3.v2207.dao.IBipOrgsDao;
-import com.hzya.frame.bip.v3.v2207.dao.IBipSupplierDao;
-import com.hzya.frame.bip.v3.v2207.entity.BipOrgsEntity;
-import org.springframework.stereotype.Repository;
-
-import java.util.List;
-
-@Repository("bipOrgsDaoImpl")
-public class BipOrgsDaoImpl extends MybatisGenericDao implements IBipOrgsDao {
- /**
- * 查询BIP业务单元
- * @param BipOrgsEntity
- * @return
- */
- @DS("oracle91")
- @Override
- public List thirdInterfaceGetOrgs(BipOrgsEntity BipOrgsEntity) {
- return super.query("com.hzya.frame.bip.v3.v2207.dao.impl.BipOrgsDaoImpl.thirdInterfaceGetOrgs",BipOrgsEntity);
- }
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipOrgsDetailsDaoImpl.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipOrgsDetailsDaoImpl.java
deleted file mode 100644
index 5d51da6d..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipOrgsDetailsDaoImpl.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dao.impl;
-
-import com.baomidou.dynamic.datasource.annotation.DS;
-import com.hzya.frame.basedao.dao.MybatisGenericDao;
-import com.hzya.frame.bip.v3.v2207.dao.IBipOrgsDetailsDao;
-import com.hzya.frame.bip.v3.v2207.dao.IBipSupplierDetailsDao;
-import com.hzya.frame.bip.v3.v2207.entity.BipOrgsDetailsEntity;
-import org.springframework.stereotype.Repository;
-
-import java.util.List;
-
-@Repository("bipOrgsDetailsDaoImpl")
-public class BipOrgsDetailsDaoImpl extends MybatisGenericDao implements IBipOrgsDetailsDao {
- @DS("oracle91")
- @Override
- public List thirdInterfaceGetOrgsDetails(BipOrgsDetailsEntity bipOrgsDetailsEntity) {
- return super.query("com.hzya.frame.bip.v3.v2207.dao.impl.BipOrgsDetailsDaoImpl.thirdInterfaceGetOrgsDetails",bipOrgsDetailsEntity);
- }
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipSupplierDaoImpl.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipSupplierDaoImpl.java
deleted file mode 100644
index 9abe9ee7..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipSupplierDaoImpl.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dao.impl;
-
-import cn.hutool.http.HttpRequest;
-import com.baomidou.dynamic.datasource.annotation.DS;
-import com.hzya.frame.basedao.dao.MybatisGenericDao;
-import com.hzya.frame.bip.v3.v2207.dao.IBipSupplierDao;
-import com.hzya.frame.bip.v3.v2207.entity.BipSupplierEntity;
-import com.hzya.frame.util.HttpUtil;
-import org.springframework.stereotype.Repository;
-
-import java.util.List;
-
-@Repository("bipSupplierDaoImpl")
-public class BipSupplierDaoImpl extends MybatisGenericDao implements IBipSupplierDao {
- /**
- * 查询BIP供应商
- * @param bipSupplierEntity
- * @return
- */
- @DS("oracle91")
- @Override
- public List thirdInterfaceGetSupplier(BipSupplierEntity bipSupplierEntity) {
- return super.query("com.hzya.frame.bip.v3.v2207.dao.impl.BipSupplierDaoImpl.thirdInterfaceGetSupplier",bipSupplierEntity);
- }
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipSupplierDetailsDaoImpl.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipSupplierDetailsDaoImpl.java
deleted file mode 100644
index 89443371..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dao/impl/BipSupplierDetailsDaoImpl.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dao.impl;
-
-import com.baomidou.dynamic.datasource.annotation.DS;
-import com.hzya.frame.basedao.dao.MybatisGenericDao;
-import com.hzya.frame.bip.v3.v2207.dao.IBipSupplierDao;
-import com.hzya.frame.bip.v3.v2207.dao.IBipSupplierDetailsDao;
-import com.hzya.frame.bip.v3.v2207.entity.BipSupplierDetailsEntity;
-import com.hzya.frame.bip.v3.v2207.entity.BipSupplierEntity;
-import org.springframework.stereotype.Repository;
-
-import java.util.List;
-
-@Repository("bipSupplierDetailsDaoImpl")
-public class BipSupplierDetailsDaoImpl extends MybatisGenericDao implements IBipSupplierDetailsDao {
- @DS("oracle91")
- @Override
- public List thirdInterfaceGetSupplierDetails(BipSupplierDetailsEntity bipSupplierDetailsEntity) {
- return super.query("com.hzya.frame.bip.v3.v2207.dao.impl.BipSupplierDetailsDaoImpl.thirdInterfaceGetSupplierDetails",bipSupplierDetailsEntity);
- }
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dps/service/IPayMentService.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dps/service/IPayMentService.java
deleted file mode 100644
index e94d59fe..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dps/service/IPayMentService.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dps.service;
-
-import com.alibaba.fastjson.JSONObject;
-
-
-public interface IPayMentService {
-
- /**
- *
- * @content 获取杭泰OA付款单传递CFS
- * @Param
- * @Return
- * @Author hecan
- * @Date 2023/10/16 11:59
- * **/
- String sendOAPayMentToCFS(JSONObject jsonObject,String type);
-
- /**
- *
- * @content 获取CFS登录校验码
- * @Param
- * @Return
- * @Author hecan
- * @Date 2023/10/16 13:37
- * **/
- String sendCFSToken(String name,String password);
-
- /**
- *
- * @content 获取杭泰OA报销单传递CFS
- * @Param
- * @Return
- * @Author hecan
- * @Date 2023/10/16 16:17
- * **/
- String sendExpenseToCFS(JSONObject jsonObject);
-
-}
diff --git a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dps/service/impl/PayMentServiceImpl.java b/service/src/main/java/com/hzya/frame/bip/v3/v2207/dps/service/impl/PayMentServiceImpl.java
deleted file mode 100644
index 1b9308a5..00000000
--- a/service/src/main/java/com/hzya/frame/bip/v3/v2207/dps/service/impl/PayMentServiceImpl.java
+++ /dev/null
@@ -1,389 +0,0 @@
-package com.hzya.frame.bip.v3.v2207.dps.service.impl;
-
-import cn.hutool.http.HttpRequest;
-import com.alibaba.fastjson.JSON;
-import com.alibaba.fastjson.JSONArray;
-import com.alibaba.fastjson.JSONObject;
-import com.hzya.frame.bip.v3.v2207.dps.service.IPayMentService;
-import com.hzya.frame.dateutil.DateUtil;
-import org.dom4j.Document;
-import org.dom4j.DocumentHelper;
-import org.dom4j.Element;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.stereotype.Service;
-import org.xml.sax.InputSource;
-
-import javax.xml.parsers.DocumentBuilder;
-import javax.xml.parsers.DocumentBuilderFactory;
-import java.io.StringReader;
-import java.math.BigDecimal;
-import java.util.Date;
-import java.util.List;
-
-
-@Service(value = "payMentServiceImpl")
-public class PayMentServiceImpl implements IPayMentService {
-
- private static final Logger logger = LoggerFactory.getLogger(PayMentServiceImpl.class);
-
- private static final String NAME="admin";
- private static final String PASSWORD="aHRzejg4OA==";
- private static final String CFSURL="http://101.132.140.208:26883/erp/services/";//测试端口:26893,正式端口:26883
-
- /**
- *
- * @content 杭泰OA付款单传递CFS 注:付款单,资金归集,资金拨付,同名账户划转和借款单都用同一个接口
- * @Param
- * @Return
- * @Author hecan
- * @Date 2023/10/13 10:40
- * **/
- public String sendOAPayMentToCFS(JSONObject jsonStr,String type){
- logger.info("开始执行杭泰OA付款单传递CFS");
- try {
- String cfsToken = sendCFSToken(NAME, PASSWORD);
- if(null!=cfsToken) {
- String jsonStrObj = jsonStr.getString("jsonStr");
- JSONObject jsonObjectMain = JSON.parseObject(jsonStrObj);
- String erpVoucherNo = jsonObjectMain.getString("erpVoucherNo");//OA主键
- String purpose = jsonObjectMain.getString("purpose");//摘要
- String isForindividual = "0";//是否对私付款
- StringBuffer stringBuffer = new StringBuffer();
- String documentType=null;
- switch (type){
- case "pay"://付款单
- documentType="01";
- break;
- case "fundc"://资金归集
- documentType="02";
- break;
- case "funda"://资金拨付
- documentType="03";
- break;
- case "acc"://同名账户划转
- documentType="04";
- break;
- case "loan"://借款单
- documentType="05";
- break;
- default:
- break;
- }
- JSONArray jsonStrList = jsonObjectMain.getJSONArray("details");
- if (null != jsonStrList && jsonStrList.size() > 0) {
- for (Object seeyonEntity : jsonStrList) {
- JSONObject jsonObjectFormson = JSON.parseObject(JSON.toJSONString(seeyonEntity));
- String payerAccName = jsonObjectFormson.getString("payerAccName");//转出方账户名(付款账户)
- String payerAccNo = jsonObjectFormson.getString("payerAccNo");//转出方账号(付款账号)
- String curCode = jsonObjectFormson.getString("curCode");//付款方币种
- String payeeAccName = jsonObjectFormson.getString("payeeAccName");//收款人帐户名称
- String payeeAccNo = jsonObjectFormson.getString("payeeAccNo");//收款方账户号
- BigDecimal amount = jsonObjectFormson.getBigDecimal("amount");//发生额
- String payeeBankCode = jsonObjectFormson.getString("payeeBankCode");//联行号
- String isQuick = jsonObjectFormson.getString("isQuick");//加急标志
- String payType = jsonObjectFormson.getString("payType");//结算方式
- String businessType = jsonObjectFormson.getString("businessType");//业务类别
- stringBuffer.append("\n");
- }
- } else {
- stringBuffer.append("\n");
- }
- String result=null;
- String xml= requestXML(cfsToken,"BkPaymentMainExchange",stringBuffer,"OA付款单同步发送");
- String url = "HTSZ_OA_BkPaymentMainWebService?wsdl";
- switch (type){
- case "pay"://付款单
- logger.info("OA付款单发送CFS的请求参数为:{}", xml);
- result = HttpRequest.post(CFSURL+url).header("Content-Type", "soap/xml").timeout(30000).body(xml).execute().body();
- logger.info("OA付款单发送CFS的返回参数为:{}", result);
- break;
- case "fundc"://资金归集
- logger.info("OA资金归集发送CFS的请求参数为:{}", xml);
- result = HttpRequest.post(CFSURL+url).header("Content-Type", "soap/xml").timeout(30000).body(xml).execute().body();
- logger.info("OA资金归集发送CFS的返回参数为:{}", result);
- break;
- case "funda"://资金调拨
- logger.info("OA资金拨付发送CFS的请求参数为:{}", xml);
- result = HttpRequest.post(CFSURL+url).header("Content-Type", "soap/xml").timeout(30000).body(xml).execute().body();
- logger.info("OA资金拨付发送CFS的返回参数为:{}", result);
- break;
- case "acc"://同名账户划转
- logger.info("OA同名账户划转发送CFS的请求参数为:{}", xml);
- result = HttpRequest.post(CFSURL+url).header("Content-Type", "soap/xml").timeout(30000).body(xml).execute().body();
- logger.info("OA同名账户划转发送CFS的返回参数为:{}", result);
- break;
- case "loan"://借款单
- logger.info("OA借还款发送CFS的请求参数为:{}", xml);
- result = HttpRequest.post(CFSURL+url).header("Content-Type", "soap/xml").timeout(30000).body(xml).execute().body();
- logger.info("OA借还款发送CFS的返回参数为:{}", result);
- break;
- default:
- break;
- }
- return analyzeXML(result,"pay");
- }else{
- logger.info("请先登录CFS登录接口获取Token");
- return null;
- }
- } catch (Exception e) {
- e.printStackTrace();
- logger.info("杭泰OA付款单传递CFS错误,原因为:{}", e.getMessage());
- }
- return null;
- }
-
- /**
- *
- * @content 获取CFS登录校验码
- * @Param
- * @Return
- * @Author hecan
- * @Date 2023/10/13 15:38
- * **/
- public String sendCFSToken(String name,String password) {
- try {
- String xml="\n" +
- " \n" +
- " \n" +
- " \n" +
- " \n" +
- " \n" +
- " \n" +
- "\n" +
- "\n" +
- "LogOn\n" +
- ""+DateUtil.dateToString(new Date(), "yyyy-MM-dd HH:mm:ss")+"\n" +
- "OA\n" +
- "CFS\n" +
- "OA登录验证发送\n" +
- "\n" +
- "\n" +
- ""+name+"\n" +
- ""+password+"\n" +
- "\n" +
- "\n" +
- " ]]>\n" +
- " \n" +
- " \n" +
- " \n" +
- "";
- logger.info("CFS登录的请求参数为:{}",xml);
- String url="HTSZ_OA_LogOnWebService?wsdl";
- String result = HttpRequest.post(CFSURL+url).header("Content-Type", "soap/xml").timeout(30000).body(xml).execute().body();
- logger.info("CFS登录的返回参数为:{}",result);
- return analyzeXML(result,"login");
- }catch (Exception e){
- e.printStackTrace();
- logger.info("获取CFS登录失败,原因为:{}",e.getMessage());
- }
- return null;
- }
-
- /**
- *
- * @content 获取杭泰OA报销单传递CFS
- * @Param
- * @Return
- * @Author hecan
- * @Date 2023/10/16 16:17
- * **/
- @Override
- public String sendExpenseToCFS(JSONObject jsonStr) {
- logger.info("开始执行杭泰OA报销单传递CFS");
- try {
- String token = sendCFSToken(NAME, PASSWORD);
- if(null != token){
- String jsonStrObj = jsonStr.getString("jsonStr");
- JSONObject jsonObjectMain = JSON.parseObject(jsonStrObj);
- String erpVoucherNo = jsonObjectMain.getString("erpVoucherNo");//OA主键
- String purpose = jsonObjectMain.getString("purpose");//摘要
- StringBuffer stringBuffer = new StringBuffer();
- JSONArray jsonStrList = jsonObjectMain.getJSONArray("details");
- if(null != jsonStrList && jsonStrList.size()>0){
- for (Object o : jsonStrList) {
- JSONObject jsonObjectDetails = JSON.parseObject(JSON.toJSONString(o));
- String payerAccName = jsonObjectDetails.getString("payerAccName");//转出方账户名(付款账户)
- String payerAccNo = jsonObjectDetails.getString("payerAccNo");//转出方账号(付款账号)
- String curCode = jsonObjectDetails.getString("curCode");//付款方币种
- String payeeAccName = jsonObjectDetails.getString("payeeAccName");//收款人帐户名称
- String payeeAccNo = jsonObjectDetails.getString("payeeAccNo");//收款方账户号
- BigDecimal amount = jsonObjectDetails.getBigDecimal("amount");//发生额
- String payeeBankCode = jsonObjectDetails.getString("payeeBankCode");//联行号
- String isQuick = jsonObjectDetails.getString("isQuick");//加急标志
- String payType = jsonObjectDetails.getString("payType");//结算方式
- stringBuffer.append("\n");
- }
- } else {
- stringBuffer.append("\n");
- }
- String xml= requestXML(token,"BkExpenseExchange",stringBuffer,"OA费用报销单同步发送");
- logger.info("OA报销单发送CFS的请求参数为:{}", xml);
- String url = "HTSZ_OA_BkExpenseWebService?wsdl";
- String result = HttpRequest.post(CFSURL+url).header("Content-Type", "soap/xml").timeout(30000).body(xml).execute().body();
- logger.info("OA报销单发送CFS的返回参数为:{}", result);
- return analyzeXML(result,"pay");
- }
- }catch (Exception e){
- logger.info("杭泰OA报销单传递CFS错误,原因为:{}", e.getMessage());
- }
- return null;
- }
-
- //null转成空字符串
- private static String nullConvert(String str){
- if (null == str){
- return "";
- }
- return str;
- }
-
- private String requestXML(String token,String code,StringBuffer stringBuffer,String remark){
- String xml = "\n" +
- " \n" +
- " \n" +
- " \n" +
- " \n" +
- " \n" +
- " \n" +
- "\n" +
- "\n" +
- "" + code + "\n" +
- "" + DateUtil.dateToString(new Date(), "yyyy-MM-dd HH:mm:ss") + "\n" +
- "OA\n" +
- "CFS\n" +
- "" + remark + "\n" +
- "" + token + "\n" +
- "\n" +
- "\n" +
- "\n";
- if (stringBuffer != null) {
- xml += stringBuffer.toString();
- xml += "
\n" +
- "\n" +
- "\n" +
- " ]]>\n" +
- " \n" +
- " \n" +
- " \n" +
- "";
- } else {
- xml += "\n" +
- "