Merge remote-tracking branch 'origin/yuecheng-project' into yuecheng-project
This commit is contained in:
commit
c9cd5e817b
|
@ -0,0 +1,111 @@
|
||||||
|
package com.hzya.frame.plugin.cbs8.plugin;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.hzya.frame.base.PluginBaseEntity;
|
||||||
|
import com.hzya.frame.cbs8.dto.req.AgentPayResultRequestDTO;
|
||||||
|
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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @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("");
|
||||||
|
AgentPayResultResDTO agentPayResultResDTO = cbsPluginService.agentPayResult(agentPayResultRequestDTO);
|
||||||
|
//更新OA表单
|
||||||
|
//记录日志
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,128 @@
|
||||||
|
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();
|
||||||
|
List<AgentPaymentEntity> agentPaymentList = agentPaymentService.queryUnpaid(agentPaymentEntity);
|
||||||
|
if (CollectionUtils.isNotEmpty(agentPaymentList)){
|
||||||
|
for (AgentPaymentEntity paymentEntity : agentPaymentList) {
|
||||||
|
AgentPaymentDetailEntity detailEntity = new AgentPaymentDetailEntity();
|
||||||
|
detailEntity.setFormmainId(paymentEntity.getId());
|
||||||
|
List<AgentPaymentDetailEntity> agentPaymentDetailList = agentPaymentService.queryDetails(detailEntity);
|
||||||
|
if (CollectionUtils.isNotEmpty(agentPaymentDetailList)){
|
||||||
|
//调用代发代扣接口
|
||||||
|
PayResponseDTO payResponseDTO = cbsPluginService.applyAgentPay(paymentEntity, agentPaymentDetailList);
|
||||||
|
//更新OA表单
|
||||||
|
//记录日志
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
|
@ -97,7 +97,7 @@ public class PayApplyPluginInitializer extends PluginBaseEntity {
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
|
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
|
||||||
//支付申请
|
//支付申请
|
||||||
// cbsPluginService.applyPay(requestJson);
|
//cbsPluginService.applyPay(requestJson);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,13 @@
|
||||||
package com.hzya.frame.plugin.cbs8.service;
|
package com.hzya.frame.plugin.cbs8.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
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.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.cbs8.dto.res.TransactionDetailDTO;
|
||||||
|
import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentDetailEntity;
|
||||||
|
import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentEntity;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -39,4 +44,18 @@ public interface ICbsPluginService {
|
||||||
* @param transactionDetailReqDTO
|
* @param transactionDetailReqDTO
|
||||||
*/
|
*/
|
||||||
List<TransactionDetailDTO> queryTransactionDetail(TransactionDetailReqDTO transactionDetailReqDTO);
|
List<TransactionDetailDTO> queryTransactionDetail(TransactionDetailReqDTO transactionDetailReqDTO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 支付申请
|
||||||
|
* @param paymentEntity
|
||||||
|
* @param agentPaymentDetailList
|
||||||
|
*/
|
||||||
|
PayResponseDTO applyAgentPay(AgentPaymentEntity paymentEntity, List<AgentPaymentDetailEntity> agentPaymentDetailList);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 结果详情查询
|
||||||
|
* @param agentPayResultRequestDTO
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
AgentPayResultResDTO agentPayResult(AgentPayResultRequestDTO agentPayResultRequestDTO);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
package com.hzya.frame.plugin.cbs8.service.impl;
|
package com.hzya.frame.plugin.cbs8.service.impl;
|
||||||
|
|
||||||
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
import cn.hutool.core.date.DateUtil;
|
import cn.hutool.core.date.DateUtil;
|
||||||
import cn.hutool.core.io.FileUtil;
|
import cn.hutool.core.io.FileUtil;
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import cn.hutool.http.HttpUtil;
|
import cn.hutool.http.HttpUtil;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.hzya.frame.cbs8.dto.req.ElecRequestDTO;
|
import com.hzya.frame.cbs8.dto.req.*;
|
||||||
import com.hzya.frame.cbs8.dto.req.PayResultRequestDTO;
|
|
||||||
import com.hzya.frame.cbs8.dto.req.TransactionDetailReqDTO;
|
|
||||||
import com.hzya.frame.cbs8.dto.res.*;
|
import com.hzya.frame.cbs8.dto.res.*;
|
||||||
import com.hzya.frame.cbs8.service.ICbs8Service;
|
import com.hzya.frame.cbs8.service.ICbs8Service;
|
||||||
import com.hzya.frame.cbs8.util.CBSUtil;
|
import com.hzya.frame.cbs8.util.CBSUtil;
|
||||||
import com.hzya.frame.cbs8.util.PayState;
|
import com.hzya.frame.cbs8.util.PayState;
|
||||||
import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
|
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.entity.CbsLogEntity;
|
import com.hzya.frame.seeyon.cbs8.entity.CbsLogEntity;
|
||||||
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
|
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
|
||||||
import com.hzya.frame.seeyon.cbs8.service.ICbsLogService;
|
import com.hzya.frame.seeyon.cbs8.service.ICbsLogService;
|
||||||
|
@ -22,6 +23,7 @@ import com.hzya.frame.seeyon.entity.CtpFileEntity;
|
||||||
import com.hzya.frame.seeyon.service.ICtpAttachmentService;
|
import com.hzya.frame.seeyon.service.ICtpAttachmentService;
|
||||||
import com.hzya.frame.seeyon.util.RestUtil;
|
import com.hzya.frame.seeyon.util.RestUtil;
|
||||||
import com.hzya.frame.uuid.UUIDLong;
|
import com.hzya.frame.uuid.UUIDLong;
|
||||||
|
import com.hzya.frame.web.exception.BaseSystemException;
|
||||||
import org.apache.commons.collections.CollectionUtils;
|
import org.apache.commons.collections.CollectionUtils;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
@ -49,6 +51,8 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
|
||||||
@Autowired
|
@Autowired
|
||||||
private ICtpAttachmentService ctpAttachmentService;
|
private ICtpAttachmentService ctpAttachmentService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private RestUtil restUtil;
|
||||||
@Value("${cbs8.elec_path}")
|
@Value("${cbs8.elec_path}")
|
||||||
private String elec_path;
|
private String elec_path;
|
||||||
@Value("${OA.data_source_code}")
|
@Value("${OA.data_source_code}")
|
||||||
|
@ -177,7 +181,7 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
|
||||||
CtpFileEntity cpFileEntity = new CtpFileEntity();
|
CtpFileEntity cpFileEntity = new CtpFileEntity();
|
||||||
cpFileEntity.setFile(file);
|
cpFileEntity.setFile(file);
|
||||||
cpFileEntity.setDataSourceCode(oa_data_source_code);
|
cpFileEntity.setDataSourceCode(oa_data_source_code);
|
||||||
JSONObject jsonObjectUpload = RestUtil.fileUpload(file,"8000240005");
|
JSONObject jsonObjectUpload = restUtil.fileUpload(file,"8000240005");
|
||||||
String file_url = jsonObjectUpload.getString("fileUrl");
|
String file_url = jsonObjectUpload.getString("fileUrl");
|
||||||
if (null != jsonObjectUpload && StrUtil.isNotEmpty(file_url)) {
|
if (null != jsonObjectUpload && StrUtil.isNotEmpty(file_url)) {
|
||||||
String sub_reference = String.valueOf(UUIDLong.longUUID());
|
String sub_reference = String.valueOf(UUIDLong.longUUID());
|
||||||
|
@ -232,4 +236,41 @@ public class CbsPluginServiceImpl implements ICbsPluginService {
|
||||||
|
|
||||||
return resultList;
|
return resultList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 支付申请
|
||||||
|
*
|
||||||
|
* @param paymentEntity
|
||||||
|
* @param agentPaymentDetailList
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public PayResponseDTO applyAgentPay(AgentPaymentEntity paymentEntity, List<AgentPaymentDetailEntity> agentPaymentDetailList) {
|
||||||
|
if (null != paymentEntity && CollectionUtils.isNotEmpty(agentPaymentDetailList)){
|
||||||
|
PaymentApplySubmitReqDTO paymentApplySubmitReqDTO = BeanUtil.copyProperties(paymentEntity,PaymentApplySubmitReqDTO.class);
|
||||||
|
List<PaymentApplyAgentDTO> paymentApplyAgentList = new ArrayList<>();
|
||||||
|
for (AgentPaymentDetailEntity detailEntity : agentPaymentDetailList) {
|
||||||
|
PaymentApplyAgentDTO detailDTO = BeanUtil.copyProperties(detailEntity,PaymentApplyAgentDTO.class);
|
||||||
|
paymentApplyAgentList.add(detailDTO);
|
||||||
|
}
|
||||||
|
PayResponseDTO payResponseDTO = cbs8Service.agentPayApply(paymentApplySubmitReqDTO,paymentApplyAgentList);
|
||||||
|
return payResponseDTO;
|
||||||
|
}else {
|
||||||
|
throw new BaseSystemException("参数不能为空");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 结果详情查询
|
||||||
|
*
|
||||||
|
* @param agentPayResultRequestDTO
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public AgentPayResultResDTO agentPayResult(AgentPayResultRequestDTO agentPayResultRequestDTO) {
|
||||||
|
if (null != agentPayResultRequestDTO && StrUtil.isNotEmpty(agentPayResultRequestDTO.getBusNum())){
|
||||||
|
AgentPayResultResDTO agentPayResultResDTO = cbs8Service.agentPayResult(agentPayResultRequestDTO);
|
||||||
|
return agentPayResultResDTO;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,436 @@
|
||||||
|
package com.hzya.frame.plugin.mdmDistribute.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.mdm.mdmModule.dao.IMdmModuleDao;
|
||||||
|
import com.hzya.frame.mdm.mdmModule.entity.MdmModuleEntity;
|
||||||
|
import com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity;
|
||||||
|
import com.hzya.frame.mdm.mdmModuleDbFileds.entity.MdmModuleDbFiledsEntity;
|
||||||
|
import com.hzya.frame.mdm.mdmModuleDbFiledsRule.dao.IMdmModuleDbFiledsRuleDao;
|
||||||
|
import com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity;
|
||||||
|
import com.hzya.frame.mdm.mdmModuleDistribute.dao.IMdmModuleDistributeDao;
|
||||||
|
import com.hzya.frame.mdm.mdmModuleDistribute.entity.MdmModuleDistributeEntity;
|
||||||
|
import com.hzya.frame.mdm.service.IMdmServiceCache;
|
||||||
|
import com.hzya.frame.sysnew.application.api.dao.ISysApplicationApiDao;
|
||||||
|
import com.hzya.frame.sysnew.application.api.entity.SysApplicationApiEntity;
|
||||||
|
import com.hzya.frame.sysnew.application.dao.ISysApplicationDao;
|
||||||
|
import com.hzya.frame.sysnew.application.entity.SysApplicationEntity;
|
||||||
|
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
|
||||||
|
import com.hzya.frame.sysnew.application.script.dao.ISysApplicationScriptDao;
|
||||||
|
import com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity;
|
||||||
|
import com.hzya.frame.sysnew.grovy.service.IGroovyIntegrationService;
|
||||||
|
import com.hzya.frame.sysnew.integtationTaskLivingDetails.dao.IIntegrationTaskLivingDetailsDao;
|
||||||
|
import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsEntity;
|
||||||
|
import com.hzya.frame.sysnew.integtationTaskLivingDetails.service.IIntegrationTaskLivingDetailsService;
|
||||||
|
import com.hzya.frame.sysnew.messageManageLog.entity.SysMessageManageLogEntity;
|
||||||
|
import com.hzya.frame.web.entity.BaseResult;
|
||||||
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
|
import org.apache.http.HttpEntity;
|
||||||
|
import org.apache.http.client.config.RequestConfig;
|
||||||
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||||
|
import org.apache.http.client.methods.HttpPost;
|
||||||
|
import org.apache.http.entity.ByteArrayEntity;
|
||||||
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
|
import org.apache.http.impl.client.HttpClientBuilder;
|
||||||
|
import org.apache.http.util.EntityUtils;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.lang.reflect.Method;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 主数据模版(MdmModule)表服务接口
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-06-18 10:33:32
|
||||||
|
*/
|
||||||
|
public class MdmModulePluginInitializer extends PluginBaseEntity {
|
||||||
|
Logger logger = LoggerFactory.getLogger(MdmModulePluginInitializer.class);
|
||||||
|
@Resource
|
||||||
|
private IIntegrationTaskLivingDetailsDao integrationTaskLivingDetailsDao;
|
||||||
|
@Resource
|
||||||
|
private IIntegrationTaskLivingDetailsService taskLivingDetailsService;
|
||||||
|
@Resource
|
||||||
|
private ISysApplicationApiDao sysApplicationApiDao;
|
||||||
|
@Resource
|
||||||
|
private ISysApplicationDao sysApplicationDao;
|
||||||
|
@Resource
|
||||||
|
private ISysApplicationScriptDao sysApplicationScriptDao;
|
||||||
|
@Resource
|
||||||
|
private IMdmModuleDistributeDao mdmModuleDistributeDao;
|
||||||
|
@Resource
|
||||||
|
private IGroovyIntegrationService groovyIntegrationService;
|
||||||
|
@Resource
|
||||||
|
private IMdmModuleDbFiledsRuleDao mdmModuleDbFiledsRuleDao;
|
||||||
|
@Resource
|
||||||
|
private IMdmModuleDao mdmModuleDao;
|
||||||
|
@Resource
|
||||||
|
private IMdmServiceCache mdmServiceCache;
|
||||||
|
|
||||||
|
@Value("${ax.url}")
|
||||||
|
private String url ;
|
||||||
|
|
||||||
|
//多线程请求加锁 HttpRequest 构造方法是静态的
|
||||||
|
private final Object lock = new Object();
|
||||||
|
@Override
|
||||||
|
public void initialize() {
|
||||||
|
logger.info(getPluginLabel() + "執行初始化方法initialize()");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void destroy() {
|
||||||
|
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getPluginId() {
|
||||||
|
return "MdmModulePlugin";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getPluginName() {
|
||||||
|
return "MdmModulePlugin插件";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getPluginLabel() {
|
||||||
|
return "MdmModulePlugin";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getPluginType() {
|
||||||
|
return "1";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity executeBusiness(JSONObject requestJson) {
|
||||||
|
try{
|
||||||
|
//重试方法
|
||||||
|
if (null != requestJson) {
|
||||||
|
//如果这个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());
|
||||||
|
Long mdmCode = jsonObject.getLong("mdmCode");//主数据编码
|
||||||
|
String documentRule = jsonObject.getString("documentRule");//行数据的单据规则编码
|
||||||
|
String distributeId = jsonObject.getString("distributeId");//发送表id
|
||||||
|
String type = jsonObject.getString("type");//发送类型,1、新增2、修改3、删除
|
||||||
|
if(mdmCode == null || documentRule == null || distributeId == null || type == null
|
||||||
|
|| "".equals(mdmCode) || "".equals(documentRule) || "".equals(distributeId) || "".equals(type)){
|
||||||
|
taskDetailEntity.setResult("系统保存参数错误");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("系统保存参数错误");
|
||||||
|
}
|
||||||
|
String apiId = null;
|
||||||
|
String scriptId = null;
|
||||||
|
//查找对应数据,组装数据发送
|
||||||
|
|
||||||
|
//获取主数据信息
|
||||||
|
MdmModuleEntity mdmModuleEntity = mdmServiceCache.getMdmModuleEntity(mdmCode);
|
||||||
|
if(mdmModuleEntity == null || mdmModuleEntity.getId() == null ){
|
||||||
|
taskDetailEntity.setResult("主数据不存在");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("主数据不存在");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//获取主数据db
|
||||||
|
MdmModuleDbEntity mdmModuleDbEntity = new MdmModuleDbEntity();
|
||||||
|
mdmModuleDbEntity.setMdmId(mdmModuleEntity.getId());
|
||||||
|
List<MdmModuleDbEntity> mdmModuleDbEntities = mdmServiceCache.queryMdmModuleDb(mdmModuleDbEntity);
|
||||||
|
if(mdmModuleDbEntities == null || mdmModuleDbEntities.size() == 0){
|
||||||
|
taskDetailEntity.setResult("主数据数据源不存在");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("主数据数据源不存在");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//获取分发表
|
||||||
|
//获取分发的接口
|
||||||
|
MdmModuleDistributeEntity mdmModuleDistributeEntity = mdmModuleDistributeDao.get(distributeId);
|
||||||
|
if(mdmModuleDistributeEntity == null || mdmModuleDistributeEntity.getId() == null ){
|
||||||
|
taskDetailEntity.setResult("分发不存在");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("分发不存在");
|
||||||
|
|
||||||
|
}
|
||||||
|
// 启用停用 0、停用
|
||||||
|
if("0".equals(mdmModuleDistributeEntity.getEnabledState())){
|
||||||
|
taskDetailEntity.setResult("分发已停用");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("分发已停用");
|
||||||
|
|
||||||
|
}
|
||||||
|
// 启用停用 0、停用
|
||||||
|
//if("1".equals(mdmModuleDistributeEntity.getEnabledType())){
|
||||||
|
// taskDetailEntity.setResult("分发为手动下发");
|
||||||
|
// taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
// return BaseResult.getFailureMessageEntity("分发为手动下发");
|
||||||
|
//}
|
||||||
|
//1、新增2、修改3、删除
|
||||||
|
if("1".equals(type)){
|
||||||
|
apiId = mdmModuleDistributeEntity.getAddApi();
|
||||||
|
scriptId = mdmModuleDistributeEntity.getAddScript();
|
||||||
|
}else if("2".equals(type)){
|
||||||
|
apiId = mdmModuleDistributeEntity.getUpdateApi();
|
||||||
|
scriptId = mdmModuleDistributeEntity.getUpdateScript();
|
||||||
|
|
||||||
|
}else if("3".equals(type)){
|
||||||
|
apiId = mdmModuleDistributeEntity.getDeleteApi();
|
||||||
|
scriptId = mdmModuleDistributeEntity.getDeleteScript();
|
||||||
|
}
|
||||||
|
if(apiId == null || "".equals(apiId)){
|
||||||
|
taskDetailEntity.setResult("分发接口未选择,请先选择");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("分发接口未选择,请先选择");
|
||||||
|
|
||||||
|
}
|
||||||
|
SysApplicationScriptEntity scriptEntity = null;
|
||||||
|
if(scriptId != null && !"".equals(scriptId)){
|
||||||
|
scriptEntity = sysApplicationScriptDao.get(scriptId);
|
||||||
|
if(scriptEntity == null || scriptEntity.getId() == null ){
|
||||||
|
taskDetailEntity.setResult("分发接口脚本不存在");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("分发接口脚本不存在");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
SysApplicationApiEntity apiEntity = sysApplicationApiDao.get(apiId);
|
||||||
|
if(apiEntity == null || apiEntity.getId() == null ){
|
||||||
|
taskDetailEntity.setResult("分发接口不存在");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("分发接口不存在");
|
||||||
|
|
||||||
|
}
|
||||||
|
SysApplicationEntity sysApplicationEntity = sysApplicationDao.get(apiEntity.getAppId());
|
||||||
|
if(sysApplicationEntity == null || sysApplicationEntity.getId() == null ){
|
||||||
|
taskDetailEntity.setResult("应用不存在");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("应用不存在");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//获取主数据db字段,以及字段的规则
|
||||||
|
MdmModuleDbFiledsEntity queryFild = new MdmModuleDbFiledsEntity();
|
||||||
|
queryFild.setMdmId(mdmModuleEntity.getId());
|
||||||
|
List<MdmModuleDbFiledsEntity> mdmModuleDbFiledsEntities = mdmServiceCache.queryMdmModuleDbFileds(queryFild);
|
||||||
|
MdmModuleDbFiledsRuleEntity queryFildRule = new MdmModuleDbFiledsRuleEntity();
|
||||||
|
queryFildRule.setMdmId(mdmModuleEntity.getId());
|
||||||
|
queryFildRule.setRuleCode("service");
|
||||||
|
List<MdmModuleDbFiledsRuleEntity> mdmModuleDbFiledsRuleEntities = mdmModuleDbFiledsRuleDao.queryBase(queryFildRule);
|
||||||
|
//获取主数据db对应的实体表的数据
|
||||||
|
JSONObject object = new JSONObject();
|
||||||
|
for (int i = 0; i < mdmModuleDbEntities.size(); i++) {
|
||||||
|
if("1".equals(mdmModuleDbEntities.get(i).getDbType())){
|
||||||
|
Map<String,String> map = new HashMap<>();
|
||||||
|
map.put("tableName",mdmModuleDbEntities.get(i).getDbName());
|
||||||
|
map.put("documentRule",documentRule);
|
||||||
|
object = mdmModuleDao.queryMdmST(map);
|
||||||
|
if(object.getString("id") == null || "".equals(object.getString("id")) ){
|
||||||
|
taskDetailEntity.setResult("当前数据不存在");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("当前数据不存在");
|
||||||
|
}
|
||||||
|
//查看主表是否有字段是关联的
|
||||||
|
if(mdmModuleDbFiledsRuleEntities != null && mdmModuleDbFiledsRuleEntities.size() > 0){
|
||||||
|
for (int i1 = 0; i1 < mdmModuleDbFiledsRuleEntities.size(); i1++) {
|
||||||
|
if(mdmModuleDbFiledsRuleEntities.get(i1).getDbId().equals(mdmModuleDbEntities.get(i).getId())){
|
||||||
|
if(mdmModuleDbFiledsEntities != null && mdmModuleDbFiledsEntities.size() > 0){
|
||||||
|
for (int i2 = 0; i2 < mdmModuleDbFiledsEntities.size(); i2++) {
|
||||||
|
if(mdmModuleDbFiledsRuleEntities.get(i1).getFiledId().equals(mdmModuleDbFiledsEntities.get(i2).getId())){
|
||||||
|
Map<String,String> mapDetail = new HashMap<>();
|
||||||
|
mapDetail.put("tableName",mdmModuleDbFiledsRuleEntities.get(i1).getRuleValue());
|
||||||
|
mapDetail.put("id",object.getString(mdmModuleDbFiledsEntities.get(i2).getEnName()));
|
||||||
|
JSONObject objectDetail = mdmModuleDao.queryMdmST(mapDetail);
|
||||||
|
object.put(mdmModuleDbFiledsEntities.get(i2).getEnName(),objectDetail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < mdmModuleDbEntities.size(); i++) {
|
||||||
|
if("2".equals(mdmModuleDbEntities.get(i).getDbType())){
|
||||||
|
Map<String,String> map = new HashMap<>();
|
||||||
|
map.put("tableName",mdmModuleDbEntities.get(i).getDbName());
|
||||||
|
map.put("formmainId",object.getString("id"));
|
||||||
|
List<JSONObject> detail = mdmModuleDao.queryMdmSTDetail(map);
|
||||||
|
//查看主表是否有字段是关联的
|
||||||
|
if(detail != null && detail.size() > 0){
|
||||||
|
if(mdmModuleDbFiledsRuleEntities != null && mdmModuleDbFiledsRuleEntities.size() > 0){
|
||||||
|
for (int i1 = 0; i1 < mdmModuleDbFiledsRuleEntities.size(); i1++) {
|
||||||
|
if(mdmModuleDbFiledsRuleEntities.get(i1).getDbId().equals(mdmModuleDbEntities.get(i).getId())){
|
||||||
|
if(mdmModuleDbFiledsEntities != null && mdmModuleDbFiledsEntities.size() > 0){
|
||||||
|
for (int i2 = 0; i2 < mdmModuleDbFiledsEntities.size(); i2++) {
|
||||||
|
if(mdmModuleDbFiledsRuleEntities.get(i1).getFiledId().equals(mdmModuleDbFiledsEntities.get(i2).getId())){
|
||||||
|
for (int i3 = 0; i3 < detail.size(); i3++) {
|
||||||
|
Map<String,String> mapDetail = new HashMap<>();
|
||||||
|
mapDetail.put("tableName",mdmModuleDbFiledsRuleEntities.get(i1).getRuleValue());
|
||||||
|
mapDetail.put("id",detail.get(i3).getString(mdmModuleDbFiledsEntities.get(i2).getEnName()));
|
||||||
|
JSONObject objectDetail = mdmModuleDao.queryMdmST(mapDetail);
|
||||||
|
detail.get(i3).put(mdmModuleDbFiledsEntities.get(i2).getEnName(),objectDetail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
object.put(mdmModuleDbEntities.get(i).getDbName(),detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//执行脚本
|
||||||
|
JSONObject groovy = new JSONObject();
|
||||||
|
JSONObject parameterJson = new JSONObject();
|
||||||
|
parameterJson.put("header",apiEntity.getHeaderIn());
|
||||||
|
parameterJson.put("body",apiEntity.getBodyIn());
|
||||||
|
parameterJson.put("query",apiEntity.getQueryIn());
|
||||||
|
parameterJson.put("data",object);
|
||||||
|
/** head */
|
||||||
|
Map<String, String> header = null;
|
||||||
|
/** query */
|
||||||
|
String querys = null;
|
||||||
|
/** body */
|
||||||
|
String bodys = object.toJSONString();
|
||||||
|
if(scriptEntity != null && scriptEntity.getId() != null ){
|
||||||
|
groovy.put("code",scriptEntity.getScriptCode());
|
||||||
|
groovy.put("className",scriptEntity.getClassName());
|
||||||
|
groovy.put("name",scriptEntity.getScriptName());
|
||||||
|
groovy.put("methodStr",scriptEntity.getScriptData());
|
||||||
|
groovy.put("parameterJson",parameterJson);
|
||||||
|
JSONObject groovyStr = new JSONObject();
|
||||||
|
groovyStr.put("jsonStr",groovy);
|
||||||
|
try {
|
||||||
|
SysExtensionApiEntity jsonResultEntity = groovyIntegrationService.groovyScriptExecution(groovy);
|
||||||
|
header = jsonResultEntity.getHeaders();
|
||||||
|
querys = jsonResultEntity.getQuerys();
|
||||||
|
bodys = jsonResultEntity.getBodys();
|
||||||
|
}catch (Exception e){
|
||||||
|
taskDetailEntity.setResult("分发脚本转换错误");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
//return BaseResult.getFailureMessageEntity("分发脚本转换错误");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Map<String, String> headers = new HashMap<>();
|
||||||
|
headers.put("publicKey","ZJYAWb7lhAUTYqekPkU+uHJv1/ObJxb7dT7sD8HPRDGAgyhCe7eDIk+3zDUT+v578prj");
|
||||||
|
headers.put("secretKey","fviZnLBsQUAGF8w8FSOdJi7XlIm/XAZclMxRagDLfTyJFlvnIBF3w66Hrpfzs8cYj3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=");
|
||||||
|
headers.put("appId",sysApplicationEntity.getAppId().toString());
|
||||||
|
headers.put("apiCode",apiEntity.getApiCode().toString());
|
||||||
|
if(header != null){
|
||||||
|
headers.putAll(header);
|
||||||
|
}
|
||||||
|
//组装数据发送
|
||||||
|
JsonResultEntity jsonResultEntity = sendData(apiEntity,headers,bodys,querys);
|
||||||
|
if(jsonResultEntity.isFlag()){
|
||||||
|
taskDetailEntity.setResult("发送成功");
|
||||||
|
taskLivingDetailsService.saveLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("发送成功");
|
||||||
|
}else {
|
||||||
|
taskDetailEntity.setResult("发送错误");
|
||||||
|
taskLivingDetailsService.updateLogFailToSuccess(taskDetailEntity);
|
||||||
|
return BaseResult.getFailureMessageEntity("发送错误");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
//执行正常下发
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logger.info("执行成功");
|
||||||
|
return BaseResult.getSuccessMessageEntity("执行成功");
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("执行失败{}",e.getMessage());
|
||||||
|
}
|
||||||
|
return BaseResult.getSuccessMessageEntity("执行成功");
|
||||||
|
}
|
||||||
|
|
||||||
|
private JsonResultEntity sendData(SysApplicationApiEntity applicationApiEntity, Map<String, String> headers ,String bodys ,String querys) {
|
||||||
|
StringBuffer urls = new StringBuffer(url);
|
||||||
|
if (querys != null) {
|
||||||
|
urls.append("?");
|
||||||
|
urls.append(querys);
|
||||||
|
}
|
||||||
|
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
|
||||||
|
// HttpClient
|
||||||
|
CloseableHttpClient closeableHttpClient = httpClientBuilder.disableCookieManagement().build();
|
||||||
|
HttpPost post = new HttpPost(urls.toString());
|
||||||
|
CloseableHttpResponse response = null;
|
||||||
|
|
||||||
|
RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(Integer.valueOf(applicationApiEntity.getTimeoutPeriod())).build();
|
||||||
|
post.setConfig(requestConfig);//设置请求参数【超时时间】
|
||||||
|
|
||||||
|
if (headers != null && headers.size() > 0) {
|
||||||
|
for (String key : headers.keySet()) {
|
||||||
|
post.setHeader(key, headers.get(key));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
StringBuilder body = new StringBuilder();
|
||||||
|
boolean flag = true;
|
||||||
|
try {
|
||||||
|
if (bodys != null && !"".equals(bodys)) {
|
||||||
|
ByteArrayEntity entity = new ByteArrayEntity(bodys.getBytes("UTF-8"));
|
||||||
|
entity.setContentType("application/json");
|
||||||
|
post.setEntity(entity);
|
||||||
|
}
|
||||||
|
response = closeableHttpClient.execute(post);
|
||||||
|
|
||||||
|
HttpEntity entity = response.getEntity();
|
||||||
|
synchronized (lock) {
|
||||||
|
body.append(EntityUtils.toString(entity,"UTF-8"));
|
||||||
|
}
|
||||||
|
flag = true;
|
||||||
|
logger.info("返回结果:" + body);
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("请求错误:" + e.getMessage());
|
||||||
|
body.append(e.getMessage());
|
||||||
|
flag = false;
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
// 关闭响应对象
|
||||||
|
if (response != null) {
|
||||||
|
response.close();
|
||||||
|
}
|
||||||
|
// 关闭响应对象
|
||||||
|
if (closeableHttpClient != null) {
|
||||||
|
closeableHttpClient.close();
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
if (flag) {
|
||||||
|
if (JSONUtil.isTypeJSON(body.toString())) {
|
||||||
|
JsonResultEntity jsonResultEntity = JSONObject.parseObject(body.toString(),JsonResultEntity.class);
|
||||||
|
if(jsonResultEntity.isFlag()){
|
||||||
|
return BaseResult.getSuccessMessageEntity("转发成功", body);
|
||||||
|
}else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", body);
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", body);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", body);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<plugin>
|
||||||
|
<id>MdmModulePlugin</id>
|
||||||
|
<name>MdmModulePlugin插件</name>
|
||||||
|
<category>90000001</category>
|
||||||
|
</plugin>
|
|
@ -0,0 +1,5 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
|
||||||
|
<beans default-autowire="byName">
|
||||||
|
<bean name="mdmModuleInitializer" class="com.hzya.frame.plugin.mdmDistribute.plugin.MdmModulePluginInitializer" />
|
||||||
|
</beans>
|
|
@ -0,0 +1,32 @@
|
||||||
|
package com.hzya.frame.cbs8.dto.req;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 代发代扣请求参数
|
||||||
|
* @Author xiangerlin
|
||||||
|
* @Date 2024/6/18 16:20
|
||||||
|
**/
|
||||||
|
public class AgentPayRequestDTO {
|
||||||
|
|
||||||
|
//代发表头
|
||||||
|
private PaymentApplySubmitReqDTO paymentApplySubmitReqDTO;
|
||||||
|
//代发明细
|
||||||
|
private List<PaymentApplyAgentDTO> paymentApplyAgentDTO;
|
||||||
|
|
||||||
|
public PaymentApplySubmitReqDTO getPaymentApplySubmitReqDTO() {
|
||||||
|
return paymentApplySubmitReqDTO;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPaymentApplySubmitReqDTO(PaymentApplySubmitReqDTO paymentApplySubmitReqDTO) {
|
||||||
|
this.paymentApplySubmitReqDTO = paymentApplySubmitReqDTO;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<PaymentApplyAgentDTO> getPaymentApplyAgentDTO() {
|
||||||
|
return paymentApplyAgentDTO;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPaymentApplyAgentDTO(List<PaymentApplyAgentDTO> paymentApplyAgentDTO) {
|
||||||
|
this.paymentApplyAgentDTO = paymentApplyAgentDTO;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
package com.hzya.frame.cbs8.dto.req;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 代发代扣详情查询请求参数
|
||||||
|
* @Author xiangerlin
|
||||||
|
* @Date 2024/6/18 17:40
|
||||||
|
**/
|
||||||
|
public class AgentPayResultRequestDTO {
|
||||||
|
|
||||||
|
//申请单编号。 代发代扣支付接口会返回这个单号的
|
||||||
|
private String busNum;
|
||||||
|
|
||||||
|
public String getBusNum() {
|
||||||
|
return busNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBusNum(String busNum) {
|
||||||
|
this.busNum = busNum;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,132 @@
|
||||||
|
package com.hzya.frame.cbs8.dto.req;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 代发代扣明细
|
||||||
|
* @Author xiangerlin
|
||||||
|
* @Date 2024/6/18 13:45
|
||||||
|
**/
|
||||||
|
public class PaymentApplyAgentDTO {
|
||||||
|
//每笔明细金额
|
||||||
|
private String dtlAmount;
|
||||||
|
//收款账号
|
||||||
|
private String dtlRevAccount;
|
||||||
|
//联行号 同行可不传,跨行必传
|
||||||
|
private String dtlCnapsCode;
|
||||||
|
//收款账户名称
|
||||||
|
private String dtlRevName;
|
||||||
|
//收款开户行 ,如果传的联行号能匹配到对应到开户行,cbs8会自动带出
|
||||||
|
private String dtlRevBankName;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//是否跨行 Y跨行 N同行
|
||||||
|
private String dtlBankFlag;
|
||||||
|
//明细用途
|
||||||
|
private String dtlPurpose;
|
||||||
|
//明细摘要
|
||||||
|
private String dtlRemark;
|
||||||
|
//收款账号银行号|地区码
|
||||||
|
private String dtlRevBankArea;
|
||||||
|
//收款开户地
|
||||||
|
private String dtlRevBankCity;
|
||||||
|
//明细序号,从1开始递增
|
||||||
|
private int dtlSeqNum;
|
||||||
|
//备用字段 一共6个
|
||||||
|
private String dtlExtend1;
|
||||||
|
|
||||||
|
public String getDtlAmount() {
|
||||||
|
return dtlAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlAmount(String dtlAmount) {
|
||||||
|
this.dtlAmount = dtlAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevAccount() {
|
||||||
|
return dtlRevAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevAccount(String dtlRevAccount) {
|
||||||
|
this.dtlRevAccount = dtlRevAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlCnapsCode() {
|
||||||
|
return dtlCnapsCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlCnapsCode(String dtlCnapsCode) {
|
||||||
|
this.dtlCnapsCode = dtlCnapsCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevName() {
|
||||||
|
return dtlRevName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevName(String dtlRevName) {
|
||||||
|
this.dtlRevName = dtlRevName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevBankName() {
|
||||||
|
return dtlRevBankName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevBankName(String dtlRevBankName) {
|
||||||
|
this.dtlRevBankName = dtlRevBankName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlBankFlag() {
|
||||||
|
return dtlBankFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlBankFlag(String dtlBankFlag) {
|
||||||
|
this.dtlBankFlag = dtlBankFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlPurpose() {
|
||||||
|
return dtlPurpose;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlPurpose(String dtlPurpose) {
|
||||||
|
this.dtlPurpose = dtlPurpose;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRemark() {
|
||||||
|
return dtlRemark;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRemark(String dtlRemark) {
|
||||||
|
this.dtlRemark = dtlRemark;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevBankArea() {
|
||||||
|
return dtlRevBankArea;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevBankArea(String dtlRevBankArea) {
|
||||||
|
this.dtlRevBankArea = dtlRevBankArea;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevBankCity() {
|
||||||
|
return dtlRevBankCity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevBankCity(String dtlRevBankCity) {
|
||||||
|
this.dtlRevBankCity = dtlRevBankCity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getDtlSeqNum() {
|
||||||
|
return dtlSeqNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlSeqNum(int dtlSeqNum) {
|
||||||
|
this.dtlSeqNum = dtlSeqNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlExtend1() {
|
||||||
|
return dtlExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlExtend1(String dtlExtend1) {
|
||||||
|
this.dtlExtend1 = dtlExtend1;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,182 @@
|
||||||
|
package com.hzya.frame.cbs8.dto.req;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 批量代发代扣 203代发 201代扣
|
||||||
|
* @Author xiangerlin
|
||||||
|
* @Date 2024/6/18 11:58
|
||||||
|
**/
|
||||||
|
public class PaymentApplySubmitReqDTO {
|
||||||
|
//业务参考号
|
||||||
|
private String referenceNum;
|
||||||
|
/**
|
||||||
|
* 业务类型
|
||||||
|
* 201-代扣
|
||||||
|
* 203-代发
|
||||||
|
* 代发工资传203
|
||||||
|
*/
|
||||||
|
private String busType;
|
||||||
|
//总金额 小数位2位
|
||||||
|
private String amount;
|
||||||
|
//币种
|
||||||
|
private String currency;
|
||||||
|
//付款账号
|
||||||
|
private String payAccount;
|
||||||
|
//用途
|
||||||
|
private String purpose;
|
||||||
|
// 以上是必填字段
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//备注
|
||||||
|
private String summary;
|
||||||
|
//期望支付时间
|
||||||
|
private String expectTime;
|
||||||
|
//公私标识 1对私 0对公
|
||||||
|
private String personalFlag;
|
||||||
|
//加急标志 1加急 0不加急
|
||||||
|
private String urgentTag;
|
||||||
|
//是否实时 1实时 0落地
|
||||||
|
private String realTimeTag;
|
||||||
|
/**
|
||||||
|
* 同城标志 0同城 1异地
|
||||||
|
* 收/付账号所属同一个城市为同城,否则为异地
|
||||||
|
*/
|
||||||
|
private String cityFlag;
|
||||||
|
//银行备用字段 一共8个
|
||||||
|
private String bankExtend1;
|
||||||
|
|
||||||
|
//客户备用字段1
|
||||||
|
private String erpExtend1;
|
||||||
|
//客户备用字段1
|
||||||
|
private String erpExtend2;
|
||||||
|
//客户备用字段1
|
||||||
|
private String erpExtend3;
|
||||||
|
|
||||||
|
public String getReferenceNum() {
|
||||||
|
return referenceNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReferenceNum(String referenceNum) {
|
||||||
|
this.referenceNum = referenceNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBusType() {
|
||||||
|
return busType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBusType(String busType) {
|
||||||
|
this.busType = busType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAmount() {
|
||||||
|
return amount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAmount(String amount) {
|
||||||
|
this.amount = amount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCurrency() {
|
||||||
|
return currency;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCurrency(String currency) {
|
||||||
|
this.currency = currency;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayAccount() {
|
||||||
|
return payAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayAccount(String payAccount) {
|
||||||
|
this.payAccount = payAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPurpose() {
|
||||||
|
return purpose;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPurpose(String purpose) {
|
||||||
|
this.purpose = purpose;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSummary() {
|
||||||
|
return summary;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSummary(String summary) {
|
||||||
|
this.summary = summary;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getExpectTime() {
|
||||||
|
return expectTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setExpectTime(String expectTime) {
|
||||||
|
this.expectTime = expectTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPersonalFlag() {
|
||||||
|
return personalFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPersonalFlag(String personalFlag) {
|
||||||
|
this.personalFlag = personalFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUrgentTag() {
|
||||||
|
return urgentTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUrgentTag(String urgentTag) {
|
||||||
|
this.urgentTag = urgentTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRealTimeTag() {
|
||||||
|
return realTimeTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRealTimeTag(String realTimeTag) {
|
||||||
|
this.realTimeTag = realTimeTag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCityFlag() {
|
||||||
|
return cityFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCityFlag(String cityFlag) {
|
||||||
|
this.cityFlag = cityFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBankExtend1() {
|
||||||
|
return bankExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBankExtend1(String bankExtend1) {
|
||||||
|
this.bankExtend1 = bankExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getErpExtend1() {
|
||||||
|
return erpExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setErpExtend1(String erpExtend1) {
|
||||||
|
this.erpExtend1 = erpExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getErpExtend2() {
|
||||||
|
return erpExtend2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setErpExtend2(String erpExtend2) {
|
||||||
|
this.erpExtend2 = erpExtend2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getErpExtend3() {
|
||||||
|
return erpExtend3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setErpExtend3(String erpExtend3) {
|
||||||
|
this.erpExtend3 = erpExtend3;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,280 @@
|
||||||
|
package com.hzya.frame.cbs8.dto.res;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 代发代扣查询详情
|
||||||
|
* @Author xiangerlin
|
||||||
|
* @Date 2024/6/19 09:02
|
||||||
|
**/
|
||||||
|
public class AgentPayQueryDTO {
|
||||||
|
// 申请单编号
|
||||||
|
private String busNum;
|
||||||
|
|
||||||
|
// 代发/代扣明细序号
|
||||||
|
private String dtlSeqNum;
|
||||||
|
|
||||||
|
// 金额
|
||||||
|
private String dtlAmount; // 考虑到金额计算精度,建议使用BigDecimal
|
||||||
|
|
||||||
|
// 收款人名称
|
||||||
|
private String dtlRevName;
|
||||||
|
|
||||||
|
// 收款人账号
|
||||||
|
private String dtlRevAccount;
|
||||||
|
|
||||||
|
// 收款人开户行
|
||||||
|
private String dtlRevBankName;
|
||||||
|
|
||||||
|
// 银行号
|
||||||
|
private String dtlBankNum;
|
||||||
|
|
||||||
|
// 联行号
|
||||||
|
private String dtlCnapsCode;
|
||||||
|
|
||||||
|
// 是否跨行(Y:开户行是招商银行。N:开户行是他行。为空默认为招行)
|
||||||
|
private String dtlBankFlag;
|
||||||
|
|
||||||
|
// 地区名称
|
||||||
|
private String dtlRevBankArea;
|
||||||
|
|
||||||
|
// 注释
|
||||||
|
private String dtlRemark;
|
||||||
|
|
||||||
|
// 状态
|
||||||
|
private String dtlStatus;
|
||||||
|
|
||||||
|
// 错误信息
|
||||||
|
private String dtlErrorMessage;
|
||||||
|
|
||||||
|
// 他行开户地
|
||||||
|
private String dtlRevBankCity;
|
||||||
|
|
||||||
|
// 备用字段1-6
|
||||||
|
private String dtlExtend1;
|
||||||
|
private String dtlExtend2;
|
||||||
|
private String dtlExtend3;
|
||||||
|
private String dtlExtend4;
|
||||||
|
private String dtlExtend5;
|
||||||
|
private String dtlExtend6;
|
||||||
|
|
||||||
|
// ERP备注1-3
|
||||||
|
private String dtlErpComment1;
|
||||||
|
private String dtlErpComment2;
|
||||||
|
private String dtlErpComment3;
|
||||||
|
|
||||||
|
// 用途
|
||||||
|
private String dtlPurpose;
|
||||||
|
|
||||||
|
// 银行支付时间
|
||||||
|
private String dtlPayTime;
|
||||||
|
|
||||||
|
// 实际扣款金额
|
||||||
|
private String dtlActualAmount;
|
||||||
|
|
||||||
|
public String getBusNum() {
|
||||||
|
return busNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBusNum(String busNum) {
|
||||||
|
this.busNum = busNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlSeqNum() {
|
||||||
|
return dtlSeqNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlSeqNum(String dtlSeqNum) {
|
||||||
|
this.dtlSeqNum = dtlSeqNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlAmount() {
|
||||||
|
return dtlAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlAmount(String dtlAmount) {
|
||||||
|
this.dtlAmount = dtlAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevName() {
|
||||||
|
return dtlRevName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevName(String dtlRevName) {
|
||||||
|
this.dtlRevName = dtlRevName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevAccount() {
|
||||||
|
return dtlRevAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevAccount(String dtlRevAccount) {
|
||||||
|
this.dtlRevAccount = dtlRevAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevBankName() {
|
||||||
|
return dtlRevBankName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevBankName(String dtlRevBankName) {
|
||||||
|
this.dtlRevBankName = dtlRevBankName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlBankNum() {
|
||||||
|
return dtlBankNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlBankNum(String dtlBankNum) {
|
||||||
|
this.dtlBankNum = dtlBankNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlCnapsCode() {
|
||||||
|
return dtlCnapsCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlCnapsCode(String dtlCnapsCode) {
|
||||||
|
this.dtlCnapsCode = dtlCnapsCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlBankFlag() {
|
||||||
|
return dtlBankFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlBankFlag(String dtlBankFlag) {
|
||||||
|
this.dtlBankFlag = dtlBankFlag;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevBankArea() {
|
||||||
|
return dtlRevBankArea;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevBankArea(String dtlRevBankArea) {
|
||||||
|
this.dtlRevBankArea = dtlRevBankArea;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRemark() {
|
||||||
|
return dtlRemark;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRemark(String dtlRemark) {
|
||||||
|
this.dtlRemark = dtlRemark;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlStatus() {
|
||||||
|
return dtlStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlStatus(String dtlStatus) {
|
||||||
|
this.dtlStatus = dtlStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlErrorMessage() {
|
||||||
|
return dtlErrorMessage;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlErrorMessage(String dtlErrorMessage) {
|
||||||
|
this.dtlErrorMessage = dtlErrorMessage;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlRevBankCity() {
|
||||||
|
return dtlRevBankCity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlRevBankCity(String dtlRevBankCity) {
|
||||||
|
this.dtlRevBankCity = dtlRevBankCity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlExtend1() {
|
||||||
|
return dtlExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlExtend1(String dtlExtend1) {
|
||||||
|
this.dtlExtend1 = dtlExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlExtend2() {
|
||||||
|
return dtlExtend2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlExtend2(String dtlExtend2) {
|
||||||
|
this.dtlExtend2 = dtlExtend2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlExtend3() {
|
||||||
|
return dtlExtend3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlExtend3(String dtlExtend3) {
|
||||||
|
this.dtlExtend3 = dtlExtend3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlExtend4() {
|
||||||
|
return dtlExtend4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlExtend4(String dtlExtend4) {
|
||||||
|
this.dtlExtend4 = dtlExtend4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlExtend5() {
|
||||||
|
return dtlExtend5;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlExtend5(String dtlExtend5) {
|
||||||
|
this.dtlExtend5 = dtlExtend5;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlExtend6() {
|
||||||
|
return dtlExtend6;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlExtend6(String dtlExtend6) {
|
||||||
|
this.dtlExtend6 = dtlExtend6;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlErpComment1() {
|
||||||
|
return dtlErpComment1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlErpComment1(String dtlErpComment1) {
|
||||||
|
this.dtlErpComment1 = dtlErpComment1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlErpComment2() {
|
||||||
|
return dtlErpComment2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlErpComment2(String dtlErpComment2) {
|
||||||
|
this.dtlErpComment2 = dtlErpComment2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlErpComment3() {
|
||||||
|
return dtlErpComment3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlErpComment3(String dtlErpComment3) {
|
||||||
|
this.dtlErpComment3 = dtlErpComment3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlPurpose() {
|
||||||
|
return dtlPurpose;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlPurpose(String dtlPurpose) {
|
||||||
|
this.dtlPurpose = dtlPurpose;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlPayTime() {
|
||||||
|
return dtlPayTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlPayTime(String dtlPayTime) {
|
||||||
|
this.dtlPayTime = dtlPayTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDtlActualAmount() {
|
||||||
|
return dtlActualAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDtlActualAmount(String dtlActualAmount) {
|
||||||
|
this.dtlActualAmount = dtlActualAmount;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,450 @@
|
||||||
|
package com.hzya.frame.cbs8.dto.res;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description 代发代扣 返回参数对象
|
||||||
|
* @Author xiangerlin
|
||||||
|
* @Date 2024/6/19 08:53
|
||||||
|
**/
|
||||||
|
public class AgentPayResultResDTO {
|
||||||
|
// 支付的业务类型
|
||||||
|
private String busType;
|
||||||
|
|
||||||
|
// 申请单编号
|
||||||
|
private String busNum;
|
||||||
|
|
||||||
|
// 付款账户
|
||||||
|
private String payAccount;
|
||||||
|
|
||||||
|
// 付款账户名称
|
||||||
|
private String payAccountName;
|
||||||
|
|
||||||
|
// 付款账户开户行
|
||||||
|
private String payBankName;
|
||||||
|
|
||||||
|
// 付款银行类型
|
||||||
|
private String payBankType;
|
||||||
|
|
||||||
|
// 币种
|
||||||
|
private String currency;
|
||||||
|
|
||||||
|
// 金额
|
||||||
|
private String amount;
|
||||||
|
|
||||||
|
// 收款账户
|
||||||
|
private String revAccount;
|
||||||
|
|
||||||
|
// 收款账户名称
|
||||||
|
private String revAccountName;
|
||||||
|
|
||||||
|
// 收款开户行
|
||||||
|
private String revBankName;
|
||||||
|
|
||||||
|
// 收款银行类型
|
||||||
|
private String revBankType;
|
||||||
|
|
||||||
|
// 收款人省
|
||||||
|
private String revProvince;
|
||||||
|
|
||||||
|
// 对账码集合(假设为String列表)
|
||||||
|
private List<String> checkCodeList;
|
||||||
|
|
||||||
|
// 收款人市
|
||||||
|
private String revCity;
|
||||||
|
|
||||||
|
// 支付渠道
|
||||||
|
private String payChannel;
|
||||||
|
|
||||||
|
// 付款单提示信息/银行返回信息
|
||||||
|
private String errorMsg;
|
||||||
|
|
||||||
|
// 支付申请状态
|
||||||
|
private String status;
|
||||||
|
|
||||||
|
// 经办人ID
|
||||||
|
private String createBy;
|
||||||
|
|
||||||
|
// 经办人名称
|
||||||
|
private String createByName;
|
||||||
|
|
||||||
|
// 用途
|
||||||
|
private String purpose;
|
||||||
|
|
||||||
|
// 摘要/备注
|
||||||
|
private String summary;
|
||||||
|
|
||||||
|
// 期望支付时间
|
||||||
|
private String expectTime;
|
||||||
|
|
||||||
|
// 支付时间
|
||||||
|
private String payDate;
|
||||||
|
|
||||||
|
// 支付状态
|
||||||
|
private String payStatus;
|
||||||
|
|
||||||
|
// 客户备用字段1
|
||||||
|
private String erpExtend1;
|
||||||
|
|
||||||
|
// 客户备用字段2
|
||||||
|
private String erpExtend2;
|
||||||
|
|
||||||
|
// 客户备用字段3
|
||||||
|
private String erpExtend3;
|
||||||
|
|
||||||
|
// 计划流水号
|
||||||
|
private String planNumber;
|
||||||
|
|
||||||
|
// 资金预算编号
|
||||||
|
private String planItemCode;
|
||||||
|
|
||||||
|
// 预算项名称
|
||||||
|
private String planItemName;
|
||||||
|
|
||||||
|
// 预算所属单位编码
|
||||||
|
private String planUnitCode;
|
||||||
|
|
||||||
|
// 预算所属单位名称
|
||||||
|
private String planUnitName;
|
||||||
|
|
||||||
|
// 单位编码(前端展示)
|
||||||
|
private String displayUnitCode;
|
||||||
|
|
||||||
|
// 预算单位编码(前端展示)
|
||||||
|
private String displayPlanUnitCode;
|
||||||
|
|
||||||
|
// 经办用户单位编码(前端展示)
|
||||||
|
private String displayOperaterOrgCode;
|
||||||
|
|
||||||
|
// 付方单位编码(前端展示)
|
||||||
|
private String displayPayOrgCode;
|
||||||
|
|
||||||
|
// 客商编号
|
||||||
|
private String revCustomerCode;
|
||||||
|
|
||||||
|
// 结算方式
|
||||||
|
private String payType;
|
||||||
|
|
||||||
|
//代发代扣详情
|
||||||
|
private List<AgentPayQueryDTO> agentDetails;
|
||||||
|
|
||||||
|
public String getBusType() {
|
||||||
|
return busType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBusType(String busType) {
|
||||||
|
this.busType = busType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBusNum() {
|
||||||
|
return busNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBusNum(String busNum) {
|
||||||
|
this.busNum = busNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayAccount() {
|
||||||
|
return payAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayAccount(String payAccount) {
|
||||||
|
this.payAccount = payAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayAccountName() {
|
||||||
|
return payAccountName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayAccountName(String payAccountName) {
|
||||||
|
this.payAccountName = payAccountName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayBankName() {
|
||||||
|
return payBankName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayBankName(String payBankName) {
|
||||||
|
this.payBankName = payBankName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayBankType() {
|
||||||
|
return payBankType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayBankType(String payBankType) {
|
||||||
|
this.payBankType = payBankType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCurrency() {
|
||||||
|
return currency;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCurrency(String currency) {
|
||||||
|
this.currency = currency;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAmount() {
|
||||||
|
return amount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAmount(String amount) {
|
||||||
|
this.amount = amount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRevAccount() {
|
||||||
|
return revAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRevAccount(String revAccount) {
|
||||||
|
this.revAccount = revAccount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRevAccountName() {
|
||||||
|
return revAccountName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRevAccountName(String revAccountName) {
|
||||||
|
this.revAccountName = revAccountName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRevBankName() {
|
||||||
|
return revBankName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRevBankName(String revBankName) {
|
||||||
|
this.revBankName = revBankName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRevBankType() {
|
||||||
|
return revBankType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRevBankType(String revBankType) {
|
||||||
|
this.revBankType = revBankType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRevProvince() {
|
||||||
|
return revProvince;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRevProvince(String revProvince) {
|
||||||
|
this.revProvince = revProvince;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> getCheckCodeList() {
|
||||||
|
return checkCodeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCheckCodeList(List<String> checkCodeList) {
|
||||||
|
this.checkCodeList = checkCodeList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRevCity() {
|
||||||
|
return revCity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRevCity(String revCity) {
|
||||||
|
this.revCity = revCity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayChannel() {
|
||||||
|
return payChannel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayChannel(String payChannel) {
|
||||||
|
this.payChannel = payChannel;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getErrorMsg() {
|
||||||
|
return errorMsg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setErrorMsg(String errorMsg) {
|
||||||
|
this.errorMsg = errorMsg;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStatus() {
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStatus(String status) {
|
||||||
|
this.status = status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCreateBy() {
|
||||||
|
return createBy;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCreateBy(String createBy) {
|
||||||
|
this.createBy = createBy;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCreateByName() {
|
||||||
|
return createByName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCreateByName(String createByName) {
|
||||||
|
this.createByName = createByName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPurpose() {
|
||||||
|
return purpose;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPurpose(String purpose) {
|
||||||
|
this.purpose = purpose;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSummary() {
|
||||||
|
return summary;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSummary(String summary) {
|
||||||
|
this.summary = summary;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getExpectTime() {
|
||||||
|
return expectTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setExpectTime(String expectTime) {
|
||||||
|
this.expectTime = expectTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayDate() {
|
||||||
|
return payDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayDate(String payDate) {
|
||||||
|
this.payDate = payDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayStatus() {
|
||||||
|
return payStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayStatus(String payStatus) {
|
||||||
|
this.payStatus = payStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getErpExtend1() {
|
||||||
|
return erpExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setErpExtend1(String erpExtend1) {
|
||||||
|
this.erpExtend1 = erpExtend1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getErpExtend2() {
|
||||||
|
return erpExtend2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setErpExtend2(String erpExtend2) {
|
||||||
|
this.erpExtend2 = erpExtend2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getErpExtend3() {
|
||||||
|
return erpExtend3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setErpExtend3(String erpExtend3) {
|
||||||
|
this.erpExtend3 = erpExtend3;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlanNumber() {
|
||||||
|
return planNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlanNumber(String planNumber) {
|
||||||
|
this.planNumber = planNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlanItemCode() {
|
||||||
|
return planItemCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlanItemCode(String planItemCode) {
|
||||||
|
this.planItemCode = planItemCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlanItemName() {
|
||||||
|
return planItemName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlanItemName(String planItemName) {
|
||||||
|
this.planItemName = planItemName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlanUnitCode() {
|
||||||
|
return planUnitCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlanUnitCode(String planUnitCode) {
|
||||||
|
this.planUnitCode = planUnitCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPlanUnitName() {
|
||||||
|
return planUnitName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPlanUnitName(String planUnitName) {
|
||||||
|
this.planUnitName = planUnitName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDisplayUnitCode() {
|
||||||
|
return displayUnitCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDisplayUnitCode(String displayUnitCode) {
|
||||||
|
this.displayUnitCode = displayUnitCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDisplayPlanUnitCode() {
|
||||||
|
return displayPlanUnitCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDisplayPlanUnitCode(String displayPlanUnitCode) {
|
||||||
|
this.displayPlanUnitCode = displayPlanUnitCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDisplayOperaterOrgCode() {
|
||||||
|
return displayOperaterOrgCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDisplayOperaterOrgCode(String displayOperaterOrgCode) {
|
||||||
|
this.displayOperaterOrgCode = displayOperaterOrgCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDisplayPayOrgCode() {
|
||||||
|
return displayPayOrgCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDisplayPayOrgCode(String displayPayOrgCode) {
|
||||||
|
this.displayPayOrgCode = displayPayOrgCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRevCustomerCode() {
|
||||||
|
return revCustomerCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setRevCustomerCode(String revCustomerCode) {
|
||||||
|
this.revCustomerCode = revCustomerCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPayType() {
|
||||||
|
return payType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPayType(String payType) {
|
||||||
|
this.payType = payType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<AgentPayQueryDTO> getAgentDetails() {
|
||||||
|
return agentDetails;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAgentDetails(List<AgentPayQueryDTO> agentDetails) {
|
||||||
|
this.agentDetails = agentDetails;
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,7 +5,7 @@ package com.hzya.frame.cbs8.dto.res;
|
||||||
* @Author xiangerlin
|
* @Author xiangerlin
|
||||||
* @Date 2023/12/29 16:40
|
* @Date 2023/12/29 16:40
|
||||||
**/
|
**/
|
||||||
public class TransactionDetailDTO extends TransactionResParentDTO{
|
public class TransactionDetailDTO{
|
||||||
private String accountNo;//银行账号
|
private String accountNo;//银行账号
|
||||||
private String accountName;//银行名称
|
private String accountName;//银行名称
|
||||||
private String bankType;//银行类型
|
private String bankType;//银行类型
|
||||||
|
|
|
@ -16,6 +16,13 @@ public interface ICbs8ExtService {
|
||||||
*/
|
*/
|
||||||
SysExtensionApiEntity payApply(SysExtensionApiEntity entity);
|
SysExtensionApiEntity payApply(SysExtensionApiEntity entity);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 支付申请
|
||||||
|
* @param entity
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
SysExtensionApiEntity agentPayApply(SysExtensionApiEntity entity);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 交易结果查询
|
* 交易结果查询
|
||||||
* @param entity
|
* @param entity
|
||||||
|
@ -49,4 +56,5 @@ public interface ICbs8ExtService {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
SysExtensionApiEntity elecQuery(SysExtensionApiEntity entity);
|
SysExtensionApiEntity elecQuery(SysExtensionApiEntity entity);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
package com.hzya.frame.cbs8.service;
|
package com.hzya.frame.cbs8.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.hzya.frame.cbs8.dto.req.ElecRequestDTO;
|
import com.hzya.frame.cbs8.dto.req.*;
|
||||||
import com.hzya.frame.cbs8.dto.req.PayResultRequestDTO;
|
|
||||||
import com.hzya.frame.cbs8.dto.req.TransactionDetailReqDTO;
|
|
||||||
import com.hzya.frame.cbs8.dto.res.*;
|
import com.hzya.frame.cbs8.dto.res.*;
|
||||||
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
|
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
|
||||||
|
|
||||||
|
@ -50,4 +48,19 @@ public interface ICbs8Service {
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
CbsResDataDTO queryTransactionDetail(TransactionDetailReqDTO transactionDetailReqDTO);
|
CbsResDataDTO queryTransactionDetail(TransactionDetailReqDTO transactionDetailReqDTO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 支付申请
|
||||||
|
* @param paymentApplySubmitReqDTO
|
||||||
|
* @param paymentApplyAgentList
|
||||||
|
*/
|
||||||
|
PayResponseDTO agentPayApply(PaymentApplySubmitReqDTO paymentApplySubmitReqDTO, List<PaymentApplyAgentDTO> paymentApplyAgentList);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 详情查询
|
||||||
|
* @param agentPayResultRequestDTO
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
AgentPayResultResDTO agentPayResult(AgentPayResultRequestDTO agentPayResultRequestDTO);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,14 +4,10 @@ import cn.hutool.core.convert.Convert;
|
||||||
import cn.hutool.core.util.StrUtil;
|
import cn.hutool.core.util.StrUtil;
|
||||||
import cn.hutool.http.HttpRequest;
|
import cn.hutool.http.HttpRequest;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.hzya.frame.cbs8.dto.req.ElecRequestDTO;
|
import com.hzya.frame.cbs8.dto.req.*;
|
||||||
import com.hzya.frame.cbs8.dto.req.PayRequestDTO;
|
|
||||||
import com.hzya.frame.cbs8.dto.req.PayResultRequestDTO;
|
|
||||||
import com.hzya.frame.cbs8.dto.req.TransactionDetailReqDTO;
|
|
||||||
import com.hzya.frame.cbs8.service.ICbs8ExtService;
|
import com.hzya.frame.cbs8.service.ICbs8ExtService;
|
||||||
import com.hzya.frame.cbs8.util.CBSUtil;
|
import com.hzya.frame.cbs8.util.CBSUtil;
|
||||||
import com.hzya.frame.cbs8.util.CbsAccessToken;
|
import com.hzya.frame.cbs8.util.CbsAccessToken;
|
||||||
import com.hzya.frame.cbs8.util.SM2Util;
|
|
||||||
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
|
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
|
||||||
import com.hzya.frame.stringutil.StringUtil;
|
import com.hzya.frame.stringutil.StringUtil;
|
||||||
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
|
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
|
||||||
|
@ -65,26 +61,31 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
||||||
payRequestDTO.setPayAccount(null);
|
payRequestDTO.setPayAccount(null);
|
||||||
}
|
}
|
||||||
String requestData = JSONObject.toJSONString(payRequestDTO);
|
String requestData = JSONObject.toJSONString(payRequestDTO);
|
||||||
//签名
|
//加密 签名
|
||||||
long timestamp = System.currentTimeMillis();
|
encrypAndsign(entity,requestData);
|
||||||
String sign = CBSUtil.sign(requestData,timestamp);
|
|
||||||
//加密
|
|
||||||
byte[] encryptedData = CBSUtil.encrypt(requestData);
|
|
||||||
Map<String,String> 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());
|
|
||||||
entity.setBodys(Base64.getEncoder().encodeToString(encryptedData));
|
|
||||||
entity.setHeaders(header);
|
|
||||||
|
|
||||||
String body = HttpRequest.post("https://cbs8-openapi-reprd.csuat.cmburl.cn/openapi/payment/openapi/v1/payment-apply-common").addHeaders(header).body(encryptedData).execute().body();
|
|
||||||
System.out.println(body);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 支付申请
|
||||||
|
*
|
||||||
|
* @param entity
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public SysExtensionApiEntity agentPayApply(SysExtensionApiEntity entity) {
|
||||||
|
String boyds = entity.getBodys();
|
||||||
|
if (StrUtil.isNotEmpty(boyds)){
|
||||||
|
AgentPayRequestDTO agentPayRequest = JSONObject.parseObject(boyds,AgentPayRequestDTO.class);
|
||||||
|
String requestData = JSONObject.toJSONString(agentPayRequest);
|
||||||
|
//加密签名
|
||||||
|
encrypAndsign(entity, requestData);
|
||||||
|
}
|
||||||
|
return entity;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 交易结果查询
|
* 交易结果查询
|
||||||
*
|
*
|
||||||
|
@ -98,17 +99,8 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
||||||
PayResultRequestDTO payResultRequest = JSONObject.parseObject(bodys,PayResultRequestDTO.class);
|
PayResultRequestDTO payResultRequest = JSONObject.parseObject(bodys,PayResultRequestDTO.class);
|
||||||
if (null != payResultRequest && StrUtil.isNotEmpty(payResultRequest.getReferenceNum())){
|
if (null != payResultRequest && StrUtil.isNotEmpty(payResultRequest.getReferenceNum())){
|
||||||
String requestData = JSONObject.toJSONString(payResultRequest);
|
String requestData = JSONObject.toJSONString(payResultRequest);
|
||||||
//签名
|
//加密 签名
|
||||||
long timestamp = System.currentTimeMillis();
|
encrypAndsign(entity,requestData);
|
||||||
String sign = CBSUtil.sign(requestData,timestamp);
|
|
||||||
//加密
|
|
||||||
byte[] encryptedData = CBSUtil.encrypt(requestData);
|
|
||||||
Map<String,String> header = getHeaders(sign,timestamp);
|
|
||||||
entity.setBodys(Base64.getEncoder().encodeToString(encryptedData));
|
|
||||||
entity.setHeaders(header);
|
|
||||||
byte[] bodyBytes = HttpRequest.post("https://cbs8-openapi-reprd.csuat.cmburl.cn/openapi/payment/openapi/v2/detail").addHeaders(header).body(encryptedData).execute().bodyBytes();
|
|
||||||
//解密报文
|
|
||||||
String decrypt = CBSUtil.decrypt(bodyBytes);
|
|
||||||
}else {
|
}else {
|
||||||
throw new BaseSystemException("业务参考号不能为空!!!!");
|
throw new BaseSystemException("业务参考号不能为空!!!!");
|
||||||
}
|
}
|
||||||
|
@ -128,14 +120,8 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
||||||
if (StrUtil.isEmpty(bodys)){
|
if (StrUtil.isEmpty(bodys)){
|
||||||
TransactionDetailReqDTO transactionDetailReqDTO = JSONObject.parseObject(bodys,TransactionDetailReqDTO.class);
|
TransactionDetailReqDTO transactionDetailReqDTO = JSONObject.parseObject(bodys,TransactionDetailReqDTO.class);
|
||||||
String requestData = JSONObject.toJSONString(transactionDetailReqDTO);
|
String requestData = JSONObject.toJSONString(transactionDetailReqDTO);
|
||||||
//签名
|
////加密签名
|
||||||
long timestamp = System.currentTimeMillis();
|
encrypAndsign(entity, requestData);
|
||||||
String sign = CBSUtil.sign(requestData,timestamp);
|
|
||||||
//加密
|
|
||||||
byte[] encryptedData = CBSUtil.encrypt(requestData);
|
|
||||||
Map<String,String> header = getHeaders(sign,timestamp);
|
|
||||||
entity.setBodys(Base64.getEncoder().encodeToString(encryptedData));
|
|
||||||
entity.setHeaders(header);
|
|
||||||
}
|
}
|
||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
@ -148,9 +134,18 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public SysExtensionApiEntity payApplyAgent(SysExtensionApiEntity entity) {
|
public SysExtensionApiEntity payApplyAgent(SysExtensionApiEntity entity) {
|
||||||
return null;
|
String bodys = entity.getBodys();
|
||||||
|
if (StrUtil.isNotEmpty(bodys)){
|
||||||
|
AgentPayRequestDTO agentPayRequest = JSONObject.parseObject(bodys,AgentPayRequestDTO.class);
|
||||||
|
String requestData = JSONObject.toJSONString(agentPayRequest);
|
||||||
|
////加密签名
|
||||||
|
encrypAndsign(entity, requestData);
|
||||||
|
}
|
||||||
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 代发代扣结果查询
|
* 代发代扣结果查询
|
||||||
*
|
*
|
||||||
|
@ -159,7 +154,13 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public SysExtensionApiEntity payApplyAgentResult(SysExtensionApiEntity entity) {
|
public SysExtensionApiEntity payApplyAgentResult(SysExtensionApiEntity entity) {
|
||||||
return null;
|
String bodys = entity.getBodys();
|
||||||
|
if (StrUtil.isNotEmpty(bodys)){
|
||||||
|
AgentPayResultRequestDTO agentPayResultRequestDTO = JSONObject.parseObject(bodys,AgentPayResultRequestDTO.class);
|
||||||
|
String requestData = JSONObject.toJSONString(agentPayResultRequestDTO);
|
||||||
|
encrypAndsign(entity,requestData);
|
||||||
|
}
|
||||||
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -174,25 +175,20 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
||||||
if (StrUtil.isNotEmpty(bodys)){
|
if (StrUtil.isNotEmpty(bodys)){
|
||||||
ElecRequestDTO elecRequestDTO = JSONObject.parseObject(bodys,ElecRequestDTO.class);
|
ElecRequestDTO elecRequestDTO = JSONObject.parseObject(bodys,ElecRequestDTO.class);
|
||||||
String requestData = JSONObject.toJSONString(elecRequestDTO);
|
String requestData = JSONObject.toJSONString(elecRequestDTO);
|
||||||
//签名
|
//加密 签名
|
||||||
long timestamp = System.currentTimeMillis();
|
encrypAndsign(entity,requestData);
|
||||||
String sign = CBSUtil.sign(requestData,timestamp);
|
|
||||||
//加密
|
|
||||||
byte[] encryptedData = CBSUtil.encrypt(requestData);
|
|
||||||
Map<String,String> header = getHeaders(sign,timestamp);
|
|
||||||
entity.setBodys(Base64.getEncoder().encodeToString(encryptedData));
|
|
||||||
entity.setHeaders(header);
|
|
||||||
byte[] bodyBytes = HttpRequest.post("https://cbs8-openapi-reprd.csuat.cmburl.cn/openapi/account/openapi/v1/electronic-bill/query").addHeaders(header).body(encryptedData).execute().bodyBytes();
|
|
||||||
//解密报文
|
|
||||||
String decrypt = CBSUtil.decrypt(bodyBytes);
|
|
||||||
System.out.println(decrypt);
|
|
||||||
}
|
}
|
||||||
return entity;
|
return entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
private Map<String,String> getHeaders(String sign,long timestamp){
|
* 请求头
|
||||||
|
* @param sign
|
||||||
|
* @param timestamp
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private Map<String,String> headersValueOf(String sign, long timestamp){
|
||||||
Map<String,String> header = new HashMap();
|
Map<String,String> header = new HashMap();
|
||||||
header.put(CBSUtil.SIGN_HEADER_NAME,sign);
|
header.put(CBSUtil.SIGN_HEADER_NAME,sign);
|
||||||
header.put(CBSUtil.TIMESTAMP_HEADER,Long.toString(timestamp));
|
header.put(CBSUtil.TIMESTAMP_HEADER,Long.toString(timestamp));
|
||||||
|
@ -200,4 +196,20 @@ public class Cbs8ExtServiceImpl implements ICbs8ExtService {
|
||||||
header.put(CBSUtil.AUTHORIZATION,CBSUtil.BEARER+ CbsAccessToken.getToken());
|
header.put(CBSUtil.AUTHORIZATION,CBSUtil.BEARER+ CbsAccessToken.getToken());
|
||||||
return header;
|
return header;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 加密 签名
|
||||||
|
* @param entity 接口转发参数对象
|
||||||
|
* @param requestData 请求参数json字符串
|
||||||
|
*/
|
||||||
|
private void encrypAndsign(SysExtensionApiEntity entity, String requestData) {
|
||||||
|
//签名
|
||||||
|
long timestamp = System.currentTimeMillis();
|
||||||
|
String sign = CBSUtil.sign(requestData,timestamp);
|
||||||
|
//加密
|
||||||
|
byte[] encryptedData = CBSUtil.encrypt(requestData);
|
||||||
|
Map<String,String> header = headersValueOf(sign,timestamp);
|
||||||
|
entity.setBodys(Base64.getEncoder().encodeToString(encryptedData));
|
||||||
|
entity.setHeaders(header);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,19 +7,19 @@ import cn.hutool.http.HttpRequest;
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.alibaba.fastjson.serializer.SerializerFeature;
|
import com.alibaba.fastjson.serializer.SerializerFeature;
|
||||||
import com.hzya.frame.cbs8.dto.req.ElecRequestDTO;
|
import com.hzya.frame.cbs8.dto.req.*;
|
||||||
import com.hzya.frame.cbs8.dto.req.PayResultRequestDTO;
|
|
||||||
import com.hzya.frame.cbs8.dto.req.TransactionDetailReqDTO;
|
|
||||||
import com.hzya.frame.cbs8.dto.res.*;
|
import com.hzya.frame.cbs8.dto.res.*;
|
||||||
import com.hzya.frame.cbs8.service.ICbs8Service;
|
import com.hzya.frame.cbs8.service.ICbs8Service;
|
||||||
import com.hzya.frame.cbs8.util.CBSUtil;
|
import com.hzya.frame.cbs8.util.CBSUtil;
|
||||||
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
|
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
|
||||||
import com.hzya.frame.seeyon.cbs8.service.IPaymentService;
|
import com.hzya.frame.seeyon.cbs8.service.IPaymentService;
|
||||||
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
import org.apache.commons.collections.CollectionUtils;
|
import org.apache.commons.collections.CollectionUtils;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
import java.util.Base64;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
@ -41,8 +41,10 @@ public class Cbs8ServiceImpl implements ICbs8Service {
|
||||||
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
||||||
.put("appId","800026")
|
.put("appId","800026")
|
||||||
.build();
|
.build();
|
||||||
String body = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface").addHeaders(headerMap).body(JSONObject.toJSONString(paymentEntity)).timeout(60000).execute().body();
|
String body = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterfaceToESB").addHeaders(headerMap).body(JSONObject.toJSONString(paymentEntity)).timeout(60000).execute().body();
|
||||||
PayResponseDTO payResponseDTO = JSONObject.parseObject(body,PayResponseDTO.class);
|
//解密响应报文
|
||||||
|
String result = decryptResBody(body);
|
||||||
|
PayResponseDTO payResponseDTO = JSONObject.parseObject(result,PayResponseDTO.class);
|
||||||
return payResponseDTO;
|
return payResponseDTO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,14 +63,13 @@ public class Cbs8ServiceImpl implements ICbs8Service {
|
||||||
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
||||||
.put("appId","800026")
|
.put("appId","800026")
|
||||||
.build();
|
.build();
|
||||||
String body = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface").addHeaders(headerMap).body(JSONObject.toJSONString(resultRequestDTO)).timeout(60000).execute().body();
|
String body = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterfaceToESB").addHeaders(headerMap).body(JSONObject.toJSONString(resultRequestDTO)).timeout(60000).execute().body();
|
||||||
if (StrUtil.isEmpty(body)){
|
String result = decryptResBody(body);
|
||||||
CbsResponseDTO cbsResponseDTO = JSONObject.parseObject(body, CbsResponseDTO.class);
|
CbsResponseDTO cbsResponseDTO = JSONObject.parseObject(result, CbsResponseDTO.class);
|
||||||
if (CollectionUtils.isNotEmpty(cbsResponseDTO.getData())){
|
if (CollectionUtils.isNotEmpty(cbsResponseDTO.getData())){
|
||||||
List<JSONObject> dataList = cbsResponseDTO.getData();
|
List<JSONObject> dataList = cbsResponseDTO.getData();
|
||||||
List<PayResultResDTO> payResultList = CBSUtil.convertJsonArrayToList(dataList, PayResultResDTO.class);
|
List<PayResultResDTO> payResultList = CBSUtil.convertJsonArrayToList(dataList, PayResultResDTO.class);
|
||||||
return payResultList;
|
return payResultList;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -104,7 +105,8 @@ public class Cbs8ServiceImpl implements ICbs8Service {
|
||||||
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
||||||
.put("appId","800026")
|
.put("appId","800026")
|
||||||
.build();
|
.build();
|
||||||
String result = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface").addHeaders(headerMap).body(params).timeout(60000).execute().body();
|
String body = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterfaceToESB").addHeaders(headerMap).body(params).timeout(60000).execute().body();
|
||||||
|
String result = decryptResBody(body);
|
||||||
if (StrUtil.isNotEmpty(result)){
|
if (StrUtil.isNotEmpty(result)){
|
||||||
CbsResponseDTO cbsResponseDTO = JSONObject.parseObject(result, CbsResponseDTO.class);
|
CbsResponseDTO cbsResponseDTO = JSONObject.parseObject(result, CbsResponseDTO.class);
|
||||||
if (null != cbsResponseDTO){
|
if (null != cbsResponseDTO){
|
||||||
|
@ -148,7 +150,8 @@ public class Cbs8ServiceImpl implements ICbs8Service {
|
||||||
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
||||||
.put("appId","800026")
|
.put("appId","800026")
|
||||||
.build();
|
.build();
|
||||||
String result = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface").addHeaders(headerMap).body(params).timeout(60000).execute().body();
|
String body = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterfaceToESB").addHeaders(headerMap).body(params).timeout(60000).execute().body();
|
||||||
|
String result = decryptResBody(body);
|
||||||
if (StrUtil.isNotEmpty(result)){
|
if (StrUtil.isNotEmpty(result)){
|
||||||
CbsResponseDTO cbsResponseDTO = JSONObject.parseObject(result, CbsResponseDTO.class);
|
CbsResponseDTO cbsResponseDTO = JSONObject.parseObject(result, CbsResponseDTO.class);
|
||||||
if (null != cbsResponseDTO){
|
if (null != cbsResponseDTO){
|
||||||
|
@ -164,4 +167,82 @@ public class Cbs8ServiceImpl implements ICbs8Service {
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 支付申请
|
||||||
|
* @param paymentApplySubmitReqDTO
|
||||||
|
* @param paymentApplyAgentList
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public PayResponseDTO agentPayApply(PaymentApplySubmitReqDTO paymentApplySubmitReqDTO, List<PaymentApplyAgentDTO> paymentApplyAgentList) {
|
||||||
|
AgentPayRequestDTO param = new AgentPayRequestDTO();
|
||||||
|
param.setPaymentApplySubmitReqDTO(paymentApplySubmitReqDTO);
|
||||||
|
param.setPaymentApplyAgentDTO(paymentApplyAgentList);
|
||||||
|
String params = JSON.toJSONString(param);
|
||||||
|
Map<String, String> headerMap = MapBuilder.<String, String>create(true)
|
||||||
|
.put("apiCode", "8000260003")
|
||||||
|
.put("publicKey","ZJYA1vBeY1ai53iNmbAEsw6DImjkXGBkdMailxcBdliFC85Ce7eDIk+3zDUT+v578prj")
|
||||||
|
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
||||||
|
.put("appId","800026")
|
||||||
|
.build();
|
||||||
|
String body = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterfaceToESB").addHeaders(headerMap).body(params).timeout(60000).execute().body();
|
||||||
|
String result = decryptResBody(body);
|
||||||
|
if (StrUtil.isNotEmpty(result)){
|
||||||
|
CbsResponseDTO cbsResponseDTO = JSONObject.parseObject(result, CbsResponseDTO.class);
|
||||||
|
List<JSONObject> dataList = cbsResponseDTO.getData();
|
||||||
|
if (CollectionUtils.isNotEmpty(dataList)){
|
||||||
|
JSONObject o = dataList.get(0);
|
||||||
|
PayResponseDTO payResponseDTO = JSON.toJavaObject(o, PayResponseDTO.class);
|
||||||
|
return payResponseDTO;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 代发代扣 详情查询
|
||||||
|
*
|
||||||
|
* @param agentPayResultRequestDTO
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public AgentPayResultResDTO agentPayResult(AgentPayResultRequestDTO agentPayResultRequestDTO) {
|
||||||
|
Map<String, String> headerMap = MapBuilder.<String, String>create(true)
|
||||||
|
.put("apiCode", "8000260004")
|
||||||
|
.put("publicKey","ZJYA1vBeY1ai53iNmbAEsw6DImjkXGBkdMailxcBdliFC85Ce7eDIk+3zDUT+v578prj")
|
||||||
|
.put("secretKey","7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")
|
||||||
|
.put("appId","800026")
|
||||||
|
.build();
|
||||||
|
String params = JSON.toJSONString(agentPayResultRequestDTO);
|
||||||
|
String body = HttpRequest.post("http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterfaceToESB").addHeaders(headerMap).body(params).timeout(60000).execute().body();
|
||||||
|
//解密报文
|
||||||
|
String result = decryptResBody(body);
|
||||||
|
if (StrUtil.isNotEmpty(result)){
|
||||||
|
CbsResponseDTO cbsResponseDTO = JSONObject.parseObject(result, CbsResponseDTO.class);
|
||||||
|
List<JSONObject> dataList = cbsResponseDTO.getData();
|
||||||
|
if (CollectionUtils.isNotEmpty(dataList)){
|
||||||
|
JSONObject o = dataList.get(0);
|
||||||
|
AgentPayResultResDTO agentPayResultResDTO = JSON.toJavaObject(o, AgentPayResultResDTO.class);
|
||||||
|
return agentPayResultResDTO;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 解密响应报文
|
||||||
|
* @param body
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private String decryptResBody(String body){
|
||||||
|
if (StrUtil.isNotEmpty(body)){
|
||||||
|
JsonResultEntity resultEntity = JSONObject.parseObject(body,JsonResultEntity.class);
|
||||||
|
String bodyBase64 = String.valueOf(resultEntity.getAttribute());
|
||||||
|
byte[] bodyBytes = Base64.getDecoder().decode(bodyBase64);
|
||||||
|
//解密报文
|
||||||
|
String result = CBSUtil.decrypt(bodyBytes);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package com.hzya.frame.mdm.mdmModule.dao;
|
package com.hzya.frame.mdm.mdmModule.dao;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.hzya.frame.mdm.entity.MdmDataDto;
|
import com.hzya.frame.mdm.entity.MdmDataDto;
|
||||||
import com.hzya.frame.mdm.entity.MdmDto;
|
import com.hzya.frame.mdm.entity.MdmDto;
|
||||||
import com.hzya.frame.mdm.entity.MdmQuery;
|
import com.hzya.frame.mdm.entity.MdmQuery;
|
||||||
|
@ -47,5 +48,9 @@ public interface IMdmModuleDao extends IBaseDao<MdmModuleEntity, String> {
|
||||||
|
|
||||||
Integer deleteTable(Map<String, Object> maps);
|
Integer deleteTable(Map<String, Object> maps);
|
||||||
|
|
||||||
|
|
||||||
|
JSONObject queryMdmST(Map<String, String> maps);
|
||||||
|
List<JSONObject> queryMdmSTDetail(Map<String, String> maps);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package com.hzya.frame.mdm.mdmModule.dao.impl;
|
package com.hzya.frame.mdm.mdmModule.dao.impl;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.hzya.frame.mdm.entity.MdmDataDto;
|
import com.hzya.frame.mdm.entity.MdmDataDto;
|
||||||
import com.hzya.frame.mdm.entity.MdmDto;
|
import com.hzya.frame.mdm.entity.MdmDto;
|
||||||
import com.hzya.frame.mdm.entity.MdmQuery;
|
import com.hzya.frame.mdm.entity.MdmQuery;
|
||||||
|
@ -127,6 +128,9 @@ public class MdmModuleDaoImpl extends MybatisGenericDao<MdmModuleEntity, String>
|
||||||
Integer o = (Integer) super.delete(getSqlIdPrifx() + "deleteTable", maps);
|
Integer o = (Integer) super.delete(getSqlIdPrifx() + "deleteTable", maps);
|
||||||
return o;
|
return o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer alterTable(Map<String, Object> maps) {
|
public Integer alterTable(Map<String, Object> maps) {
|
||||||
Integer o = (Integer) super.selectOne(getSqlIdPrifx() + "alterTable", maps);
|
Integer o = (Integer) super.selectOne(getSqlIdPrifx() + "alterTable", maps);
|
||||||
|
@ -144,5 +148,18 @@ public class MdmModuleDaoImpl extends MybatisGenericDao<MdmModuleEntity, String>
|
||||||
return o;
|
return o;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public JSONObject queryMdmST(Map<String, String> maps) {
|
||||||
|
JSONObject o = (JSONObject) super.selectOne(getSqlIdPrifx() + "queryMdmST", maps);
|
||||||
|
return o;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<JSONObject> queryMdmSTDetail(Map<String, String> maps) {
|
||||||
|
List<JSONObject> o = (List<JSONObject>) super.selectList(getSqlIdPrifx() + "queryMdmSTDetail", maps);
|
||||||
|
return o;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -792,5 +792,23 @@ where id = #{id}
|
||||||
<select id="queryMainCount" resultType="Integer" parameterType="com.hzya.frame.mdm.entity.MdmQuery">
|
<select id="queryMainCount" resultType="Integer" parameterType="com.hzya.frame.mdm.entity.MdmQuery">
|
||||||
select count(1) from ${tableName} where sts='Y'
|
select count(1) from ${tableName} where sts='Y'
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 分页查询列表 采用like格式 -->
|
||||||
|
<select id="queryMdmST" resultType="com.alibaba.fastjson.JSONObject"
|
||||||
|
parameterType="java.util.HashMap">
|
||||||
|
select * from ${tableName}
|
||||||
|
<trim prefix="where" prefixOverrides="and">
|
||||||
|
<if test="documentRule != null and documentRule !='' ">and document_rule = #{documentRule}</if>
|
||||||
|
<if test="id != null and id !='' ">and id = #{id}</if>
|
||||||
|
and sts = 'Y'
|
||||||
|
</trim>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 分页查询列表 采用like格式 -->
|
||||||
|
<select id="queryMdmSTDetail" resultType="com.alibaba.fastjson.JSONObject"
|
||||||
|
parameterType="java.util.HashMap">
|
||||||
|
select * from ${tableName} where sts='Y' and formmain_id = #{formmainId}
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
|
||||||
|
|
|
@ -495,6 +495,16 @@ public class MdmModuleServiceImpl extends BaseService<MdmModuleEntity, String> i
|
||||||
//新增 设置日志表
|
//新增 设置日志表
|
||||||
setMdmField(mdmModuleDbEntity1, mdmModuleDbFiledsEntities);
|
setMdmField(mdmModuleDbEntity1, mdmModuleDbFiledsEntities);
|
||||||
}
|
}
|
||||||
|
for (int i = 0; i < mdmModuleDbEntities.size(); i++) {
|
||||||
|
//查看表是否存在
|
||||||
|
MdmModuleDbEntity mdmModuleDbEntity = new MdmModuleDbEntity();
|
||||||
|
mdmModuleDbEntity.setDbName(mdmModuleDbEntities.get(i).getDbName());
|
||||||
|
mdmModuleDbEntity.setSts("Y");
|
||||||
|
int a = mdmModuleDbDao.getCount(mdmModuleDbEntity);
|
||||||
|
if(a > 0){
|
||||||
|
return BaseResult.getFailureMessageEntity("表已存在,请修改");
|
||||||
|
}
|
||||||
|
}
|
||||||
mdmServiceCache.saveOrUpdateMdmModuleDb(entity.getMdmId(), mdmModuleDbEntities);
|
mdmServiceCache.saveOrUpdateMdmModuleDb(entity.getMdmId(), mdmModuleDbEntities);
|
||||||
mdmServiceCache.saveOrUpdateMdmModuleDbFileds(entity.getMdmId(), mdmModuleDbFiledsEntities);
|
mdmServiceCache.saveOrUpdateMdmModuleDbFileds(entity.getMdmId(), mdmModuleDbFiledsEntities);
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
package com.hzya.frame.mdm.mdmModuleDbFileds.entity;
|
package com.hzya.frame.mdm.mdmModuleDbFileds.entity;
|
||||||
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity;
|
import com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity;
|
||||||
import com.hzya.frame.web.entity.BaseEntity;
|
import com.hzya.frame.web.entity.BaseEntity;
|
||||||
import org.apache.poi.ss.formula.functions.T;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 模版数据库字段表(MdmModuleDbFileds)实体类
|
* 模版数据库字段表(MdmModuleDbFileds)实体类
|
||||||
|
|
|
@ -7,7 +7,7 @@ import com.hzya.frame.basedao.dao.IBaseDao;
|
||||||
* 主数据功能应用分发表(mdm_module_distribute: table)表数据库访问层
|
* 主数据功能应用分发表(mdm_module_distribute: table)表数据库访问层
|
||||||
*
|
*
|
||||||
* @author makejava
|
* @author makejava
|
||||||
* @since 2024-06-14 10:06:36
|
* @since 2024-06-18 11:39:46
|
||||||
*/
|
*/
|
||||||
public interface IMdmModuleDistributeDao extends IBaseDao<MdmModuleDistributeEntity, String> {
|
public interface IMdmModuleDistributeDao extends IBaseDao<MdmModuleDistributeEntity, String> {
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||||
* 主数据功能应用分发表(MdmModuleDistribute)表数据库访问层
|
* 主数据功能应用分发表(MdmModuleDistribute)表数据库访问层
|
||||||
*
|
*
|
||||||
* @author makejava
|
* @author makejava
|
||||||
* @since 2024-06-14 10:06:36
|
* @since 2024-06-18 11:39:46
|
||||||
*/
|
*/
|
||||||
@Repository(value = "MdmModuleDistributeDaoImpl")
|
@Repository(value = "MdmModuleDistributeDaoImpl")
|
||||||
public class MdmModuleDistributeDaoImpl extends MybatisGenericDao<MdmModuleDistributeEntity, String> implements IMdmModuleDistributeDao{
|
public class MdmModuleDistributeDaoImpl extends MybatisGenericDao<MdmModuleDistributeEntity, String> implements IMdmModuleDistributeDao{
|
||||||
|
|
|
@ -9,7 +9,7 @@ import com.hzya.frame.web.entity.BaseEntity;
|
||||||
* 主数据功能应用分发表(MdmModuleDistribute)实体类
|
* 主数据功能应用分发表(MdmModuleDistribute)实体类
|
||||||
*
|
*
|
||||||
* @author makejava
|
* @author makejava
|
||||||
* @since 2024-06-14 10:06:36
|
* @since 2024-06-18 11:39:46
|
||||||
*/
|
*/
|
||||||
public class MdmModuleDistributeEntity extends BaseEntity {
|
public class MdmModuleDistributeEntity extends BaseEntity {
|
||||||
|
|
||||||
|
@ -17,20 +17,29 @@ public class MdmModuleDistributeEntity extends BaseEntity {
|
||||||
private String mdmId;
|
private String mdmId;
|
||||||
/** 应用id */
|
/** 应用id */
|
||||||
private String appId;
|
private String appId;
|
||||||
|
/** 触发类型 0、手动1、自动 */
|
||||||
|
private String enabledType;
|
||||||
/** 修改接口 */
|
/** 修改接口 */
|
||||||
private String updateApi;
|
private String updateApi;
|
||||||
|
/** 修改插件 */
|
||||||
|
private String updateScript;
|
||||||
/** 新增接口 */
|
/** 新增接口 */
|
||||||
private String addApi;
|
private String addApi;
|
||||||
|
/** 新增插件 */
|
||||||
|
private String addScript;
|
||||||
/** 删除接口 */
|
/** 删除接口 */
|
||||||
private String deleteApi;
|
private String deleteApi;
|
||||||
|
/** 删除插件 */
|
||||||
|
private String deleteScript;
|
||||||
/** 启用停用 0、停用1、启用 */
|
/** 启用停用 0、停用1、启用 */
|
||||||
private String enabledState;
|
private String enabledState;
|
||||||
/** 主表ID */
|
/** 主表ID */
|
||||||
private String dbId;
|
private String dbId;
|
||||||
/** 公司id */
|
/** 公司id */
|
||||||
private String companyId;
|
private String companyId;
|
||||||
|
/** 公司id */
|
||||||
|
private List<MdmModuleDistributeDetailEntity> mdmModuleDistributeDetailEntities;
|
||||||
|
|
||||||
private List<MdmModuleDistributeDetailEntity> mdmModuleDistributeDetailEntities;
|
|
||||||
|
|
||||||
public String getMdmId() {
|
public String getMdmId() {
|
||||||
return mdmId;
|
return mdmId;
|
||||||
|
@ -48,6 +57,14 @@ public class MdmModuleDistributeEntity extends BaseEntity {
|
||||||
this.appId = appId;
|
this.appId = appId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getEnabledType() {
|
||||||
|
return enabledType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEnabledType(String enabledType) {
|
||||||
|
this.enabledType = enabledType;
|
||||||
|
}
|
||||||
|
|
||||||
public String getUpdateApi() {
|
public String getUpdateApi() {
|
||||||
return updateApi;
|
return updateApi;
|
||||||
}
|
}
|
||||||
|
@ -56,6 +73,14 @@ public class MdmModuleDistributeEntity extends BaseEntity {
|
||||||
this.updateApi = updateApi;
|
this.updateApi = updateApi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getUpdateScript() {
|
||||||
|
return updateScript;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUpdateScript(String updateScript) {
|
||||||
|
this.updateScript = updateScript;
|
||||||
|
}
|
||||||
|
|
||||||
public String getAddApi() {
|
public String getAddApi() {
|
||||||
return addApi;
|
return addApi;
|
||||||
}
|
}
|
||||||
|
@ -64,6 +89,14 @@ public class MdmModuleDistributeEntity extends BaseEntity {
|
||||||
this.addApi = addApi;
|
this.addApi = addApi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getAddScript() {
|
||||||
|
return addScript;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAddScript(String addScript) {
|
||||||
|
this.addScript = addScript;
|
||||||
|
}
|
||||||
|
|
||||||
public String getDeleteApi() {
|
public String getDeleteApi() {
|
||||||
return deleteApi;
|
return deleteApi;
|
||||||
}
|
}
|
||||||
|
@ -72,6 +105,14 @@ public class MdmModuleDistributeEntity extends BaseEntity {
|
||||||
this.deleteApi = deleteApi;
|
this.deleteApi = deleteApi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDeleteScript() {
|
||||||
|
return deleteScript;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeleteScript(String deleteScript) {
|
||||||
|
this.deleteScript = deleteScript;
|
||||||
|
}
|
||||||
|
|
||||||
public String getEnabledState() {
|
public String getEnabledState() {
|
||||||
return enabledState;
|
return enabledState;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,9 +6,13 @@
|
||||||
<result property="id" column="id" jdbcType="VARCHAR"/>
|
<result property="id" column="id" jdbcType="VARCHAR"/>
|
||||||
<result property="mdmId" column="mdm_id" jdbcType="VARCHAR"/>
|
<result property="mdmId" column="mdm_id" jdbcType="VARCHAR"/>
|
||||||
<result property="appId" column="app_id" jdbcType="VARCHAR"/>
|
<result property="appId" column="app_id" jdbcType="VARCHAR"/>
|
||||||
|
<result property="enabledType" column="enabled_type" jdbcType="VARCHAR"/>
|
||||||
<result property="updateApi" column="update_api" jdbcType="VARCHAR"/>
|
<result property="updateApi" column="update_api" jdbcType="VARCHAR"/>
|
||||||
|
<result property="updateScript" column="update_script" jdbcType="VARCHAR"/>
|
||||||
<result property="addApi" column="add_api" jdbcType="VARCHAR"/>
|
<result property="addApi" column="add_api" jdbcType="VARCHAR"/>
|
||||||
|
<result property="addScript" column="add_script" jdbcType="VARCHAR"/>
|
||||||
<result property="deleteApi" column="delete_api" jdbcType="VARCHAR"/>
|
<result property="deleteApi" column="delete_api" jdbcType="VARCHAR"/>
|
||||||
|
<result property="deleteScript" column="delete_script" jdbcType="VARCHAR"/>
|
||||||
<result property="enabledState" column="enabled_state" jdbcType="VARCHAR"/>
|
<result property="enabledState" column="enabled_state" jdbcType="VARCHAR"/>
|
||||||
<result property="dbId" column="db_id" jdbcType="VARCHAR"/>
|
<result property="dbId" column="db_id" jdbcType="VARCHAR"/>
|
||||||
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
|
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
|
||||||
|
@ -25,9 +29,13 @@
|
||||||
id
|
id
|
||||||
,mdm_id
|
,mdm_id
|
||||||
,app_id
|
,app_id
|
||||||
|
,enabled_type
|
||||||
,update_api
|
,update_api
|
||||||
|
,update_script
|
||||||
,add_api
|
,add_api
|
||||||
|
,add_script
|
||||||
,delete_api
|
,delete_api
|
||||||
|
,delete_script
|
||||||
,enabled_state
|
,enabled_state
|
||||||
,db_id
|
,db_id
|
||||||
,sorts
|
,sorts
|
||||||
|
@ -55,9 +63,13 @@
|
||||||
<if test="id != null and id != ''"> and id = #{id} </if>
|
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||||
<if test="mdmId != null and mdmId != ''"> and mdm_id = #{mdmId} </if>
|
<if test="mdmId != null and mdmId != ''"> and mdm_id = #{mdmId} </if>
|
||||||
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
||||||
|
<if test="enabledType != null and enabledType != ''"> and enabled_type = #{enabledType} </if>
|
||||||
<if test="updateApi != null and updateApi != ''"> and update_api = #{updateApi} </if>
|
<if test="updateApi != null and updateApi != ''"> and update_api = #{updateApi} </if>
|
||||||
|
<if test="updateScript != null and updateScript != ''"> and update_script = #{updateScript} </if>
|
||||||
<if test="addApi != null and addApi != ''"> and add_api = #{addApi} </if>
|
<if test="addApi != null and addApi != ''"> and add_api = #{addApi} </if>
|
||||||
|
<if test="addScript != null and addScript != ''"> and add_script = #{addScript} </if>
|
||||||
<if test="deleteApi != null and deleteApi != ''"> and delete_api = #{deleteApi} </if>
|
<if test="deleteApi != null and deleteApi != ''"> and delete_api = #{deleteApi} </if>
|
||||||
|
<if test="deleteScript != null and deleteScript != ''"> and delete_script = #{deleteScript} </if>
|
||||||
<if test="enabledState != null and enabledState != ''"> and enabled_state = #{enabledState} </if>
|
<if test="enabledState != null and enabledState != ''"> and enabled_state = #{enabledState} </if>
|
||||||
<if test="dbId != null and dbId != ''"> and db_id = #{dbId} </if>
|
<if test="dbId != null and dbId != ''"> and db_id = #{dbId} </if>
|
||||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
|
@ -81,9 +93,13 @@
|
||||||
<if test="id != null and id != ''"> and id = #{id} </if>
|
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||||
<if test="mdmId != null and mdmId != ''"> and mdm_id = #{mdmId} </if>
|
<if test="mdmId != null and mdmId != ''"> and mdm_id = #{mdmId} </if>
|
||||||
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
||||||
|
<if test="enabledType != null and enabledType != ''"> and enabled_type = #{enabledType} </if>
|
||||||
<if test="updateApi != null and updateApi != ''"> and update_api = #{updateApi} </if>
|
<if test="updateApi != null and updateApi != ''"> and update_api = #{updateApi} </if>
|
||||||
|
<if test="updateScript != null and updateScript != ''"> and update_script = #{updateScript} </if>
|
||||||
<if test="addApi != null and addApi != ''"> and add_api = #{addApi} </if>
|
<if test="addApi != null and addApi != ''"> and add_api = #{addApi} </if>
|
||||||
|
<if test="addScript != null and addScript != ''"> and add_script = #{addScript} </if>
|
||||||
<if test="deleteApi != null and deleteApi != ''"> and delete_api = #{deleteApi} </if>
|
<if test="deleteApi != null and deleteApi != ''"> and delete_api = #{deleteApi} </if>
|
||||||
|
<if test="deleteScript != null and deleteScript != ''"> and delete_script = #{deleteScript} </if>
|
||||||
<if test="enabledState != null and enabledState != ''"> and enabled_state = #{enabledState} </if>
|
<if test="enabledState != null and enabledState != ''"> and enabled_state = #{enabledState} </if>
|
||||||
<if test="dbId != null and dbId != ''"> and db_id = #{dbId} </if>
|
<if test="dbId != null and dbId != ''"> and db_id = #{dbId} </if>
|
||||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
|
@ -109,9 +125,13 @@
|
||||||
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </if>
|
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </if>
|
||||||
<if test="mdmId != null and mdmId != ''"> and mdm_id like concat('%',#{mdmId},'%') </if>
|
<if test="mdmId != null and mdmId != ''"> and mdm_id like concat('%',#{mdmId},'%') </if>
|
||||||
<if test="appId != null and appId != ''"> and app_id like concat('%',#{appId},'%') </if>
|
<if test="appId != null and appId != ''"> and app_id like concat('%',#{appId},'%') </if>
|
||||||
|
<if test="enabledType != null and enabledType != ''"> and enabled_type like concat('%',#{enabledType},'%') </if>
|
||||||
<if test="updateApi != null and updateApi != ''"> and update_api like concat('%',#{updateApi},'%') </if>
|
<if test="updateApi != null and updateApi != ''"> and update_api like concat('%',#{updateApi},'%') </if>
|
||||||
|
<if test="updateScript != null and updateScript != ''"> and update_script like concat('%',#{updateScript},'%') </if>
|
||||||
<if test="addApi != null and addApi != ''"> and add_api like concat('%',#{addApi},'%') </if>
|
<if test="addApi != null and addApi != ''"> and add_api like concat('%',#{addApi},'%') </if>
|
||||||
|
<if test="addScript != null and addScript != ''"> and add_script like concat('%',#{addScript},'%') </if>
|
||||||
<if test="deleteApi != null and deleteApi != ''"> and delete_api like concat('%',#{deleteApi},'%') </if>
|
<if test="deleteApi != null and deleteApi != ''"> and delete_api like concat('%',#{deleteApi},'%') </if>
|
||||||
|
<if test="deleteScript != null and deleteScript != ''"> and delete_script like concat('%',#{deleteScript},'%') </if>
|
||||||
<if test="enabledState != null and enabledState != ''"> and enabled_state like concat('%',#{enabledState},'%') </if>
|
<if test="enabledState != null and enabledState != ''"> and enabled_state like concat('%',#{enabledState},'%') </if>
|
||||||
<if test="dbId != null and dbId != ''"> and db_id like concat('%',#{dbId},'%') </if>
|
<if test="dbId != null and dbId != ''"> and db_id like concat('%',#{dbId},'%') </if>
|
||||||
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
|
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
|
||||||
|
@ -137,9 +157,13 @@
|
||||||
<if test="id != null and id != ''"> or id = #{id} </if>
|
<if test="id != null and id != ''"> or id = #{id} </if>
|
||||||
<if test="mdmId != null and mdmId != ''"> or mdm_id = #{mdmId} </if>
|
<if test="mdmId != null and mdmId != ''"> or mdm_id = #{mdmId} </if>
|
||||||
<if test="appId != null and appId != ''"> or app_id = #{appId} </if>
|
<if test="appId != null and appId != ''"> or app_id = #{appId} </if>
|
||||||
|
<if test="enabledType != null and enabledType != ''"> or enabled_type = #{enabledType} </if>
|
||||||
<if test="updateApi != null and updateApi != ''"> or update_api = #{updateApi} </if>
|
<if test="updateApi != null and updateApi != ''"> or update_api = #{updateApi} </if>
|
||||||
|
<if test="updateScript != null and updateScript != ''"> or update_script = #{updateScript} </if>
|
||||||
<if test="addApi != null and addApi != ''"> or add_api = #{addApi} </if>
|
<if test="addApi != null and addApi != ''"> or add_api = #{addApi} </if>
|
||||||
|
<if test="addScript != null and addScript != ''"> or add_script = #{addScript} </if>
|
||||||
<if test="deleteApi != null and deleteApi != ''"> or delete_api = #{deleteApi} </if>
|
<if test="deleteApi != null and deleteApi != ''"> or delete_api = #{deleteApi} </if>
|
||||||
|
<if test="deleteScript != null and deleteScript != ''"> or delete_script = #{deleteScript} </if>
|
||||||
<if test="enabledState != null and enabledState != ''"> or enabled_state = #{enabledState} </if>
|
<if test="enabledState != null and enabledState != ''"> or enabled_state = #{enabledState} </if>
|
||||||
<if test="dbId != null and dbId != ''"> or db_id = #{dbId} </if>
|
<if test="dbId != null and dbId != ''"> or db_id = #{dbId} </if>
|
||||||
<if test="sorts != null"> or sorts = #{sorts} </if>
|
<if test="sorts != null"> or sorts = #{sorts} </if>
|
||||||
|
@ -157,15 +181,19 @@
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<!--新增所有列-->
|
<!--新增所有列-->
|
||||||
<insert id="entity_insert" parameterType = "com.hzya.frame.mdm.mdmModuleDistribute.entity.MdmModuleDistributeEntity" >
|
<insert id="entity_insert" parameterType = "com.hzya.frame.mdm.mdmModuleDistribute.entity.MdmModuleDistributeEntity" keyProperty="id" useGeneratedKeys="true">
|
||||||
insert into mdm_module_distribute(
|
insert into mdm_module_distribute(
|
||||||
<trim suffix="" suffixOverrides=",">
|
<trim suffix="" suffixOverrides=",">
|
||||||
<if test="id != null and id != ''"> id , </if>
|
<if test="id != null and id != ''"> id , </if>
|
||||||
<if test="mdmId != null and mdmId != ''"> mdm_id , </if>
|
<if test="mdmId != null and mdmId != ''"> mdm_id , </if>
|
||||||
<if test="appId != null and appId != ''"> app_id , </if>
|
<if test="appId != null and appId != ''"> app_id , </if>
|
||||||
|
<if test="enabledType != null and enabledType != ''"> enabled_type , </if>
|
||||||
<if test="updateApi != null and updateApi != ''"> update_api , </if>
|
<if test="updateApi != null and updateApi != ''"> update_api , </if>
|
||||||
|
<if test="updateScript != null and updateScript != ''"> update_script , </if>
|
||||||
<if test="addApi != null and addApi != ''"> add_api , </if>
|
<if test="addApi != null and addApi != ''"> add_api , </if>
|
||||||
|
<if test="addScript != null and addScript != ''"> add_script , </if>
|
||||||
<if test="deleteApi != null and deleteApi != ''"> delete_api , </if>
|
<if test="deleteApi != null and deleteApi != ''"> delete_api , </if>
|
||||||
|
<if test="deleteScript != null and deleteScript != ''"> delete_script , </if>
|
||||||
<if test="enabledState != null and enabledState != ''"> enabled_state , </if>
|
<if test="enabledState != null and enabledState != ''"> enabled_state , </if>
|
||||||
<if test="dbId != null and dbId != ''"> db_id , </if>
|
<if test="dbId != null and dbId != ''"> db_id , </if>
|
||||||
<if test="sorts != null"> sorts , </if>
|
<if test="sorts != null"> sorts , </if>
|
||||||
|
@ -184,9 +212,13 @@
|
||||||
<if test="id != null and id != ''"> #{id} ,</if>
|
<if test="id != null and id != ''"> #{id} ,</if>
|
||||||
<if test="mdmId != null and mdmId != ''"> #{mdmId} ,</if>
|
<if test="mdmId != null and mdmId != ''"> #{mdmId} ,</if>
|
||||||
<if test="appId != null and appId != ''"> #{appId} ,</if>
|
<if test="appId != null and appId != ''"> #{appId} ,</if>
|
||||||
|
<if test="enabledType != null and enabledType != ''"> #{enabledType} ,</if>
|
||||||
<if test="updateApi != null and updateApi != ''"> #{updateApi} ,</if>
|
<if test="updateApi != null and updateApi != ''"> #{updateApi} ,</if>
|
||||||
|
<if test="updateScript != null and updateScript != ''"> #{updateScript} ,</if>
|
||||||
<if test="addApi != null and addApi != ''"> #{addApi} ,</if>
|
<if test="addApi != null and addApi != ''"> #{addApi} ,</if>
|
||||||
|
<if test="addScript != null and addScript != ''"> #{addScript} ,</if>
|
||||||
<if test="deleteApi != null and deleteApi != ''"> #{deleteApi} ,</if>
|
<if test="deleteApi != null and deleteApi != ''"> #{deleteApi} ,</if>
|
||||||
|
<if test="deleteScript != null and deleteScript != ''"> #{deleteScript} ,</if>
|
||||||
<if test="enabledState != null and enabledState != ''"> #{enabledState} ,</if>
|
<if test="enabledState != null and enabledState != ''"> #{enabledState} ,</if>
|
||||||
<if test="dbId != null and dbId != ''"> #{dbId} ,</if>
|
<if test="dbId != null and dbId != ''"> #{dbId} ,</if>
|
||||||
<if test="sorts != null"> #{sorts} ,</if>
|
<if test="sorts != null"> #{sorts} ,</if>
|
||||||
|
@ -203,26 +235,30 @@
|
||||||
)
|
)
|
||||||
</insert>
|
</insert>
|
||||||
<!-- 批量新增 -->
|
<!-- 批量新增 -->
|
||||||
<insert id="entityInsertBatch" >
|
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
|
||||||
insert into mdm_module_distribute(mdm_id, app_id, update_api, add_api, delete_api, enabled_state, db_id, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, sts)
|
insert into mdm_module_distribute(mdm_id, app_id, enabled_type, update_api, update_script, add_api, add_script, delete_api, delete_script, enabled_state, db_id, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, sts)
|
||||||
values
|
values
|
||||||
<foreach collection="entities" item="entity" separator=",">
|
<foreach collection="entities" item="entity" separator=",">
|
||||||
(#{entity.mdmId},#{entity.appId},#{entity.updateApi},#{entity.addApi},#{entity.deleteApi},#{entity.enabledState},#{entity.dbId},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId}, 'Y')
|
(#{entity.mdmId},#{entity.appId},#{entity.enabledType},#{entity.updateApi},#{entity.updateScript},#{entity.addApi},#{entity.addScript},#{entity.deleteApi},#{entity.deleteScript},#{entity.enabledState},#{entity.dbId},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId}, 'Y')
|
||||||
</foreach>
|
</foreach>
|
||||||
</insert>
|
</insert>
|
||||||
<!-- 批量新增或者修改-->
|
<!-- 批量新增或者修改-->
|
||||||
<insert id="entityInsertOrUpdateBatch" >
|
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
|
||||||
insert into mdm_module_distribute(mdm_id, app_id, update_api, add_api, delete_api, enabled_state, db_id, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id)
|
insert into mdm_module_distribute(mdm_id, app_id, enabled_type, update_api, update_script, add_api, add_script, delete_api, delete_script, enabled_state, db_id, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id)
|
||||||
values
|
values
|
||||||
<foreach collection="entities" item="entity" separator=",">
|
<foreach collection="entities" item="entity" separator=",">
|
||||||
(#{entity.mdmId},#{entity.appId},#{entity.updateApi},#{entity.addApi},#{entity.deleteApi},#{entity.enabledState},#{entity.dbId},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId})
|
(#{entity.mdmId},#{entity.appId},#{entity.enabledType},#{entity.updateApi},#{entity.updateScript},#{entity.addApi},#{entity.addScript},#{entity.deleteApi},#{entity.deleteScript},#{entity.enabledState},#{entity.dbId},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId})
|
||||||
</foreach>
|
</foreach>
|
||||||
on duplicate key update
|
on duplicate key update
|
||||||
mdm_id = values(mdm_id),
|
mdm_id = values(mdm_id),
|
||||||
app_id = values(app_id),
|
app_id = values(app_id),
|
||||||
|
enabled_type = values(enabled_type),
|
||||||
update_api = values(update_api),
|
update_api = values(update_api),
|
||||||
|
update_script = values(update_script),
|
||||||
add_api = values(add_api),
|
add_api = values(add_api),
|
||||||
|
add_script = values(add_script),
|
||||||
delete_api = values(delete_api),
|
delete_api = values(delete_api),
|
||||||
|
delete_script = values(delete_script),
|
||||||
enabled_state = values(enabled_state),
|
enabled_state = values(enabled_state),
|
||||||
db_id = values(db_id),
|
db_id = values(db_id),
|
||||||
create_user_id = values(create_user_id),
|
create_user_id = values(create_user_id),
|
||||||
|
@ -238,9 +274,13 @@ update mdm_module_distribute set
|
||||||
<trim suffix="" suffixOverrides=",">
|
<trim suffix="" suffixOverrides=",">
|
||||||
<if test="mdmId != null and mdmId != ''"> mdm_id = #{mdmId},</if>
|
<if test="mdmId != null and mdmId != ''"> mdm_id = #{mdmId},</if>
|
||||||
<if test="appId != null and appId != ''"> app_id = #{appId},</if>
|
<if test="appId != null and appId != ''"> app_id = #{appId},</if>
|
||||||
|
<if test="enabledType != null and enabledType != ''"> enabled_type = #{enabledType},</if>
|
||||||
<if test="updateApi != null and updateApi != ''"> update_api = #{updateApi},</if>
|
<if test="updateApi != null and updateApi != ''"> update_api = #{updateApi},</if>
|
||||||
|
<if test="updateScript != null and updateScript != ''"> update_script = #{updateScript},</if>
|
||||||
<if test="addApi != null and addApi != ''"> add_api = #{addApi},</if>
|
<if test="addApi != null and addApi != ''"> add_api = #{addApi},</if>
|
||||||
|
<if test="addScript != null and addScript != ''"> add_script = #{addScript},</if>
|
||||||
<if test="deleteApi != null and deleteApi != ''"> delete_api = #{deleteApi},</if>
|
<if test="deleteApi != null and deleteApi != ''"> delete_api = #{deleteApi},</if>
|
||||||
|
<if test="deleteScript != null and deleteScript != ''"> delete_script = #{deleteScript},</if>
|
||||||
<if test="enabledState != null and enabledState != ''"> enabled_state = #{enabledState},</if>
|
<if test="enabledState != null and enabledState != ''"> enabled_state = #{enabledState},</if>
|
||||||
<if test="dbId != null and dbId != ''"> db_id = #{dbId},</if>
|
<if test="dbId != null and dbId != ''"> db_id = #{dbId},</if>
|
||||||
<if test="create_user_id != null and create_user_id != ''"> create_user_id = #{create_user_id},</if>
|
<if test="create_user_id != null and create_user_id != ''"> create_user_id = #{create_user_id},</if>
|
||||||
|
@ -265,9 +305,13 @@ update mdm_module_distribute set sts= 'N' ,modify_time = #{modify_time},modify_
|
||||||
<if test="id != null and id != ''"> and id = #{id} </if>
|
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||||
<if test="mdmId != null and mdmId != ''"> and mdm_id = #{mdmId} </if>
|
<if test="mdmId != null and mdmId != ''"> and mdm_id = #{mdmId} </if>
|
||||||
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
||||||
|
<if test="enabledType != null and enabledType != ''"> and enabled_type = #{enabledType} </if>
|
||||||
<if test="updateApi != null and updateApi != ''"> and update_api = #{updateApi} </if>
|
<if test="updateApi != null and updateApi != ''"> and update_api = #{updateApi} </if>
|
||||||
|
<if test="updateScript != null and updateScript != ''"> and update_script = #{updateScript} </if>
|
||||||
<if test="addApi != null and addApi != ''"> and add_api = #{addApi} </if>
|
<if test="addApi != null and addApi != ''"> and add_api = #{addApi} </if>
|
||||||
|
<if test="addScript != null and addScript != ''"> and add_script = #{addScript} </if>
|
||||||
<if test="deleteApi != null and deleteApi != ''"> and delete_api = #{deleteApi} </if>
|
<if test="deleteApi != null and deleteApi != ''"> and delete_api = #{deleteApi} </if>
|
||||||
|
<if test="deleteScript != null and deleteScript != ''"> and delete_script = #{deleteScript} </if>
|
||||||
<if test="enabledState != null and enabledState != ''"> and enabled_state = #{enabledState} </if>
|
<if test="enabledState != null and enabledState != ''"> and enabled_state = #{enabledState} </if>
|
||||||
<if test="dbId != null and dbId != ''"> and db_id = #{dbId} </if>
|
<if test="dbId != null and dbId != ''"> and db_id = #{dbId} </if>
|
||||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
|
|
|
@ -6,7 +6,7 @@ import com.hzya.frame.basedao.service.IBaseService;
|
||||||
* 主数据功能应用分发表(MdmModuleDistribute)表服务接口
|
* 主数据功能应用分发表(MdmModuleDistribute)表服务接口
|
||||||
*
|
*
|
||||||
* @author makejava
|
* @author makejava
|
||||||
* @since 2024-06-14 10:06:36
|
* @since 2024-06-18 11:39:46
|
||||||
*/
|
*/
|
||||||
public interface IMdmModuleDistributeService extends IBaseService<MdmModuleDistributeEntity, String>{
|
public interface IMdmModuleDistributeService extends IBaseService<MdmModuleDistributeEntity, String>{
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ import com.hzya.frame.basedao.service.impl.BaseService;
|
||||||
* 主数据功能应用分发表(MdmModuleDistribute)表服务实现类
|
* 主数据功能应用分发表(MdmModuleDistribute)表服务实现类
|
||||||
*
|
*
|
||||||
* @author makejava
|
* @author makejava
|
||||||
* @since 2024-06-14 10:06:36
|
* @since 2024-06-18 11:39:46
|
||||||
*/
|
*/
|
||||||
@Service(value = "mdmModuleDistributeService")
|
@Service(value = "mdmModuleDistributeService")
|
||||||
public class MdmModuleDistributeServiceImpl extends BaseService<MdmModuleDistributeEntity, String> implements IMdmModuleDistributeService {
|
public class MdmModuleDistributeServiceImpl extends BaseService<MdmModuleDistributeEntity, String> implements IMdmModuleDistributeService {
|
||||||
|
|
|
@ -196,7 +196,6 @@
|
||||||
<if test="sts != null and sts != ''"> sts , </if>
|
<if test="sts != null and sts != ''"> sts , </if>
|
||||||
<if test="org_id != null and org_id != ''"> org_id , </if>
|
<if test="org_id != null and org_id != ''"> org_id , </if>
|
||||||
<if test="companyId != null and companyId != ''"> company_id , </if>
|
<if test="companyId != null and companyId != ''"> company_id , </if>
|
||||||
<if test="sorts == null ">sorts,</if>
|
|
||||||
<if test="sts == null ">sts,</if>
|
<if test="sts == null ">sts,</if>
|
||||||
</trim>
|
</trim>
|
||||||
)values(
|
)values(
|
||||||
|
@ -220,7 +219,6 @@
|
||||||
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
||||||
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
||||||
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
||||||
<if test="sorts == null ">(select (max(IFNULL( a.sorts, 0 )) + 1) as sort from mdm_module_distribute_detail a WHERE a.sts = 'Y' ),</if>
|
|
||||||
<if test="sts == null ">'Y',</if>
|
<if test="sts == null ">'Y',</if>
|
||||||
</trim>
|
</trim>
|
||||||
)
|
)
|
||||||
|
|
|
@ -167,7 +167,6 @@
|
||||||
<if test="sts != null and sts != ''"> sts , </if>
|
<if test="sts != null and sts != ''"> sts , </if>
|
||||||
<if test="org_id != null and org_id != ''"> org_id , </if>
|
<if test="org_id != null and org_id != ''"> org_id , </if>
|
||||||
<if test="companyId != null and companyId != ''"> company_id , </if>
|
<if test="companyId != null and companyId != ''"> company_id , </if>
|
||||||
<if test="sorts == null ">sorts,</if>
|
|
||||||
<if test="sts == null ">sts,</if>
|
<if test="sts == null ">sts,</if>
|
||||||
</trim>
|
</trim>
|
||||||
)values(
|
)values(
|
||||||
|
@ -187,7 +186,6 @@
|
||||||
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
||||||
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
||||||
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
||||||
<if test="sorts == null ">(select (max(IFNULL( a.sorts, 0 )) + 1) as sort from ${tableName} a WHERE a.sts = 'Y' ),</if>
|
|
||||||
<if test="sts == null ">'Y',</if>
|
<if test="sts == null ">'Y',</if>
|
||||||
</trim>
|
</trim>
|
||||||
)
|
)
|
||||||
|
|
|
@ -161,7 +161,6 @@
|
||||||
<if test="sts != null and sts != ''"> sts , </if>
|
<if test="sts != null and sts != ''"> sts , </if>
|
||||||
<if test="org_id != null and org_id != ''"> org_id , </if>
|
<if test="org_id != null and org_id != ''"> org_id , </if>
|
||||||
<if test="companyId != null and companyId != ''"> company_id , </if>
|
<if test="companyId != null and companyId != ''"> company_id , </if>
|
||||||
<if test="sorts == null ">sorts,</if>
|
|
||||||
<if test="sts == null ">sts,</if>
|
<if test="sts == null ">sts,</if>
|
||||||
</trim>
|
</trim>
|
||||||
)values(
|
)values(
|
||||||
|
@ -180,7 +179,6 @@
|
||||||
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
||||||
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
||||||
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
||||||
<if test="sorts == null ">(select (max(IFNULL( a.sorts, 0 )) + 1) as sort from ${tableName} a WHERE a.sts = 'Y' ),</if>
|
|
||||||
<if test="sts == null ">'Y',</if>
|
<if test="sts == null ">'Y',</if>
|
||||||
</trim>
|
</trim>
|
||||||
)
|
)
|
||||||
|
|
|
@ -179,7 +179,6 @@ WHERE
|
||||||
<if test="sts != null and sts != ''"> sts , </if>
|
<if test="sts != null and sts != ''"> sts , </if>
|
||||||
<if test="org_id != null and org_id != ''"> org_id , </if>
|
<if test="org_id != null and org_id != ''"> org_id , </if>
|
||||||
<if test="companyId != null and companyId != ''"> company_id , </if>
|
<if test="companyId != null and companyId != ''"> company_id , </if>
|
||||||
<if test="sorts == null ">sorts,</if>
|
|
||||||
<if test="sts == null ">sts,</if>
|
<if test="sts == null ">sts,</if>
|
||||||
</trim>
|
</trim>
|
||||||
)values(
|
)values(
|
||||||
|
@ -197,7 +196,6 @@ WHERE
|
||||||
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
||||||
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
||||||
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
||||||
<if test="sorts == null ">(select (max(IFNULL( a.sorts, 0 )) + 1) as sort from mdm_module_source a WHERE a.sts = 'Y' ),</if>
|
|
||||||
<if test="sts == null ">'Y',</if>
|
<if test="sts == null ">'Y',</if>
|
||||||
</trim>
|
</trim>
|
||||||
)
|
)
|
||||||
|
|
|
@ -3,20 +3,15 @@ package com.hzya.frame.report.reportManage.service.impl;
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.github.pagehelper.PageHelper;
|
import com.github.pagehelper.PageHelper;
|
||||||
import com.github.pagehelper.PageInfo;
|
import com.github.pagehelper.PageInfo;
|
||||||
|
import com.hzya.frame.basedao.service.impl.BaseService;
|
||||||
|
import com.hzya.frame.report.reportManage.dao.IReportManageDao;
|
||||||
import com.hzya.frame.report.reportManage.entity.JimuReportEntity;
|
import com.hzya.frame.report.reportManage.entity.JimuReportEntity;
|
||||||
import com.hzya.frame.report.reportManage.entity.ReportManageEntity;
|
import com.hzya.frame.report.reportManage.entity.ReportManageEntity;
|
||||||
import com.hzya.frame.report.reportManage.dao.IReportManageDao;
|
|
||||||
import com.hzya.frame.report.reportManage.service.IReportManageService;
|
import com.hzya.frame.report.reportManage.service.IReportManageService;
|
||||||
import com.hzya.frame.sysnew.user.entity.SysUserEntity;
|
|
||||||
import com.hzya.frame.sysnew.userCompany.entity.SysUserCompanyEntity;
|
|
||||||
import com.hzya.frame.sysnew.userRoles.entity.SysUserRolesEntity;
|
|
||||||
import com.hzya.frame.util.AESUtil;
|
|
||||||
import com.hzya.frame.web.entity.BaseResult;
|
import com.hzya.frame.web.entity.BaseResult;
|
||||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
import org.springframework.stereotype.Service;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import javax.annotation.Resource;
|
import org.springframework.stereotype.Service;
|
||||||
import com.hzya.frame.basedao.service.impl.BaseService;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -28,272 +23,269 @@ import java.util.List;
|
||||||
*/
|
*/
|
||||||
@Service(value = "reportManageService")
|
@Service(value = "reportManageService")
|
||||||
public class ReportManageServiceImpl extends BaseService<ReportManageEntity, String> implements IReportManageService {
|
public class ReportManageServiceImpl extends BaseService<ReportManageEntity, String> implements IReportManageService {
|
||||||
|
|
||||||
private IReportManageDao reportManageDao;
|
private IReportManageDao reportManageDao;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
public void setReportManageDao(IReportManageDao dao) {
|
public void setReportManageDao(IReportManageDao dao) {
|
||||||
this.reportManageDao = dao;
|
this.reportManageDao = dao;
|
||||||
this.dao = dao;
|
this.dao = dao;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 查询报表列表分页
|
* @Description 查询报表列表分页
|
||||||
* @Date 11:52 上午 2024/3/27
|
* @Date 11:52 上午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity queryEntityPage(JSONObject jsonObject) {
|
public JsonResultEntity queryEntityPage(JSONObject jsonObject) {
|
||||||
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
||||||
//判断分页
|
//判断分页
|
||||||
if (entity == null || entity.getPageNum() == null || entity.getPageSize() == null) {
|
if (entity == null || entity.getPageNum() == null || entity.getPageSize() == null) {
|
||||||
return BaseResult.getFailureMessageEntity("分页查询参数不存在");
|
return BaseResult.getFailureMessageEntity("分页查询参数不存在");
|
||||||
}
|
}
|
||||||
PageHelper.startPage(entity.getPageNum(), entity.getPageSize());
|
PageHelper.startPage(entity.getPageNum(), entity.getPageSize());
|
||||||
List<ReportManageEntity> list = reportManageDao.queryByLikeClassify(entity);
|
List<ReportManageEntity> list = reportManageDao.queryByLikeClassify(entity);
|
||||||
PageInfo pageInfo = new PageInfo(list);
|
PageInfo pageInfo = new PageInfo(list);
|
||||||
return BaseResult.getSuccessMessageEntity("查询数据成功", pageInfo);
|
return BaseResult.getSuccessMessageEntity("查询数据成功", pageInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 查询报表列表
|
* @Description 查询报表列表
|
||||||
* @Date 11:52 上午 2024/3/27
|
* @Date 11:52 上午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity queryEntity(JSONObject jsonObject) {
|
public JsonResultEntity queryEntity(JSONObject jsonObject) {
|
||||||
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
||||||
if (entity == null) {
|
if (entity == null) {
|
||||||
entity = new ReportManageEntity();
|
entity = new ReportManageEntity();
|
||||||
}
|
}
|
||||||
List<ReportManageEntity> list = reportManageDao.queryByLike(entity);
|
List<ReportManageEntity> list = reportManageDao.queryByLike(entity);
|
||||||
return BaseResult.getSuccessMessageEntity("查询数据成功", list);
|
return BaseResult.getSuccessMessageEntity("查询数据成功", list);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 保存报表
|
* @Description 保存报表
|
||||||
* @Date 2:36 下午 2024/3/27
|
* @Date 2:36 下午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity saveEntity(JSONObject jsonObject) {
|
public JsonResultEntity saveEntity(JSONObject jsonObject) {
|
||||||
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
||||||
if (entity == null) {
|
if (entity == null) {
|
||||||
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
}
|
}
|
||||||
if (entity.getReportId() == null || "".equals(entity.getReportId())) {
|
if (entity.getReportId() == null || "".equals(entity.getReportId())) {
|
||||||
return BaseResult.getFailureMessageEntity("请先选择报表");
|
return BaseResult.getFailureMessageEntity("请先选择报表");
|
||||||
}
|
}
|
||||||
if (entity.getReportName() == null || "".equals(entity.getReportName())) {
|
if (entity.getReportName() == null || "".equals(entity.getReportName())) {
|
||||||
return BaseResult.getFailureMessageEntity("请先输入报表名称");
|
return BaseResult.getFailureMessageEntity("请先输入报表名称");
|
||||||
}
|
}
|
||||||
if (entity.getClassifyId() == null || "".equals(entity.getClassifyId())) {
|
if (entity.getClassifyId() == null || "".equals(entity.getClassifyId())) {
|
||||||
return BaseResult.getFailureMessageEntity("请先选择分类");
|
return BaseResult.getFailureMessageEntity("请先选择分类");
|
||||||
}
|
}
|
||||||
if (entity.getPreviewAddress() == null || "".equals(entity.getPreviewAddress())) {
|
if (entity.getPreviewAddress() == null || "".equals(entity.getPreviewAddress())) {
|
||||||
return BaseResult.getFailureMessageEntity("系统错误");
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
}
|
}
|
||||||
entity.setState("0");
|
entity.setState("0");
|
||||||
if (!checkIsUse(entity)) {
|
if (!checkIsUse(entity)) {
|
||||||
return BaseResult.getFailureMessageEntity("当前报表已经配置,请勿重复配置");
|
return BaseResult.getFailureMessageEntity("当前报表已经配置,请勿重复配置");
|
||||||
}
|
}
|
||||||
entity.setCreate();
|
entity.setCreate();
|
||||||
//保存
|
//保存
|
||||||
reportManageDao.save(entity);
|
reportManageDao.save(entity);
|
||||||
return BaseResult.getSuccessMessageEntity("保存报表成功", entity);
|
return BaseResult.getSuccessMessageEntity("保存报表成功", entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private boolean checkIsUse(ReportManageEntity entity) {
|
||||||
|
ReportManageEntity checkUse = new ReportManageEntity();
|
||||||
|
checkUse.setReportId(entity.getReportId());
|
||||||
|
return reportManageDao.getCount(checkUse) <= 0;
|
||||||
|
}
|
||||||
|
|
||||||
private boolean checkIsUse(ReportManageEntity entity) {
|
/**
|
||||||
ReportManageEntity checkUse = new ReportManageEntity();
|
* @param jsonObject
|
||||||
checkUse.setReportId(entity.getReportId());
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
if (reportManageDao.getCount(checkUse) > 0) {
|
* @Author lvleigang
|
||||||
return false;
|
* @Description 获取报表
|
||||||
}
|
* @Date 2:36 下午 2024/3/27
|
||||||
return true;
|
**/
|
||||||
}
|
@Override
|
||||||
|
public JsonResultEntity getEntity(JSONObject jsonObject) {
|
||||||
|
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
||||||
|
if (entity == null) {
|
||||||
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
|
}
|
||||||
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
|
}
|
||||||
|
entity = reportManageDao.get(entity.getId());
|
||||||
|
if (entity == null) {
|
||||||
|
return BaseResult.getFailureMessageEntity("获取报表失败");
|
||||||
|
}
|
||||||
|
return BaseResult.getSuccessMessageEntity("获取报表成功", entity);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 获取报表
|
* @Description 修改报表
|
||||||
* @Date 2:36 下午 2024/3/27
|
* @Date 2:37 下午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity getEntity(JSONObject jsonObject) {
|
public JsonResultEntity updateEntity(JSONObject jsonObject) {
|
||||||
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
||||||
if (entity == null) {
|
if (entity == null) {
|
||||||
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
}
|
}
|
||||||
if (entity.getId() == null || "".equals(entity.getId())) {
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
return BaseResult.getFailureMessageEntity("系统错误");
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
}
|
}
|
||||||
entity = reportManageDao.get(entity.getId());
|
if (entity.getReportId() == null || "".equals(entity.getReportId())) {
|
||||||
if (entity == null) {
|
return BaseResult.getFailureMessageEntity("请先选择报表");
|
||||||
return BaseResult.getFailureMessageEntity("获取报表失败");
|
}
|
||||||
}
|
if (entity.getReportName() == null || "".equals(entity.getReportName())) {
|
||||||
return BaseResult.getSuccessMessageEntity("获取报表成功", entity);
|
return BaseResult.getFailureMessageEntity("请先输入报表名称");
|
||||||
}
|
}
|
||||||
|
if (entity.getClassifyId() == null || "".equals(entity.getClassifyId())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先选择分类");
|
||||||
|
}
|
||||||
|
if (entity.getPreviewAddress() == null || "".equals(entity.getPreviewAddress())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
|
}
|
||||||
|
entity.setUpdate();
|
||||||
|
//保存
|
||||||
|
reportManageDao.update(entity);
|
||||||
|
return BaseResult.getSuccessMessageEntity("修改报表成功");
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 修改报表
|
* @Description 删除报表
|
||||||
* @Date 2:37 下午 2024/3/27
|
* @Date 2:37 下午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity updateEntity(JSONObject jsonObject) {
|
public JsonResultEntity deleteEntity(JSONObject jsonObject) {
|
||||||
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
||||||
if (entity == null) {
|
if (entity == null) {
|
||||||
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
}
|
}
|
||||||
if (entity.getId() == null || "".equals(entity.getId())) {
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
return BaseResult.getFailureMessageEntity("系统错误");
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
}
|
}
|
||||||
if (entity.getReportId() == null || "".equals(entity.getReportId())) {
|
entity.setUpdate();
|
||||||
return BaseResult.getFailureMessageEntity("请先选择报表");
|
reportManageDao.logicRemove(entity);
|
||||||
}
|
return BaseResult.getSuccessMessageEntity("删除报表成功");
|
||||||
if (entity.getReportName() == null || "".equals(entity.getReportName())) {
|
}
|
||||||
return BaseResult.getFailureMessageEntity("请先输入报表名称");
|
|
||||||
}
|
|
||||||
if (entity.getClassifyId() == null || "".equals(entity.getClassifyId())) {
|
|
||||||
return BaseResult.getFailureMessageEntity("请先选择分类");
|
|
||||||
}
|
|
||||||
if (entity.getPreviewAddress() == null || "".equals(entity.getPreviewAddress())) {
|
|
||||||
return BaseResult.getFailureMessageEntity("系统错误");
|
|
||||||
}
|
|
||||||
entity.setUpdate();
|
|
||||||
//保存
|
|
||||||
reportManageDao.update(entity);
|
|
||||||
return BaseResult.getSuccessMessageEntity("修改报表成功");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 删除报表
|
* @Description 启用停用报表
|
||||||
* @Date 2:37 下午 2024/3/27
|
* @Date 2:37 下午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity deleteEntity(JSONObject jsonObject) {
|
public JsonResultEntity enableDisableEntity(JSONObject jsonObject) {
|
||||||
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
||||||
if (entity == null) {
|
if (entity == null) {
|
||||||
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
}
|
}
|
||||||
if (entity.getId() == null || "".equals(entity.getId())) {
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
return BaseResult.getFailureMessageEntity("系统错误");
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
}
|
}
|
||||||
entity.setUpdate();
|
if (entity.getState() == null || "".equals(entity.getState())) {
|
||||||
reportManageDao.logicRemove(entity);
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
return BaseResult.getSuccessMessageEntity("删除报表成功");
|
}
|
||||||
}
|
entity.setUpdate();
|
||||||
|
reportManageDao.update(entity);
|
||||||
|
//0启用 1 停用
|
||||||
|
if ("0".equals(entity.getState())) {
|
||||||
|
return BaseResult.getSuccessMessageEntity("启用用户成功");
|
||||||
|
} else {
|
||||||
|
return BaseResult.getSuccessMessageEntity("停用用户成功");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 启用停用报表
|
* @Description 查询报表
|
||||||
* @Date 2:37 下午 2024/3/27
|
* @Date 2:36 下午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity enableDisableEntity(JSONObject jsonObject) {
|
public JsonResultEntity queryReport(JSONObject jsonObject) {
|
||||||
ReportManageEntity entity = getData("jsonStr", jsonObject, ReportManageEntity.class);
|
JimuReportEntity entity = getData("jsonStr", jsonObject, JimuReportEntity.class);
|
||||||
if (entity == null) {
|
//判断分页
|
||||||
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
if (entity == null || entity.getPageNum() == null || entity.getPageSize() == null) {
|
||||||
}
|
return BaseResult.getFailureMessageEntity("分页查询参数不存在");
|
||||||
if (entity.getId() == null || "".equals(entity.getId())) {
|
}
|
||||||
return BaseResult.getFailureMessageEntity("系统错误");
|
PageHelper.startPage(entity.getPageNum(), entity.getPageSize());
|
||||||
}
|
List<JimuReportEntity> list = reportManageDao.queryReportNotUse(entity);
|
||||||
if (entity.getState() == null || "".equals(entity.getState())) {
|
PageInfo pageInfo = new PageInfo(list);
|
||||||
return BaseResult.getFailureMessageEntity("系统错误");
|
return BaseResult.getSuccessMessageEntity("查询数据成功", pageInfo);
|
||||||
}
|
}
|
||||||
entity.setUpdate();
|
|
||||||
reportManageDao.update(entity);
|
|
||||||
//0启用 1 停用
|
|
||||||
if ("0".equals(entity.getState())) {
|
|
||||||
return BaseResult.getSuccessMessageEntity("启用用户成功");
|
|
||||||
} else {
|
|
||||||
return BaseResult.getSuccessMessageEntity("停用用户成功");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 查询报表
|
* @Description 查询报表
|
||||||
* @Date 2:36 下午 2024/3/27
|
* @Date 2:36 下午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity queryReport(JSONObject jsonObject) {
|
public JsonResultEntity queryReportEntity(JSONObject jsonObject) {
|
||||||
JimuReportEntity entity = getData("jsonStr", jsonObject, JimuReportEntity.class);
|
JimuReportEntity entity = getData("jsonStr", jsonObject, JimuReportEntity.class);
|
||||||
//判断分页
|
if (entity == null) {
|
||||||
if (entity == null || entity.getPageNum() == null || entity.getPageSize() == null) {
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
return BaseResult.getFailureMessageEntity("分页查询参数不存在");
|
}
|
||||||
}
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
PageHelper.startPage(entity.getPageNum(), entity.getPageSize());
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
List<JimuReportEntity> list = reportManageDao.queryReportNotUse(entity);
|
}
|
||||||
PageInfo pageInfo = new PageInfo(list);
|
entity = reportManageDao.queryReportEntity(entity);
|
||||||
return BaseResult.getSuccessMessageEntity("查询数据成功", pageInfo);
|
if (entity == null) {
|
||||||
}
|
return BaseResult.getFailureMessageEntity("获取报表失败");
|
||||||
|
}
|
||||||
|
return BaseResult.getSuccessMessageEntity("获取报表成功", entity);
|
||||||
|
|
||||||
/**
|
}
|
||||||
* @param jsonObject
|
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
|
||||||
* @Author lvleigang
|
|
||||||
* @Description 查询报表
|
|
||||||
* @Date 2:36 下午 2024/3/27
|
|
||||||
**/
|
|
||||||
@Override
|
|
||||||
public JsonResultEntity queryReportEntity(JSONObject jsonObject) {
|
|
||||||
JimuReportEntity entity = getData("jsonStr", jsonObject, JimuReportEntity.class);
|
|
||||||
if (entity == null) {
|
|
||||||
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
|
||||||
}
|
|
||||||
if (entity.getId() == null || "".equals(entity.getId())) {
|
|
||||||
return BaseResult.getFailureMessageEntity("系统错误");
|
|
||||||
}
|
|
||||||
entity = reportManageDao.queryReportEntity(entity);
|
|
||||||
if (entity == null) {
|
|
||||||
return BaseResult.getFailureMessageEntity("获取报表失败");
|
|
||||||
}
|
|
||||||
return BaseResult.getSuccessMessageEntity("获取报表成功", entity);
|
|
||||||
|
|
||||||
}
|
/**
|
||||||
/**
|
* @param jsonObject
|
||||||
* @param jsonObject
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @Author lvleigang
|
||||||
* @Author lvleigang
|
* @Description 权限查询
|
||||||
* @Description 权限查询
|
* @Date 2:37 下午 2024/3/27
|
||||||
* @Date 2:37 下午 2024/3/27
|
**/
|
||||||
**/
|
@Override
|
||||||
@Override
|
public JsonResultEntity jurisdiction(JSONObject jsonObject) {
|
||||||
public JsonResultEntity jurisdiction(JSONObject jsonObject) {
|
|
||||||
|
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param jsonObject
|
* @param jsonObject
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
* @Author lvleigang
|
* @Author lvleigang
|
||||||
* @Description 保存权限查询
|
* @Description 保存权限查询
|
||||||
* @Date 2:37 下午 2024/3/27
|
* @Date 2:37 下午 2024/3/27
|
||||||
**/
|
**/
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity saveJurisdiction(JSONObject jsonObject) {
|
public JsonResultEntity saveJurisdiction(JSONObject jsonObject) {
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,10 +66,51 @@
|
||||||
</sql>
|
</sql>
|
||||||
<!-- 采用==查询 -->
|
<!-- 采用==查询 -->
|
||||||
<select id="PaymentEntity_list_base" resultMap="get-PaymentEntity-result" parameterType="com.hzya.frame.seeyon.cbs8.entity.PaymentEntity">
|
<select id="PaymentEntity_list_base" resultMap="get-PaymentEntity-result" parameterType="com.hzya.frame.seeyon.cbs8.entity.PaymentEntity">
|
||||||
select
|
<!-- select
|
||||||
<include refid="PaymentEntity_Base_Column_List"/>
|
<include refid="PaymentEntity_Base_Column_List"/>
|
||||||
from
|
from
|
||||||
v_hzya_oa_cbs_all
|
v_hzya_oa_cbs_all-->
|
||||||
|
-- 差旅费报销单
|
||||||
|
SELECT
|
||||||
|
formson_0210.id as oaId, -- 主表id
|
||||||
|
'formson_0210' as tableName, -- 表名
|
||||||
|
COL_SUMMARY.SUBJECT as title, -- 单据标题
|
||||||
|
unit.name as payCompany, -- 付款公司
|
||||||
|
'差旅费报销单' as billName,
|
||||||
|
'field0072' as payResultField, -- 支付结果字段
|
||||||
|
'field0073' as payDateField, -- 打款日期字段
|
||||||
|
'' as receiptFiled,-- 电子回单字段
|
||||||
|
COL_SUMMARY.id as summaryId,
|
||||||
|
formmain_0209.field0017||'-'||formson_0210.sort as referenceNum, -- 单据编号
|
||||||
|
formmain_0209.START_DATE as startDate, -- 单据日期
|
||||||
|
formmain_0209.FINISHEDFLAG as finishedflag, -- 流程状态
|
||||||
|
formson_0210.field0073 as payDate, -- 打款日期
|
||||||
|
formson_0210.field0072 as payResult, -- 支付结果
|
||||||
|
REGEXP_REPLACE(formmain_0209.field0042, '[[:space:]]', '') as payAccount, -- 付款账户
|
||||||
|
REGEXP_REPLACE(formmain_0209.field0041, '[[:space:]]', '') as payBankName, -- 付款开户行
|
||||||
|
formson_0210.field0031 as amount, -- 金额
|
||||||
|
formmain_0209.field0038 as purpose, -- 用途
|
||||||
|
formmain_0209.field0038 as cbsAbstract, -- 摘要
|
||||||
|
REGEXP_REPLACE(formson_0210.field0069, '[[:space:]]', '') as revAccount, -- 收款账户
|
||||||
|
formson_0210.field0068 as revBankName, -- 收款开户行
|
||||||
|
'' as revAccountName, -- 收款人
|
||||||
|
REGEXP_REPLACE(formson_0210.field0071, '[[:space:]]', '') as cnapsCode, -- 收款联行号
|
||||||
|
item.showvalue as personalFlag,-- 公私标记
|
||||||
|
'' as revBankType,-- 收款银行类型
|
||||||
|
'10' as currency,-- 币种
|
||||||
|
'' as busType,-- 业务类型
|
||||||
|
'' as receipt -- 电子回单
|
||||||
|
from
|
||||||
|
formson_0210
|
||||||
|
LEFT JOIN formmain_0209 ON formson_0210.FORMMAIN_ID = formmain_0209.id
|
||||||
|
LEFT JOIN COL_SUMMARY ON COL_SUMMARY.FORM_RECORDID = formmain_0209.id
|
||||||
|
LEFT JOIN CTP_AFFAIR ON CTP_AFFAIR.object_id = COL_SUMMARY.id
|
||||||
|
left join CTP_ENUM_ITEM item on item.id =formson_0210.field0070
|
||||||
|
left join ORG_UNIT unit on unit.id =formmain_0209.field0002
|
||||||
|
-- left join V_USER_VIEW_ALL us on us.staffid=formmain_0209.field0024
|
||||||
|
WHERE 1=1
|
||||||
|
-- and formson_0210.field0031>0
|
||||||
|
and CTP_AFFAIR.node_name = '发起者' and CTP_AFFAIR.COMPLETE_TIME is null and CTP_AFFAIR.STATE = 3
|
||||||
<trim prefix="where" prefixOverrides="and">
|
<trim prefix="where" prefixOverrides="and">
|
||||||
<if test="referenceNum != null and referenceNum !='' "> referenceNum = #{referenceNum} </if>
|
<if test="referenceNum != null and referenceNum !='' "> referenceNum = #{referenceNum} </if>
|
||||||
<if test="busType != null and busType !='' "> and busType = #{busType} </if>
|
<if test="busType != null and busType !='' "> and busType = #{busType} </if>
|
||||||
|
@ -97,10 +138,51 @@
|
||||||
|
|
||||||
<!-- 查询交易成功,且电子回单为空的,上传电子回单用 -->
|
<!-- 查询交易成功,且电子回单为空的,上传电子回单用 -->
|
||||||
<select id="PaymentEntity_list_base_elec_isnull" resultMap="get-PaymentEntity-result" parameterType="com.hzya.frame.seeyon.cbs8.entity.PaymentEntity">
|
<select id="PaymentEntity_list_base_elec_isnull" resultMap="get-PaymentEntity-result" parameterType="com.hzya.frame.seeyon.cbs8.entity.PaymentEntity">
|
||||||
select
|
<!-- select
|
||||||
<include refid="PaymentEntity_Base_Column_List"/>
|
<include refid="PaymentEntity_Base_Column_List"/>
|
||||||
from
|
from
|
||||||
v_hzya_oa_cbs_all
|
v_hzya_oa_cbs_all-->
|
||||||
|
-- 差旅费报销单
|
||||||
|
SELECT
|
||||||
|
formson_0210.id as oaId, -- 主表id
|
||||||
|
'formson_0210' as tableName, -- 表名
|
||||||
|
COL_SUMMARY.SUBJECT as title, -- 单据标题
|
||||||
|
unit.name as payCompany, -- 付款公司
|
||||||
|
'差旅费报销单' as billName,
|
||||||
|
'field0072' as payResultField, -- 支付结果字段
|
||||||
|
'field0073' as payDateField, -- 打款日期字段
|
||||||
|
'' as receiptFiled,-- 电子回单字段
|
||||||
|
COL_SUMMARY.id as summaryId,
|
||||||
|
formmain_0209.field0017||'-'||formson_0210.sort as referenceNum, -- 单据编号
|
||||||
|
formmain_0209.START_DATE as startDate, -- 单据日期
|
||||||
|
formmain_0209.FINISHEDFLAG as finishedflag, -- 流程状态
|
||||||
|
formson_0210.field0073 as payDate, -- 打款日期
|
||||||
|
formson_0210.field0072 as payResult, -- 支付结果
|
||||||
|
REGEXP_REPLACE(formmain_0209.field0042, '[[:space:]]', '') as payAccount, -- 付款账户
|
||||||
|
REGEXP_REPLACE(formmain_0209.field0041, '[[:space:]]', '') as payBankName, -- 付款开户行
|
||||||
|
formson_0210.field0031 as amount, -- 金额
|
||||||
|
formmain_0209.field0038 as purpose, -- 用途
|
||||||
|
formmain_0209.field0038 as cbsAbstract, -- 摘要
|
||||||
|
REGEXP_REPLACE(formson_0210.field0069, '[[:space:]]', '') as revAccount, -- 收款账户
|
||||||
|
formson_0210.field0068 as revBankName, -- 收款开户行
|
||||||
|
'' as revAccountName, -- 收款人
|
||||||
|
REGEXP_REPLACE(formson_0210.field0071, '[[:space:]]', '') as cnapsCode, -- 收款联行号
|
||||||
|
item.showvalue as personalFlag,-- 公私标记
|
||||||
|
'' as revBankType,-- 收款银行类型
|
||||||
|
'10' as currency,-- 币种
|
||||||
|
'' as busType,-- 业务类型
|
||||||
|
'' as receipt -- 电子回单
|
||||||
|
from
|
||||||
|
formson_0210
|
||||||
|
LEFT JOIN formmain_0209 ON formson_0210.FORMMAIN_ID = formmain_0209.id
|
||||||
|
LEFT JOIN COL_SUMMARY ON COL_SUMMARY.FORM_RECORDID = formmain_0209.id
|
||||||
|
LEFT JOIN CTP_AFFAIR ON CTP_AFFAIR.object_id = COL_SUMMARY.id
|
||||||
|
left join CTP_ENUM_ITEM item on item.id =formson_0210.field0070
|
||||||
|
left join ORG_UNIT unit on unit.id =formmain_0209.field0002
|
||||||
|
-- left join V_USER_VIEW_ALL us on us.staffid=formmain_0209.field0024
|
||||||
|
WHERE 1=1
|
||||||
|
-- and formson_0210.field0031>0
|
||||||
|
and CTP_AFFAIR.node_name = '发起者' and CTP_AFFAIR.COMPLETE_TIME is null and CTP_AFFAIR.STATE = 3
|
||||||
<trim prefix="where" prefixOverrides="and">
|
<trim prefix="where" prefixOverrides="and">
|
||||||
<if test="referenceNum != null and referenceNum !='' "> referenceNum = #{referenceNum} </if>
|
<if test="referenceNum != null and referenceNum !='' "> referenceNum = #{referenceNum} </if>
|
||||||
<if test="busType != null and busType !='' "> and busType = #{busType} </if>
|
<if test="busType != null and busType !='' "> and busType = #{busType} </if>
|
||||||
|
@ -127,10 +209,51 @@
|
||||||
</select>
|
</select>
|
||||||
<!-- 查询推送状态为null的,代表没有发送请求或者请求客户服务器没有返回的 采用==查询 -->
|
<!-- 查询推送状态为null的,代表没有发送请求或者请求客户服务器没有返回的 采用==查询 -->
|
||||||
<select id="PaymentEntity_list_base_unpaid" resultMap="get-PaymentEntity-result" parameterType="com.hzya.frame.seeyon.cbs8.entity.PaymentEntity">
|
<select id="PaymentEntity_list_base_unpaid" resultMap="get-PaymentEntity-result" parameterType="com.hzya.frame.seeyon.cbs8.entity.PaymentEntity">
|
||||||
select
|
<!--select
|
||||||
<include refid="PaymentEntity_Base_Column_List"/>
|
<include refid="PaymentEntity_Base_Column_List"/>
|
||||||
from
|
from
|
||||||
v_hzya_oa_cbs
|
v_hzya_oa_cbs-->
|
||||||
|
-- 差旅费报销单
|
||||||
|
SELECT
|
||||||
|
formson_0210.id as oaId, -- 主表id
|
||||||
|
'formson_0210' as tableName, -- 表名
|
||||||
|
COL_SUMMARY.SUBJECT as title, -- 单据标题
|
||||||
|
unit.name as payCompany, -- 付款公司
|
||||||
|
'差旅费报销单' as billName,
|
||||||
|
'field0072' as payResultField, -- 支付结果字段
|
||||||
|
'field0073' as payDateField, -- 打款日期字段
|
||||||
|
'' as receiptFiled,-- 电子回单字段
|
||||||
|
COL_SUMMARY.id as summaryId,
|
||||||
|
formmain_0209.field0017||'-'||formson_0210.sort as referenceNum, -- 单据编号
|
||||||
|
formmain_0209.START_DATE as startDate, -- 单据日期
|
||||||
|
formmain_0209.FINISHEDFLAG as finishedflag, -- 流程状态
|
||||||
|
formson_0210.field0073 as payDate, -- 打款日期
|
||||||
|
formson_0210.field0072 as payResult, -- 支付结果
|
||||||
|
REGEXP_REPLACE(formmain_0209.field0042, '[[:space:]]', '') as payAccount, -- 付款账户
|
||||||
|
REGEXP_REPLACE(formmain_0209.field0041, '[[:space:]]', '') as payBankName, -- 付款开户行
|
||||||
|
formson_0210.field0031 as amount, -- 金额
|
||||||
|
formmain_0209.field0038 as purpose, -- 用途
|
||||||
|
formmain_0209.field0038 as cbsAbstract, -- 摘要
|
||||||
|
REGEXP_REPLACE(formson_0210.field0069, '[[:space:]]', '') as revAccount, -- 收款账户
|
||||||
|
formson_0210.field0068 as revBankName, -- 收款开户行
|
||||||
|
'' as revAccountName, -- 收款人
|
||||||
|
REGEXP_REPLACE(formson_0210.field0071, '[[:space:]]', '') as cnapsCode, -- 收款联行号
|
||||||
|
item.showvalue as personalFlag,-- 公私标记
|
||||||
|
'' as revBankType,-- 收款银行类型
|
||||||
|
'10' as currency,-- 币种
|
||||||
|
'' as busType,-- 业务类型
|
||||||
|
'' as receipt -- 电子回单
|
||||||
|
from
|
||||||
|
formson_0210
|
||||||
|
LEFT JOIN formmain_0209 ON formson_0210.FORMMAIN_ID = formmain_0209.id
|
||||||
|
LEFT JOIN COL_SUMMARY ON COL_SUMMARY.FORM_RECORDID = formmain_0209.id
|
||||||
|
LEFT JOIN CTP_AFFAIR ON CTP_AFFAIR.object_id = COL_SUMMARY.id
|
||||||
|
left join CTP_ENUM_ITEM item on item.id =formson_0210.field0070
|
||||||
|
left join ORG_UNIT unit on unit.id =formmain_0209.field0002
|
||||||
|
-- left join V_USER_VIEW_ALL us on us.staffid=formmain_0209.field0024
|
||||||
|
WHERE 1=1
|
||||||
|
-- and formson_0210.field0031>0
|
||||||
|
and CTP_AFFAIR.node_name = '发起者' and CTP_AFFAIR.COMPLETE_TIME is null and CTP_AFFAIR.STATE = 3
|
||||||
<trim prefix="where" prefixOverrides="and">
|
<trim prefix="where" prefixOverrides="and">
|
||||||
<if test="referenceNum != null and referenceNum !='' "> referenceNum = #{referenceNum} </if>
|
<if test="referenceNum != null and referenceNum !='' "> referenceNum = #{referenceNum} </if>
|
||||||
<if test="busType != null and busType !='' "> and busType = #{busType} </if>
|
<if test="busType != null and busType !='' "> and busType = #{busType} </if>
|
||||||
|
|
|
@ -19,7 +19,7 @@ import java.util.List;
|
||||||
public class PaymentServiceImpl extends BaseService<PaymentEntity,String> implements IPaymentService {
|
public class PaymentServiceImpl extends BaseService<PaymentEntity,String> implements IPaymentService {
|
||||||
|
|
||||||
|
|
||||||
public static final String oa_datasource_code = "123";
|
|
||||||
private IPaymentDao paymentDao;
|
private IPaymentDao paymentDao;
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
package com.hzya.frame.sysnew.application.api.entity;
|
package com.hzya.frame.sysnew.application.api.entity;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONArray;
|
||||||
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.hzya.frame.web.entity.BaseEntity;
|
import com.hzya.frame.web.entity.BaseEntity;
|
||||||
/**
|
/**
|
||||||
* 应用api(SysApplicationApi)实体类
|
* 应用api(SysApplicationApi)实体类
|
||||||
|
@ -301,5 +306,38 @@ public class SysApplicationApiEntity extends BaseEntity {
|
||||||
public void setAppUrl(String appUrl) {
|
public void setAppUrl(String appUrl) {
|
||||||
this.appUrl = appUrl;
|
this.appUrl = appUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<JSONObject> getHeaderInValue() {
|
||||||
|
List<JSONObject> jsonObjects = new ArrayList<>();
|
||||||
|
if(headerIn != null && !"".equals(headerIn)){
|
||||||
|
JSONArray headers = JSONArray.parseArray(headerIn);
|
||||||
|
if(headers != null && headers.size() > 0){
|
||||||
|
for (int i = 0; i < headers.size(); i++) {
|
||||||
|
JSONObject object = new JSONObject();
|
||||||
|
object.put(headers.getJSONObject(i).getString("parameterName"),headers.getJSONObject(i).getString("example"));
|
||||||
|
jsonObjects.add(object);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return jsonObjects;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getQueryInValue() {
|
||||||
|
StringBuffer jsonObjects = new StringBuffer();
|
||||||
|
if(queryIn != null && !"".equals(queryIn)){
|
||||||
|
JSONArray querys = JSONArray.parseArray(queryIn);
|
||||||
|
if(querys != null && querys.size() > 0){
|
||||||
|
for (int i = 0; i < querys.size(); i++) {
|
||||||
|
if(i != 0){
|
||||||
|
jsonObjects.append("&");
|
||||||
|
}
|
||||||
|
jsonObjects.append(querys.getJSONObject(i).getString("parameterName"));
|
||||||
|
jsonObjects.append("=");
|
||||||
|
jsonObjects.append(querys.getJSONObject(i).getString("example"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return jsonObjects.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@
|
||||||
a.id,
|
a.id,
|
||||||
a.api_status,
|
a.api_status,
|
||||||
b.name as app_name,
|
b.name as app_name,
|
||||||
b.interfaceAddress as app_url,
|
b.interface_address as app_url,
|
||||||
a.app_id,
|
a.app_id,
|
||||||
a.catalogue_id,
|
a.catalogue_id,
|
||||||
c.name as catalogue_name,
|
c.name as catalogue_name,
|
||||||
|
@ -704,7 +704,7 @@ where id = #{id}
|
||||||
<!-- </trim>-->
|
<!-- </trim>-->
|
||||||
<!-- order by a.sorts asc-->
|
<!-- order by a.sorts asc-->
|
||||||
<!-- </select>-->
|
<!-- </select>-->
|
||||||
<select id="queryVoList" databaseId="mysql" resultType="com.hzya.frame.sysnew.application.api.entity.SysApplicationApiVo" parameterType="com.hzya.frame.sysnew.application.api.entity.SysApplicationApiEntity">
|
<select id="queryVoList" resultType="com.hzya.frame.sysnew.application.api.entity.SysApplicationApiVo" parameterType="com.hzya.frame.sysnew.application.api.entity.SysApplicationApiEntity">
|
||||||
select
|
select
|
||||||
a.id,
|
a.id,
|
||||||
a.catalogue_id AS catalogueId,
|
a.catalogue_id AS catalogueId,
|
||||||
|
|
|
@ -59,7 +59,8 @@ public class SysApplicationDto {
|
||||||
private String systemAddress;
|
private String systemAddress;
|
||||||
//api接口参数表
|
//api接口参数表
|
||||||
private List<SysApplicationApiParaEntity> apiParas;
|
private List<SysApplicationApiParaEntity> apiParas;
|
||||||
|
/** 系统类型 1、致远OA 2、用友U8C 3、用友BIP */
|
||||||
|
private String appType;
|
||||||
//数据源
|
//数据源
|
||||||
private SysApplicationDatabaseEntity databaseEntity;
|
private SysApplicationDatabaseEntity databaseEntity;
|
||||||
private Integer pageNum;
|
private Integer pageNum;
|
||||||
|
@ -262,5 +263,13 @@ public class SysApplicationDto {
|
||||||
public void setSystemAddress(String systemAddress) {
|
public void setSystemAddress(String systemAddress) {
|
||||||
this.systemAddress = systemAddress;
|
this.systemAddress = systemAddress;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getAppType() {
|
||||||
|
return appType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAppType(String appType) {
|
||||||
|
this.appType = appType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,8 @@ public class SysApplicationEntity extends BaseEntity {
|
||||||
/** 数据源是否启用(1、开启 2、关闭) */
|
/** 数据源是否启用(1、开启 2、关闭) */
|
||||||
private String dbStatus;
|
private String dbStatus;
|
||||||
|
|
||||||
|
/** 系统类型 1、致远OA 2、用友U8C 3、用友BIP */
|
||||||
|
private String appType;
|
||||||
/** appid */
|
/** appid */
|
||||||
private Integer appId;
|
private Integer appId;
|
||||||
/** ip白名单 */
|
/** ip白名单 */
|
||||||
|
@ -191,5 +193,13 @@ public class SysApplicationEntity extends BaseEntity {
|
||||||
public void setSystemAddress(String systemAddress) {
|
public void setSystemAddress(String systemAddress) {
|
||||||
this.systemAddress = systemAddress;
|
this.systemAddress = systemAddress;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getAppType() {
|
||||||
|
return appType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAppType(String appType) {
|
||||||
|
this.appType = appType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
<result property="interfaceAddress" column="interface_address" jdbcType="VARCHAR"/>
|
<result property="interfaceAddress" column="interface_address" jdbcType="VARCHAR"/>
|
||||||
<result property="interfaceStatus" column="interface_status" jdbcType="VARCHAR"/>
|
<result property="interfaceStatus" column="interface_status" jdbcType="VARCHAR"/>
|
||||||
<result property="dbStatus" column="db_status" jdbcType="VARCHAR"/>
|
<result property="dbStatus" column="db_status" jdbcType="VARCHAR"/>
|
||||||
|
<result property="appType" column="app_type" jdbcType="VARCHAR"/>
|
||||||
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
|
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
|
||||||
<result property="org_id" column="org_id" jdbcType="VARCHAR"/>
|
<result property="org_id" column="org_id" jdbcType="VARCHAR"/>
|
||||||
<result property="sts" column="sts" jdbcType="VARCHAR"/>
|
<result property="sts" column="sts" jdbcType="VARCHAR"/>
|
||||||
|
@ -51,7 +52,8 @@
|
||||||
,interface_address
|
,interface_address
|
||||||
,interface_status
|
,interface_status
|
||||||
,db_status
|
,db_status
|
||||||
,sorts
|
,app_type
|
||||||
|
,sorts
|
||||||
,org_id
|
,org_id
|
||||||
,sts
|
,sts
|
||||||
,create_time
|
,create_time
|
||||||
|
@ -90,6 +92,7 @@
|
||||||
<if test="interfaceAddress != null and interfaceAddress != ''"> and interface_address = #{interfaceAddress} </if>
|
<if test="interfaceAddress != null and interfaceAddress != ''"> and interface_address = #{interfaceAddress} </if>
|
||||||
<if test="interfaceStatus != null and interfaceStatus != ''"> and interface_status = #{interfaceStatus} </if>
|
<if test="interfaceStatus != null and interfaceStatus != ''"> and interface_status = #{interfaceStatus} </if>
|
||||||
<if test="dbStatus != null and dbStatus != ''"> and db_status = #{dbStatus} </if>
|
<if test="dbStatus != null and dbStatus != ''"> and db_status = #{dbStatus} </if>
|
||||||
|
<if test="appType != null and appType != ''"> and app_type = #{appType} </if>
|
||||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
<if test="org_id != null and org_id != ''"> and org_id = #{org_id} </if>
|
<if test="org_id != null and org_id != ''"> and org_id = #{org_id} </if>
|
||||||
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||||
|
@ -126,6 +129,7 @@
|
||||||
<if test="interfaceAddress != null and interfaceAddress != ''"> and interface_address = #{interfaceAddress} </if>
|
<if test="interfaceAddress != null and interfaceAddress != ''"> and interface_address = #{interfaceAddress} </if>
|
||||||
<if test="interfaceStatus != null and interfaceStatus != ''"> and interface_status = #{interfaceStatus} </if>
|
<if test="interfaceStatus != null and interfaceStatus != ''"> and interface_status = #{interfaceStatus} </if>
|
||||||
<if test="dbStatus != null and dbStatus != ''"> and db_status = #{dbStatus} </if>
|
<if test="dbStatus != null and dbStatus != ''"> and db_status = #{dbStatus} </if>
|
||||||
|
<if test="appType != null and appType != ''"> and app_type = #{appType} </if>
|
||||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
<if test="org_id != null and org_id != ''"> and org_id = #{org_id} </if>
|
<if test="org_id != null and org_id != ''"> and org_id = #{org_id} </if>
|
||||||
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||||
|
@ -164,6 +168,7 @@
|
||||||
<if test="interfaceAddress != null and interfaceAddress != ''"> and interface_address like concat('%',#{interfaceAddress},'%') </if>
|
<if test="interfaceAddress != null and interfaceAddress != ''"> and interface_address like concat('%',#{interfaceAddress},'%') </if>
|
||||||
<if test="interfaceStatus != null and interfaceStatus != ''"> and interface_status like concat('%',#{interfaceStatus},'%') </if>
|
<if test="interfaceStatus != null and interfaceStatus != ''"> and interface_status like concat('%',#{interfaceStatus},'%') </if>
|
||||||
<if test="dbStatus != null and dbStatus != ''"> and db_status like concat('%',#{dbStatus},'%') </if>
|
<if test="dbStatus != null and dbStatus != ''"> and db_status like concat('%',#{dbStatus},'%') </if>
|
||||||
|
<if test="appType != null and appType != ''"> and app_type like concat('%',#{appType},'%') </if>
|
||||||
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
|
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
|
||||||
<if test="org_id != null and org_id != ''"> and org_id like concat('%',#{org_id},'%') </if>
|
<if test="org_id != null and org_id != ''"> and org_id like concat('%',#{org_id},'%') </if>
|
||||||
<if test="sts != null and sts != ''"> and sts like concat('%',#{sts},'%') </if>
|
<if test="sts != null and sts != ''"> and sts like concat('%',#{sts},'%') </if>
|
||||||
|
@ -202,6 +207,7 @@
|
||||||
<if test="interfaceAddress != null and interfaceAddress != ''"> or interface_address = #{interfaceAddress} </if>
|
<if test="interfaceAddress != null and interfaceAddress != ''"> or interface_address = #{interfaceAddress} </if>
|
||||||
<if test="interfaceStatus != null and interfaceStatus != ''"> or interface_status = #{interfaceStatus} </if>
|
<if test="interfaceStatus != null and interfaceStatus != ''"> or interface_status = #{interfaceStatus} </if>
|
||||||
<if test="dbStatus != null and dbStatus != ''"> or db_status = #{dbStatus} </if>
|
<if test="dbStatus != null and dbStatus != ''"> or db_status = #{dbStatus} </if>
|
||||||
|
<if test="appType != null and appType != ''"> or app_type = #{appType} </if>
|
||||||
<if test="sorts != null"> or sorts = #{sorts} </if>
|
<if test="sorts != null"> or sorts = #{sorts} </if>
|
||||||
<if test="org_id != null and org_id != ''"> or org_id = #{org_id} </if>
|
<if test="org_id != null and org_id != ''"> or org_id = #{org_id} </if>
|
||||||
<if test="sts != null and sts != ''"> or sts = #{sts} </if>
|
<if test="sts != null and sts != ''"> or sts = #{sts} </if>
|
||||||
|
@ -239,6 +245,7 @@
|
||||||
<if test="interfaceAddress != null and interfaceAddress != ''"> interface_address , </if>
|
<if test="interfaceAddress != null and interfaceAddress != ''"> interface_address , </if>
|
||||||
<if test="interfaceStatus != null and interfaceStatus != ''"> interface_status , </if>
|
<if test="interfaceStatus != null and interfaceStatus != ''"> interface_status , </if>
|
||||||
<if test="dbStatus != null and dbStatus != ''"> db_status , </if>
|
<if test="dbStatus != null and dbStatus != ''"> db_status , </if>
|
||||||
|
<if test="appType != null and appType != ''"> app_type , </if>
|
||||||
<if test="sorts != null"> sorts , </if>
|
<if test="sorts != null"> sorts , </if>
|
||||||
<if test="org_id != null and org_id != ''"> org_id , </if>
|
<if test="org_id != null and org_id != ''"> org_id , </if>
|
||||||
<if test="sts != null and sts != ''"> sts , </if>
|
<if test="sts != null and sts != ''"> sts , </if>
|
||||||
|
@ -271,6 +278,7 @@
|
||||||
<if test="interfaceAddress != null and interfaceAddress != ''"> #{interfaceAddress} ,</if>
|
<if test="interfaceAddress != null and interfaceAddress != ''"> #{interfaceAddress} ,</if>
|
||||||
<if test="interfaceStatus != null and interfaceStatus != ''"> #{interfaceStatus} ,</if>
|
<if test="interfaceStatus != null and interfaceStatus != ''"> #{interfaceStatus} ,</if>
|
||||||
<if test="dbStatus != null and dbStatus != ''"> #{dbStatus} ,</if>
|
<if test="dbStatus != null and dbStatus != ''"> #{dbStatus} ,</if>
|
||||||
|
<if test="appType != null and appType != ''"> #{appType} ,</if>
|
||||||
<if test="sorts != null"> #{sorts} ,</if>
|
<if test="sorts != null"> #{sorts} ,</if>
|
||||||
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
||||||
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
||||||
|
@ -285,18 +293,18 @@
|
||||||
</insert>
|
</insert>
|
||||||
<!-- 批量新增 -->
|
<!-- 批量新增 -->
|
||||||
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
|
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
|
||||||
insert into sys_application(app_logo, app_status, name, version_number, app_id, system_address, access_mode, affiliation_field, manufacturer, app_introduction, client_path, web_path, program_path, public_key, secret_key, interface_address, interface_status, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id, sts)
|
insert into sys_application(app_logo, app_status, name, version_number, app_id, system_address, access_mode, affiliation_field, manufacturer, app_introduction, client_path, web_path, program_path, public_key, secret_key, interface_address, interface_status, db_status,app_type, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id, sts)
|
||||||
values
|
values
|
||||||
<foreach collection="entities" item="entity" separator=",">
|
<foreach collection="entities" item="entity" separator=",">
|
||||||
(#{entity.appLogo},#{entity.appStatus},#{entity.name},#{entity.versionNumber},#{entity.appId},#{entity.systemAddress},#{entity.accessMode},#{entity.affiliationField},#{entity.manufacturer},#{entity.appIntroduction},#{entity.clientPath},#{entity.webPath},#{entity.programPath},#{entity.publicKey},#{entity.secretKey},#{entity.interfaceAddress},#{entity.interfaceStatus},#{entity.dbStatus},#{entity.sorts},#{entity.org_id},#{entity.sts},#{entity.create_time},#{entity.create_user_id},#{entity.modify_time},#{entity.modify_user_id}, 'Y')
|
(#{entity.appLogo},#{entity.appStatus},#{entity.name},#{entity.versionNumber},#{entity.appId},#{entity.systemAddress},#{entity.accessMode},#{entity.affiliationField},#{entity.manufacturer},#{entity.appIntroduction},#{entity.clientPath},#{entity.webPath},#{entity.programPath},#{entity.publicKey},#{entity.secretKey},#{entity.interfaceAddress},#{entity.interfaceStatus},#{entity.dbStatus},#{entity.appType},#{entity.sorts},#{entity.org_id},#{entity.sts},#{entity.create_time},#{entity.create_user_id},#{entity.modify_time},#{entity.modify_user_id}, 'Y')
|
||||||
</foreach>
|
</foreach>
|
||||||
</insert>
|
</insert>
|
||||||
<!-- 批量新增或者修改-->
|
<!-- 批量新增或者修改-->
|
||||||
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
|
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
|
||||||
insert into sys_application(app_logo, app_status, name, version_number,app_id,system_address, access_mode, affiliation_field, manufacturer, app_introduction, client_path, web_path, program_path, public_key, secret_key, interface_address, interface_status, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id)
|
insert into sys_application(app_logo, app_status, name, version_number,app_id,system_address, access_mode, affiliation_field, manufacturer, app_introduction, client_path, web_path, program_path, public_key, secret_key, interface_address, interface_status, db_status,app_type, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id)
|
||||||
values
|
values
|
||||||
<foreach collection="entities" item="entity" separator=",">
|
<foreach collection="entities" item="entity" separator=",">
|
||||||
(#{entity.appLogo},#{entity.appStatus},#{entity.name},#{entity.versionNumber},#{entity.appId},#{entity.systemAddress},#{entity.accessMode},#{entity.affiliationField},#{entity.manufacturer},#{entity.appIntroduction},#{entity.clientPath},#{entity.webPath},#{entity.programPath},#{entity.publicKey},#{entity.secretKey},#{entity.interfaceAddress},#{entity.interfaceStatus},#{entity.dbStatus},#{entity.sorts},#{entity.org_id},#{entity.sts},#{entity.create_time},#{entity.create_user_id},#{entity.modify_time},#{entity.modify_user_id})
|
(#{entity.appLogo},#{entity.appStatus},#{entity.name},#{entity.versionNumber},#{entity.appId},#{entity.systemAddress},#{entity.accessMode},#{entity.affiliationField},#{entity.manufacturer},#{entity.appIntroduction},#{entity.clientPath},#{entity.webPath},#{entity.programPath},#{entity.publicKey},#{entity.secretKey},#{entity.interfaceAddress},#{entity.interfaceStatus},#{entity.dbStatus},#{entity.appType},#{entity.sorts},#{entity.org_id},#{entity.sts},#{entity.create_time},#{entity.create_user_id},#{entity.modify_time},#{entity.modify_user_id})
|
||||||
</foreach>
|
</foreach>
|
||||||
on duplicate key update
|
on duplicate key update
|
||||||
app_logo = values(app_logo),
|
app_logo = values(app_logo),
|
||||||
|
@ -317,6 +325,7 @@
|
||||||
interface_address = values(interface_address),
|
interface_address = values(interface_address),
|
||||||
interface_status = values(interface_status),
|
interface_status = values(interface_status),
|
||||||
db_status = values(db_status),
|
db_status = values(db_status),
|
||||||
|
app_type = values(app_type),
|
||||||
sorts = values(sorts),
|
sorts = values(sorts),
|
||||||
org_id = values(org_id),
|
org_id = values(org_id),
|
||||||
sts = values(sts),
|
sts = values(sts),
|
||||||
|
@ -346,6 +355,7 @@ update sys_application set
|
||||||
<if test="interfaceAddress != null and interfaceAddress != ''"> interface_address = #{interfaceAddress},</if>
|
<if test="interfaceAddress != null and interfaceAddress != ''"> interface_address = #{interfaceAddress},</if>
|
||||||
<if test="interfaceStatus != null and interfaceStatus != ''"> interface_status = #{interfaceStatus},</if>
|
<if test="interfaceStatus != null and interfaceStatus != ''"> interface_status = #{interfaceStatus},</if>
|
||||||
<if test="dbStatus != null and dbStatus != ''"> db_status = #{dbStatus},</if>
|
<if test="dbStatus != null and dbStatus != ''"> db_status = #{dbStatus},</if>
|
||||||
|
<if test="appType != null and appType != ''"> app_type = #{appType},</if>
|
||||||
<if test="sorts != null"> sorts = #{sorts},</if>
|
<if test="sorts != null"> sorts = #{sorts},</if>
|
||||||
<if test="org_id != null and org_id != ''"> org_id = #{org_id},</if>
|
<if test="org_id != null and org_id != ''"> org_id = #{org_id},</if>
|
||||||
<if test="sts != null and sts != ''"> sts = #{sts},</if>
|
<if test="sts != null and sts != ''"> sts = #{sts},</if>
|
||||||
|
@ -384,6 +394,7 @@ update sys_application set sts= 'N' ,modify_time = #{modify_time},modify_user_i
|
||||||
<if test="interfaceAddress != null and interfaceAddress != ''"> and interface_address = #{interfaceAddress} </if>
|
<if test="interfaceAddress != null and interfaceAddress != ''"> and interface_address = #{interfaceAddress} </if>
|
||||||
<if test="interfaceStatus != null and interfaceStatus != ''"> and interface_status = #{interfaceStatus} </if>
|
<if test="interfaceStatus != null and interfaceStatus != ''"> and interface_status = #{interfaceStatus} </if>
|
||||||
<if test="dbStatus != null and dbStatus != ''"> and db_status = #{dbStatus} </if>
|
<if test="dbStatus != null and dbStatus != ''"> and db_status = #{dbStatus} </if>
|
||||||
|
<if test="appType != null and appType != ''"> and app_type = #{appType} </if>
|
||||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||||
and sts='Y'
|
and sts='Y'
|
||||||
|
@ -411,6 +422,7 @@ update sys_application set sts= 'N' ,modify_time = #{modify_time},modify_user_i
|
||||||
,a.app_introduction as appIntroduction
|
,a.app_introduction as appIntroduction
|
||||||
,a.interface_status as interfaceStatus
|
,a.interface_status as interfaceStatus
|
||||||
,a.db_status as dbStatus
|
,a.db_status as dbStatus
|
||||||
|
,a.app_type as appType
|
||||||
from sys_application a
|
from sys_application a
|
||||||
<trim prefix="where" prefixOverrides="and">
|
<trim prefix="where" prefixOverrides="and">
|
||||||
<if test="affiliationField != null and affiliationField != ''"> and a.affiliation_field = #{affiliationField} </if>
|
<if test="affiliationField != null and affiliationField != ''"> and a.affiliation_field = #{affiliationField} </if>
|
||||||
|
|
|
@ -37,6 +37,8 @@ public class SysApplicationVo {
|
||||||
/** 应用是否启用(1、启用 2、停用) */
|
/** 应用是否启用(1、启用 2、停用) */
|
||||||
private String appStatus;
|
private String appStatus;
|
||||||
|
|
||||||
|
/** 系统类型 1、致远OA 2、用友U8C 3、用友BIP */
|
||||||
|
private String appType;
|
||||||
public String getId() {
|
public String getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
@ -148,5 +150,13 @@ public class SysApplicationVo {
|
||||||
public void setSystemAddress(String systemAddress) {
|
public void setSystemAddress(String systemAddress) {
|
||||||
this.systemAddress = systemAddress;
|
this.systemAddress = systemAddress;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getAppType() {
|
||||||
|
return appType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAppType(String appType) {
|
||||||
|
this.appType = appType;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,8 @@ public class SysExtensionApiEntity {
|
||||||
private String querys;
|
private String querys;
|
||||||
/** body */
|
/** body */
|
||||||
private String bodys;
|
private String bodys;
|
||||||
|
//byteBodys
|
||||||
|
private byte[] byteBodys;
|
||||||
/** 发送方应用 */
|
/** 发送方应用 */
|
||||||
private SysApplicationEntity sendApp;
|
private SysApplicationEntity sendApp;
|
||||||
/** 接收方应用 */
|
/** 接收方应用 */
|
||||||
|
@ -67,5 +69,13 @@ public class SysExtensionApiEntity {
|
||||||
public void setReceiveApi(SysApplicationApiEntity receiveApi) {
|
public void setReceiveApi(SysApplicationApiEntity receiveApi) {
|
||||||
this.receiveApi = receiveApi;
|
this.receiveApi = receiveApi;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public byte[] getByteBodys() {
|
||||||
|
return byteBodys;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setByteBodys(byte[] byteBodys) {
|
||||||
|
this.byteBodys = byteBodys;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
package com.hzya.frame.sysnew.application.script.dao;
|
||||||
|
|
||||||
|
import com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity;
|
||||||
|
import com.hzya.frame.basedao.dao.IBaseDao;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 脚本表(sys_application_script: table)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-06-17 11:07:21
|
||||||
|
*/
|
||||||
|
public interface ISysApplicationScriptDao extends IBaseDao<SysApplicationScriptEntity, String> {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
package com.hzya.frame.sysnew.application.script.dao.impl;
|
||||||
|
|
||||||
|
import com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity;
|
||||||
|
import com.hzya.frame.sysnew.application.script.dao.ISysApplicationScriptDao;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||||
|
/**
|
||||||
|
* 脚本表(SysApplicationScript)表数据库访问层
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-06-17 11:07:22
|
||||||
|
*/
|
||||||
|
@Repository(value = "SysApplicationScriptDaoImpl")
|
||||||
|
public class SysApplicationScriptDaoImpl extends MybatisGenericDao<SysApplicationScriptEntity, String> implements ISysApplicationScriptDao{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,116 @@
|
||||||
|
package com.hzya.frame.sysnew.application.script.entity;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
import com.hzya.frame.web.entity.BaseEntity;
|
||||||
|
/**
|
||||||
|
* 脚本表(SysApplicationScript)实体类
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-06-17 11:07:22
|
||||||
|
*/
|
||||||
|
public class SysApplicationScriptEntity extends BaseEntity {
|
||||||
|
|
||||||
|
/** 应用id */
|
||||||
|
private String appId;
|
||||||
|
/** 脚本名称 */
|
||||||
|
private String scriptName;
|
||||||
|
/** 脚本编号 */
|
||||||
|
private String scriptCode;
|
||||||
|
/** 脚本版本 */
|
||||||
|
private String scriptVersion;
|
||||||
|
/** classname */
|
||||||
|
private String className;
|
||||||
|
/** 脚本内容 */
|
||||||
|
private String scriptData;
|
||||||
|
/** 描述 */
|
||||||
|
private String scriptRemark;
|
||||||
|
/** 发布日期 */
|
||||||
|
private Date releaseDate;
|
||||||
|
/** 启用停用(1启用2停用) */
|
||||||
|
private String scriptStatus;
|
||||||
|
/** 公司id */
|
||||||
|
private String companyId;
|
||||||
|
|
||||||
|
|
||||||
|
public String getAppId() {
|
||||||
|
return appId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAppId(String appId) {
|
||||||
|
this.appId = appId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getScriptName() {
|
||||||
|
return scriptName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setScriptName(String scriptName) {
|
||||||
|
this.scriptName = scriptName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getScriptCode() {
|
||||||
|
return scriptCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setScriptCode(String scriptCode) {
|
||||||
|
this.scriptCode = scriptCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getScriptVersion() {
|
||||||
|
return scriptVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setScriptVersion(String scriptVersion) {
|
||||||
|
this.scriptVersion = scriptVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getClassName() {
|
||||||
|
return className;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setClassName(String className) {
|
||||||
|
this.className = className;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getScriptData() {
|
||||||
|
return scriptData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setScriptData(String scriptData) {
|
||||||
|
this.scriptData = scriptData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getScriptRemark() {
|
||||||
|
return scriptRemark;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setScriptRemark(String scriptRemark) {
|
||||||
|
this.scriptRemark = scriptRemark;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getReleaseDate() {
|
||||||
|
return releaseDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setReleaseDate(Date releaseDate) {
|
||||||
|
this.releaseDate = releaseDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getScriptStatus() {
|
||||||
|
return scriptStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setScriptStatus(String scriptStatus) {
|
||||||
|
this.scriptStatus = scriptStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCompanyId() {
|
||||||
|
return companyId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCompanyId(String companyId) {
|
||||||
|
this.companyId = companyId;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,304 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
|
<mapper namespace="com.hzya.frame.sysnew.application.script.dao.impl.SysApplicationScriptDaoImpl">
|
||||||
|
|
||||||
|
<resultMap id="get-SysApplicationScriptEntity-result" type="com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity" >
|
||||||
|
<result property="id" column="id" jdbcType="VARCHAR"/>
|
||||||
|
<result property="appId" column="app_id" jdbcType="VARCHAR"/>
|
||||||
|
<result property="scriptName" column="script_name" jdbcType="VARCHAR"/>
|
||||||
|
<result property="scriptCode" column="script_code" jdbcType="VARCHAR"/>
|
||||||
|
<result property="scriptVersion" column="script_version" jdbcType="VARCHAR"/>
|
||||||
|
<result property="className" column="class_name" jdbcType="VARCHAR"/>
|
||||||
|
<result property="scriptData" column="script_data" jdbcType="VARCHAR"/>
|
||||||
|
<result property="scriptRemark" column="script_remark" jdbcType="VARCHAR"/>
|
||||||
|
<result property="releaseDate" column="release_date" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="scriptStatus" column="script_status" jdbcType="VARCHAR"/>
|
||||||
|
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
|
||||||
|
<result property="create_user_id" column="create_user_id" jdbcType="VARCHAR"/>
|
||||||
|
<result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="modify_user_id" column="modify_user_id" jdbcType="VARCHAR"/>
|
||||||
|
<result property="modify_time" column="modify_time" jdbcType="TIMESTAMP"/>
|
||||||
|
<result property="sts" column="sts" jdbcType="VARCHAR"/>
|
||||||
|
<result property="org_id" column="org_id" jdbcType="VARCHAR"/>
|
||||||
|
<result property="companyId" column="company_id" jdbcType="VARCHAR"/>
|
||||||
|
</resultMap>
|
||||||
|
<!-- 查询的字段-->
|
||||||
|
<sql id = "SysApplicationScriptEntity_Base_Column_List">
|
||||||
|
id
|
||||||
|
,app_id
|
||||||
|
,script_name
|
||||||
|
,script_code
|
||||||
|
,script_version
|
||||||
|
,class_name
|
||||||
|
,script_data
|
||||||
|
,script_remark
|
||||||
|
,release_date
|
||||||
|
,script_status
|
||||||
|
,sorts
|
||||||
|
,create_user_id
|
||||||
|
,create_time
|
||||||
|
,modify_user_id
|
||||||
|
,modify_time
|
||||||
|
,sts
|
||||||
|
,org_id
|
||||||
|
,company_id
|
||||||
|
</sql>
|
||||||
|
<!--通过ID获取数据 -->
|
||||||
|
<select id="entity_get" resultMap="get-SysApplicationScriptEntity-result">
|
||||||
|
select
|
||||||
|
<include refid="SysApplicationScriptEntity_Base_Column_List"/>
|
||||||
|
from sys_application_script where id = #{ id } and sts='Y'
|
||||||
|
</select>
|
||||||
|
<!-- 查询 采用==查询 -->
|
||||||
|
<select id="entity_list_base" resultMap="get-SysApplicationScriptEntity-result" parameterType = "com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity">
|
||||||
|
select
|
||||||
|
<include refid="SysApplicationScriptEntity_Base_Column_List" />
|
||||||
|
from sys_application_script
|
||||||
|
<trim prefix="where" prefixOverrides="and">
|
||||||
|
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||||
|
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
||||||
|
<if test="scriptName != null and scriptName != ''"> and script_name = #{scriptName} </if>
|
||||||
|
<if test="scriptCode != null and scriptCode != ''"> and script_code = #{scriptCode} </if>
|
||||||
|
<if test="scriptVersion != null and scriptVersion != ''"> and script_version = #{scriptVersion} </if>
|
||||||
|
<if test="className != null and className != ''"> and class_name = #{className} </if>
|
||||||
|
<if test="scriptData != null and scriptData != ''"> and script_data = #{scriptData} </if>
|
||||||
|
<if test="scriptRemark != null and scriptRemark != ''"> and script_remark = #{scriptRemark} </if>
|
||||||
|
<if test="releaseDate != null"> and release_date = #{releaseDate} </if>
|
||||||
|
<if test="scriptStatus != null and scriptStatus != ''"> and script_status = #{scriptStatus} </if>
|
||||||
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
|
<if test="create_user_id != null and create_user_id != ''"> and create_user_id = #{create_user_id} </if>
|
||||||
|
<if test="create_time != null"> and create_time = #{create_time} </if>
|
||||||
|
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </if>
|
||||||
|
<if test="modify_time != null"> and modify_time = #{modify_time} </if>
|
||||||
|
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||||
|
<if test="org_id != null and org_id != ''"> and org_id = #{org_id} </if>
|
||||||
|
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
|
||||||
|
and sts='Y'
|
||||||
|
</trim>
|
||||||
|
<if test=" sort == null or sort == ''.toString() "> order by sorts asc</if>
|
||||||
|
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 查询符合条件的数量 -->
|
||||||
|
<select id="entity_count" resultType="Integer" parameterType = "com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity">
|
||||||
|
select count(1) from sys_application_script
|
||||||
|
<trim prefix="where" prefixOverrides="and">
|
||||||
|
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||||
|
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
||||||
|
<if test="scriptName != null and scriptName != ''"> and script_name = #{scriptName} </if>
|
||||||
|
<if test="scriptCode != null and scriptCode != ''"> and script_code = #{scriptCode} </if>
|
||||||
|
<if test="scriptVersion != null and scriptVersion != ''"> and script_version = #{scriptVersion} </if>
|
||||||
|
<if test="className != null and className != ''"> and class_name = #{className} </if>
|
||||||
|
<if test="scriptData != null and scriptData != ''"> and script_data = #{scriptData} </if>
|
||||||
|
<if test="scriptRemark != null and scriptRemark != ''"> and script_remark = #{scriptRemark} </if>
|
||||||
|
<if test="releaseDate != null"> and release_date = #{releaseDate} </if>
|
||||||
|
<if test="scriptStatus != null and scriptStatus != ''"> and script_status = #{scriptStatus} </if>
|
||||||
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
|
<if test="create_user_id != null and create_user_id != ''"> and create_user_id = #{create_user_id} </if>
|
||||||
|
<if test="create_time != null"> and create_time = #{create_time} </if>
|
||||||
|
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </if>
|
||||||
|
<if test="modify_time != null"> and modify_time = #{modify_time} </if>
|
||||||
|
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||||
|
<if test="org_id != null and org_id != ''"> and org_id = #{org_id} </if>
|
||||||
|
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
|
||||||
|
and sts='Y'
|
||||||
|
</trim>
|
||||||
|
<if test=" sort == null or sort == ''.toString() "> order by sorts asc</if>
|
||||||
|
<if test=" sort !='' and sort!=null and order !='' and order!=null "> order by ${sort} ${order}</if>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 分页查询列表 采用like格式 -->
|
||||||
|
<select id="entity_list_like" resultMap="get-SysApplicationScriptEntity-result" parameterType = "com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity">
|
||||||
|
select
|
||||||
|
<include refid="SysApplicationScriptEntity_Base_Column_List" />
|
||||||
|
from sys_application_script
|
||||||
|
<trim prefix="where" prefixOverrides="and">
|
||||||
|
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </if>
|
||||||
|
<if test="appId != null and appId != ''"> and app_id like concat('%',#{appId},'%') </if>
|
||||||
|
<if test="scriptName != null and scriptName != ''"> and script_name like concat('%',#{scriptName},'%') </if>
|
||||||
|
<if test="scriptCode != null and scriptCode != ''"> and script_code like concat('%',#{scriptCode},'%') </if>
|
||||||
|
<if test="scriptVersion != null and scriptVersion != ''"> and script_version like concat('%',#{scriptVersion},'%') </if>
|
||||||
|
<if test="className != null and className != ''"> and class_name like concat('%',#{className},'%') </if>
|
||||||
|
<if test="scriptData != null and scriptData != ''"> and script_data like concat('%',#{scriptData},'%') </if>
|
||||||
|
<if test="scriptRemark != null and scriptRemark != ''"> and script_remark like concat('%',#{scriptRemark},'%') </if>
|
||||||
|
<if test="releaseDate != null"> and release_date like concat('%',#{releaseDate},'%') </if>
|
||||||
|
<if test="scriptStatus != null and scriptStatus != ''"> and script_status like concat('%',#{scriptStatus},'%') </if>
|
||||||
|
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
|
||||||
|
<if test="create_user_id != null and create_user_id != ''"> and create_user_id like concat('%',#{create_user_id},'%') </if>
|
||||||
|
<if test="create_time != null"> and create_time like concat('%',#{create_time},'%') </if>
|
||||||
|
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id like concat('%',#{modify_user_id},'%') </if>
|
||||||
|
<if test="modify_time != null"> and modify_time like concat('%',#{modify_time},'%') </if>
|
||||||
|
<if test="sts != null and sts != ''"> and sts like concat('%',#{sts},'%') </if>
|
||||||
|
<if test="org_id != null and org_id != ''"> and org_id like concat('%',#{org_id},'%') </if>
|
||||||
|
<if test="companyId != null and companyId != ''"> and company_id like concat('%',#{companyId},'%') </if>
|
||||||
|
and sts='Y'
|
||||||
|
</trim>
|
||||||
|
<if test=" sort == null or sort == ''.toString() "> order by sorts asc</if>
|
||||||
|
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!-- 查询列表 字段采用or格式 -->
|
||||||
|
<select id="SysApplicationScriptentity_list_or" resultMap="get-SysApplicationScriptEntity-result" parameterType = "com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity">
|
||||||
|
select
|
||||||
|
<include refid="SysApplicationScriptEntity_Base_Column_List" />
|
||||||
|
from sys_application_script
|
||||||
|
<trim prefix="where" prefixOverrides="and">
|
||||||
|
<if test="id != null and id != ''"> or id = #{id} </if>
|
||||||
|
<if test="appId != null and appId != ''"> or app_id = #{appId} </if>
|
||||||
|
<if test="scriptName != null and scriptName != ''"> or script_name = #{scriptName} </if>
|
||||||
|
<if test="scriptCode != null and scriptCode != ''"> or script_code = #{scriptCode} </if>
|
||||||
|
<if test="scriptVersion != null and scriptVersion != ''"> or script_version = #{scriptVersion} </if>
|
||||||
|
<if test="className != null and className != ''"> or class_name = #{className} </if>
|
||||||
|
<if test="scriptData != null and scriptData != ''"> or script_data = #{scriptData} </if>
|
||||||
|
<if test="scriptRemark != null and scriptRemark != ''"> or script_remark = #{scriptRemark} </if>
|
||||||
|
<if test="releaseDate != null"> or release_date = #{releaseDate} </if>
|
||||||
|
<if test="scriptStatus != null and scriptStatus != ''"> or script_status = #{scriptStatus} </if>
|
||||||
|
<if test="sorts != null"> or sorts = #{sorts} </if>
|
||||||
|
<if test="create_user_id != null and create_user_id != ''"> or create_user_id = #{create_user_id} </if>
|
||||||
|
<if test="create_time != null"> or create_time = #{create_time} </if>
|
||||||
|
<if test="modify_user_id != null and modify_user_id != ''"> or modify_user_id = #{modify_user_id} </if>
|
||||||
|
<if test="modify_time != null"> or modify_time = #{modify_time} </if>
|
||||||
|
<if test="sts != null and sts != ''"> or sts = #{sts} </if>
|
||||||
|
<if test="org_id != null and org_id != ''"> or org_id = #{org_id} </if>
|
||||||
|
<if test="companyId != null and companyId != ''"> or company_id = #{companyId} </if>
|
||||||
|
and sts='Y'
|
||||||
|
</trim>
|
||||||
|
<if test=" sort == null or sort == ''.toString() "> order by sorts asc</if>
|
||||||
|
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<!--新增所有列-->
|
||||||
|
<insert id="entity_insert" parameterType = "com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity" >
|
||||||
|
insert into sys_application_script(
|
||||||
|
<trim suffix="" suffixOverrides=",">
|
||||||
|
<if test="id != null and id != ''"> id , </if>
|
||||||
|
<if test="appId != null and appId != ''"> app_id , </if>
|
||||||
|
<if test="scriptName != null and scriptName != ''"> script_name , </if>
|
||||||
|
<if test="scriptCode != null and scriptCode != ''"> script_code , </if>
|
||||||
|
<if test="scriptVersion != null and scriptVersion != ''"> script_version , </if>
|
||||||
|
class_name ,
|
||||||
|
<if test="scriptData != null and scriptData != ''"> script_data , </if>
|
||||||
|
<if test="scriptRemark != null and scriptRemark != ''"> script_remark , </if>
|
||||||
|
<if test="releaseDate != null"> release_date , </if>
|
||||||
|
<if test="scriptStatus != null and scriptStatus != ''"> script_status , </if>
|
||||||
|
<if test="sorts != null"> sorts , </if>
|
||||||
|
<if test="create_user_id != null and create_user_id != ''"> create_user_id , </if>
|
||||||
|
<if test="create_time != null"> create_time , </if>
|
||||||
|
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id , </if>
|
||||||
|
<if test="modify_time != null"> modify_time , </if>
|
||||||
|
<if test="sts != null and sts != ''"> sts , </if>
|
||||||
|
<if test="org_id != null and org_id != ''"> org_id , </if>
|
||||||
|
<if test="companyId != null and companyId != ''"> company_id , </if>
|
||||||
|
<if test="sts == null ">sts,</if>
|
||||||
|
</trim>
|
||||||
|
)values(
|
||||||
|
<trim suffix="" suffixOverrides=",">
|
||||||
|
<if test="id != null and id != ''"> #{id} ,</if>
|
||||||
|
<if test="appId != null and appId != ''"> #{appId} ,</if>
|
||||||
|
<if test="scriptName != null and scriptName != ''"> #{scriptName} ,</if>
|
||||||
|
<if test="scriptCode != null and scriptCode != ''"> #{scriptCode} ,</if>
|
||||||
|
<if test="scriptVersion != null and scriptVersion != ''"> #{scriptVersion} ,</if>
|
||||||
|
CONCAT('g','_',LAST_INSERT_ID()) ,
|
||||||
|
<if test="scriptData != null and scriptData != ''"> #{scriptData} ,</if>
|
||||||
|
<if test="scriptRemark != null and scriptRemark != ''"> #{scriptRemark} ,</if>
|
||||||
|
<if test="releaseDate != null"> #{releaseDate} ,</if>
|
||||||
|
<if test="scriptStatus != null and scriptStatus != ''"> #{scriptStatus} ,</if>
|
||||||
|
<if test="sorts != null"> #{sorts} ,</if>
|
||||||
|
<if test="create_user_id != null and create_user_id != ''"> #{create_user_id} ,</if>
|
||||||
|
<if test="create_time != null"> #{create_time} ,</if>
|
||||||
|
<if test="modify_user_id != null and modify_user_id != ''"> #{modify_user_id} ,</if>
|
||||||
|
<if test="modify_time != null"> #{modify_time} ,</if>
|
||||||
|
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
||||||
|
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
||||||
|
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
||||||
|
<if test="sts == null ">'Y',</if>
|
||||||
|
</trim>
|
||||||
|
)
|
||||||
|
</insert>
|
||||||
|
<!-- 批量新增 -->
|
||||||
|
<insert id="entityInsertBatch" >
|
||||||
|
insert into sys_application_script(app_id, script_name, script_code, script_version, class_name, script_data, script_remark, release_date, script_status, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, sts)
|
||||||
|
values
|
||||||
|
<foreach collection="entities" item="entity" separator=",">
|
||||||
|
(#{entity.appId},#{entity.scriptName},#{entity.scriptCode},#{entity.scriptVersion},#{entity.className},#{entity.scriptData},#{entity.scriptRemark},#{entity.releaseDate},#{entity.scriptStatus},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId}, 'Y')
|
||||||
|
</foreach>
|
||||||
|
</insert>
|
||||||
|
<!-- 批量新增或者修改-->
|
||||||
|
<insert id="entityInsertOrUpdateBatch" >
|
||||||
|
insert into sys_application_script(app_id, script_name, script_code, script_version, class_name, script_data, script_remark, release_date, script_status, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id)
|
||||||
|
values
|
||||||
|
<foreach collection="entities" item="entity" separator=",">
|
||||||
|
(#{entity.appId},#{entity.scriptName},#{entity.scriptCode},#{entity.scriptVersion},#{entity.className},#{entity.scriptData},#{entity.scriptRemark},#{entity.releaseDate},#{entity.scriptStatus},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId})
|
||||||
|
</foreach>
|
||||||
|
on duplicate key update
|
||||||
|
app_id = values(app_id),
|
||||||
|
script_name = values(script_name),
|
||||||
|
script_code = values(script_code),
|
||||||
|
script_version = values(script_version),
|
||||||
|
class_name = values(class_name),
|
||||||
|
script_data = values(script_data),
|
||||||
|
script_remark = values(script_remark),
|
||||||
|
release_date = values(release_date),
|
||||||
|
script_status = values(script_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)</insert>
|
||||||
|
<!--通过主键修改方法-->
|
||||||
|
<update id="entity_update" parameterType = "com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity" >
|
||||||
|
update sys_application_script set
|
||||||
|
<trim suffix="" suffixOverrides=",">
|
||||||
|
<if test="appId != null and appId != ''"> app_id = #{appId},</if>
|
||||||
|
<if test="scriptName != null and scriptName != ''"> script_name = #{scriptName},</if>
|
||||||
|
<if test="scriptCode != null and scriptCode != ''"> script_code = #{scriptCode},</if>
|
||||||
|
<if test="scriptVersion != null and scriptVersion != ''"> script_version = #{scriptVersion},</if>
|
||||||
|
<if test="className != null and className != ''"> class_name = #{className},</if>
|
||||||
|
<if test="scriptData != null and scriptData != ''"> script_data = #{scriptData},</if>
|
||||||
|
<if test="scriptRemark != null and scriptRemark != ''"> script_remark = #{scriptRemark},</if>
|
||||||
|
<if test="releaseDate != null"> release_date = #{releaseDate},</if>
|
||||||
|
<if test="scriptStatus != null and scriptStatus != ''"> script_status = #{scriptStatus},</if>
|
||||||
|
<if test="create_user_id != null and create_user_id != ''"> create_user_id = #{create_user_id},</if>
|
||||||
|
<if test="create_time != null"> create_time = #{create_time},</if>
|
||||||
|
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id = #{modify_user_id},</if>
|
||||||
|
<if test="modify_time != null"> modify_time = #{modify_time},</if>
|
||||||
|
<if test="sts != null and sts != ''"> sts = #{sts},</if>
|
||||||
|
<if test="org_id != null and org_id != ''"> org_id = #{org_id},</if>
|
||||||
|
<if test="companyId != null and companyId != ''"> company_id = #{companyId},</if>
|
||||||
|
</trim>
|
||||||
|
where id = #{id}
|
||||||
|
</update>
|
||||||
|
<!-- 逻辑删除 -->
|
||||||
|
<update id="entity_logicDelete" parameterType = "com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity" >
|
||||||
|
update sys_application_script set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
|
||||||
|
where id = #{id}
|
||||||
|
</update>
|
||||||
|
<!-- 多条件逻辑删除 -->
|
||||||
|
<update id="entity_logicDelete_Multi_Condition" parameterType = "com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity" >
|
||||||
|
update sys_application_script set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
|
||||||
|
<trim prefix="where" prefixOverrides="and">
|
||||||
|
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||||
|
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
|
||||||
|
<if test="scriptName != null and scriptName != ''"> and script_name = #{scriptName} </if>
|
||||||
|
<if test="scriptCode != null and scriptCode != ''"> and script_code = #{scriptCode} </if>
|
||||||
|
<if test="scriptVersion != null and scriptVersion != ''"> and script_version = #{scriptVersion} </if>
|
||||||
|
<if test="className != null and className != ''"> and class_name = #{className} </if>
|
||||||
|
<if test="scriptData != null and scriptData != ''"> and script_data = #{scriptData} </if>
|
||||||
|
<if test="scriptRemark != null and scriptRemark != ''"> and script_remark = #{scriptRemark} </if>
|
||||||
|
<if test="releaseDate != null"> and release_date = #{releaseDate} </if>
|
||||||
|
<if test="scriptStatus != null and scriptStatus != ''"> and script_status = #{scriptStatus} </if>
|
||||||
|
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||||
|
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||||
|
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
|
||||||
|
and sts='Y'
|
||||||
|
</trim>
|
||||||
|
</update>
|
||||||
|
<!--通过主键删除-->
|
||||||
|
<delete id="entity_delete">
|
||||||
|
delete from sys_application_script where id = #{id}
|
||||||
|
</delete>
|
||||||
|
|
||||||
|
</mapper>
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
package com.hzya.frame.sysnew.application.script.service;
|
||||||
|
|
||||||
|
import com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity;
|
||||||
|
import com.hzya.frame.basedao.service.IBaseService;
|
||||||
|
/**
|
||||||
|
* 脚本表(SysApplicationScript)表服务接口
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-06-17 11:07:22
|
||||||
|
*/
|
||||||
|
public interface ISysApplicationScriptService extends IBaseService<SysApplicationScriptEntity, String>{
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
package com.hzya.frame.sysnew.application.script.service.impl;
|
||||||
|
|
||||||
|
import com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity;
|
||||||
|
import com.hzya.frame.sysnew.application.script.dao.ISysApplicationScriptDao;
|
||||||
|
import com.hzya.frame.sysnew.application.script.service.ISysApplicationScriptService;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import com.hzya.frame.basedao.service.impl.BaseService;
|
||||||
|
/**
|
||||||
|
* 脚本表(SysApplicationScript)表服务实现类
|
||||||
|
*
|
||||||
|
* @author makejava
|
||||||
|
* @since 2024-06-17 11:07:22
|
||||||
|
*/
|
||||||
|
@Service(value = "sysApplicationScriptService")
|
||||||
|
public class SysApplicationScriptServiceImpl extends BaseService<SysApplicationScriptEntity, String> implements ISysApplicationScriptService {
|
||||||
|
|
||||||
|
private ISysApplicationScriptDao sysApplicationScriptDao;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
public void setSysApplicationScriptDao(ISysApplicationScriptDao dao) {
|
||||||
|
this.sysApplicationScriptDao = dao;
|
||||||
|
this.dao = dao;
|
||||||
|
}
|
||||||
|
}
|
|
@ -357,4 +357,74 @@ public interface ISysApplicationService extends IBaseService<SysApplicationEntit
|
||||||
* @Date 11:52 上午 2024/3/27
|
* @Date 11:52 上午 2024/3/27
|
||||||
**/
|
**/
|
||||||
JsonResultEntity queryPlugAndApi(JSONObject jsonObject);
|
JsonResultEntity queryPlugAndApi(JSONObject jsonObject);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本查询分页接口
|
||||||
|
* @Date 2:09 下午 2023/9/23
|
||||||
|
* @param jsonObject
|
||||||
|
* @return
|
||||||
|
**/
|
||||||
|
JsonResultEntity queryAppScriptPage(JSONObject jsonObject);
|
||||||
|
/**
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本查询接口
|
||||||
|
* @Date 2:09 下午 2023/9/23
|
||||||
|
* @param jsonObject
|
||||||
|
* @return
|
||||||
|
**/
|
||||||
|
JsonResultEntity queryAppScript(JSONObject jsonObject);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本修改接口
|
||||||
|
* @Date 2:09 下午 2023/9/23
|
||||||
|
* @param jsonObject
|
||||||
|
* @return
|
||||||
|
**/
|
||||||
|
JsonResultEntity saveAppScript(JSONObject jsonObject);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本修改接口
|
||||||
|
* @Date 2:09 下午 2023/9/23
|
||||||
|
* @param jsonObject
|
||||||
|
* @return
|
||||||
|
**/
|
||||||
|
JsonResultEntity updateAppScript(JSONObject jsonObject);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本删除接口
|
||||||
|
* @Date 2:10 下午 2023/9/23
|
||||||
|
* @param jsonObject
|
||||||
|
* @return
|
||||||
|
**/
|
||||||
|
JsonResultEntity deleteAppScript(JSONObject jsonObject);
|
||||||
|
/**
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 获取脚本接口
|
||||||
|
* @Date 2:10 下午 2023/9/23
|
||||||
|
* @param jsonObject
|
||||||
|
* @return
|
||||||
|
**/
|
||||||
|
JsonResultEntity getAppScript(JSONObject jsonObject);
|
||||||
|
/**
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本启用停用接口
|
||||||
|
* @Date 2:10 下午 2023/9/23
|
||||||
|
* @param jsonObject
|
||||||
|
* @return
|
||||||
|
**/
|
||||||
|
JsonResultEntity enableOrDisableAppScript(JSONObject jsonObject);
|
||||||
|
|
||||||
|
/****
|
||||||
|
* ESB请求转发重载方法,临时处理传入请求对象
|
||||||
|
* @content:
|
||||||
|
* @author 👻👻👻👻👻👻👻👻 gjh
|
||||||
|
* @date 2024-06-19 9:34
|
||||||
|
* @param
|
||||||
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
|
**/
|
||||||
|
JsonResultEntity externalCallInterfaceToESB(ServletRequest servletRequest, ServletResponse servletResponse);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
package com.hzya.frame.sysnew.application.service.impl;
|
package com.hzya.frame.sysnew.application.service.impl;
|
||||||
|
|
||||||
import cn.dev33.satoken.exception.NotLoginException;
|
|
||||||
import cn.dev33.satoken.stp.StpUtil;
|
import cn.dev33.satoken.stp.StpUtil;
|
||||||
import cn.hutool.core.date.DateTime;
|
import cn.hutool.core.date.DateTime;
|
||||||
import cn.hutool.core.date.DateUtil;
|
import cn.hutool.core.date.DateUtil;
|
||||||
|
@ -11,6 +10,7 @@ import com.alibaba.fastjson.JSONObject;
|
||||||
import com.baomidou.dynamic.datasource.annotation.DSTransactional;
|
import com.baomidou.dynamic.datasource.annotation.DSTransactional;
|
||||||
import com.github.pagehelper.PageHelper;
|
import com.github.pagehelper.PageHelper;
|
||||||
import com.github.pagehelper.PageInfo;
|
import com.github.pagehelper.PageInfo;
|
||||||
|
import com.hzya.frame.basedao.service.impl.BaseService;
|
||||||
import com.hzya.frame.serviceUtil.DsDataSourceUtil;
|
import com.hzya.frame.serviceUtil.DsDataSourceUtil;
|
||||||
import com.hzya.frame.sysnew.application.api.dao.ISysApplicationApiDao;
|
import com.hzya.frame.sysnew.application.api.dao.ISysApplicationApiDao;
|
||||||
import com.hzya.frame.sysnew.application.api.entity.SysApplicationApiDto;
|
import com.hzya.frame.sysnew.application.api.entity.SysApplicationApiDto;
|
||||||
|
@ -25,17 +25,15 @@ import com.hzya.frame.sysnew.application.apiPara.dao.ISysApplicationApiParaDao;
|
||||||
import com.hzya.frame.sysnew.application.apiPara.entity.SysApplicationApiParaEntity;
|
import com.hzya.frame.sysnew.application.apiPara.entity.SysApplicationApiParaEntity;
|
||||||
import com.hzya.frame.sysnew.application.apiType.dao.ISysApplicationApiTypeDao;
|
import com.hzya.frame.sysnew.application.apiType.dao.ISysApplicationApiTypeDao;
|
||||||
import com.hzya.frame.sysnew.application.apiType.entity.SysApplicationApiTypeEntity;
|
import com.hzya.frame.sysnew.application.apiType.entity.SysApplicationApiTypeEntity;
|
||||||
|
import com.hzya.frame.sysnew.application.dao.ISysApplicationDao;
|
||||||
import com.hzya.frame.sysnew.application.database.dao.ISysApplicationDatabaseDao;
|
import com.hzya.frame.sysnew.application.database.dao.ISysApplicationDatabaseDao;
|
||||||
import com.hzya.frame.sysnew.application.database.entity.SysApplicationDatabaseEntity;
|
import com.hzya.frame.sysnew.application.database.entity.SysApplicationDatabaseEntity;
|
||||||
import com.hzya.frame.sysnew.application.entity.SysApplicationDatasourceDto;
|
import com.hzya.frame.sysnew.application.entity.*;
|
||||||
import com.hzya.frame.sysnew.application.entity.SysApplicationDto;
|
|
||||||
import com.hzya.frame.sysnew.application.entity.SysApplicationEntity;
|
|
||||||
import com.hzya.frame.sysnew.application.dao.ISysApplicationDao;
|
|
||||||
import com.hzya.frame.sysnew.application.entity.SysApplicationVo;
|
|
||||||
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
|
|
||||||
import com.hzya.frame.sysnew.application.plugin.dao.ISysApplicationPluginDao;
|
import com.hzya.frame.sysnew.application.plugin.dao.ISysApplicationPluginDao;
|
||||||
import com.hzya.frame.sysnew.application.plugin.entity.SysApplicationPluginDto;
|
import com.hzya.frame.sysnew.application.plugin.entity.SysApplicationPluginDto;
|
||||||
import com.hzya.frame.sysnew.application.plugin.entity.SysApplicationPluginEntity;
|
import com.hzya.frame.sysnew.application.plugin.entity.SysApplicationPluginEntity;
|
||||||
|
import com.hzya.frame.sysnew.application.script.dao.ISysApplicationScriptDao;
|
||||||
|
import com.hzya.frame.sysnew.application.script.entity.SysApplicationScriptEntity;
|
||||||
import com.hzya.frame.sysnew.application.service.ISysApplicationService;
|
import com.hzya.frame.sysnew.application.service.ISysApplicationService;
|
||||||
import com.hzya.frame.sysnew.integtationTask.IIntegrationTaskCacheableService;
|
import com.hzya.frame.sysnew.integtationTask.IIntegrationTaskCacheableService;
|
||||||
import com.hzya.frame.sysnew.messageManage.dao.ISysMessageManageDao;
|
import com.hzya.frame.sysnew.messageManage.dao.ISysMessageManageDao;
|
||||||
|
@ -45,17 +43,12 @@ import com.hzya.frame.sysnew.messageManageDetail.entity.SysMessageManageDetailEn
|
||||||
import com.hzya.frame.sysnew.messageManageLog.dao.ISysMessageManageLogDao;
|
import com.hzya.frame.sysnew.messageManageLog.dao.ISysMessageManageLogDao;
|
||||||
import com.hzya.frame.sysnew.messageManageLog.entity.SysMessageManageLogEntity;
|
import com.hzya.frame.sysnew.messageManageLog.entity.SysMessageManageLogEntity;
|
||||||
import com.hzya.frame.sysnew.messageManageLog.entity.SysMessageManageLogPageVo;
|
import com.hzya.frame.sysnew.messageManageLog.entity.SysMessageManageLogPageVo;
|
||||||
import com.hzya.frame.sysnew.popedomInterface.entity.SysPopedomInterfaceEntity;
|
|
||||||
import com.hzya.frame.sysnew.sysInterface.entity.SysInterfaceEntity;
|
|
||||||
import com.hzya.frame.sysnew.user.entity.SysUserEntity;
|
|
||||||
import com.hzya.frame.sysnew.userRoles.entity.SysUserRolesEntity;
|
|
||||||
import com.hzya.frame.util.AESUtil;
|
import com.hzya.frame.util.AESUtil;
|
||||||
import com.hzya.frame.util.IPHelper;
|
import com.hzya.frame.util.IPHelper;
|
||||||
import com.hzya.frame.uuid.UUIDUtils;
|
import com.hzya.frame.uuid.UUIDUtils;
|
||||||
import com.hzya.frame.web.action.ApplicationContextUtil;
|
import com.hzya.frame.web.action.ApplicationContextUtil;
|
||||||
import com.hzya.frame.web.entity.BaseResult;
|
import com.hzya.frame.web.entity.BaseResult;
|
||||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
import com.hzya.frame.web.exception.BaseSystemException;
|
|
||||||
import org.apache.http.HttpEntity;
|
import org.apache.http.HttpEntity;
|
||||||
import org.apache.http.client.config.RequestConfig;
|
import org.apache.http.client.config.RequestConfig;
|
||||||
import org.apache.http.client.methods.CloseableHttpResponse;
|
import org.apache.http.client.methods.CloseableHttpResponse;
|
||||||
|
@ -65,27 +58,17 @@ import org.apache.http.entity.ByteArrayEntity;
|
||||||
import org.apache.http.impl.client.CloseableHttpClient;
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
import org.apache.http.impl.client.HttpClientBuilder;
|
import org.apache.http.impl.client.HttpClientBuilder;
|
||||||
import org.apache.http.util.EntityUtils;
|
import org.apache.http.util.EntityUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.core.task.TaskExecutor;
|
import org.springframework.core.task.TaskExecutor;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
import javax.servlet.ServletRequest;
|
import javax.servlet.ServletRequest;
|
||||||
import javax.servlet.ServletResponse;
|
import javax.servlet.ServletResponse;
|
||||||
import javax.servlet.http.HttpServletRequest;
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
|
||||||
import com.hzya.frame.basedao.service.impl.BaseService;
|
|
||||||
import org.springframework.util.ObjectUtils;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.lang.reflect.InvocationTargetException;
|
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
import java.util.ArrayList;
|
import java.util.*;
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 应用表(SysApplication)表服务实现类
|
* 应用表(SysApplication)表服务实现类
|
||||||
|
@ -116,6 +99,8 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
|
||||||
@Resource
|
@Resource
|
||||||
private ISysApplicationPluginDao sysApplicationPluginDao;
|
private ISysApplicationPluginDao sysApplicationPluginDao;
|
||||||
@Resource
|
@Resource
|
||||||
|
private ISysApplicationScriptDao sysApplicationScriptDao;
|
||||||
|
@Resource
|
||||||
private ISysMessageManageDao sysMessageManageDao;
|
private ISysMessageManageDao sysMessageManageDao;
|
||||||
@Resource
|
@Resource
|
||||||
private ISysMessageManageDetailDao sysMessageManageDetailDao; //明细表
|
private ISysMessageManageDetailDao sysMessageManageDetailDao; //明细表
|
||||||
|
@ -2282,4 +2267,520 @@ public class SysApplicationServiceImpl extends BaseService<SysApplicationEntity,
|
||||||
jsonObject1.put("api",sysApplicationApiEntity);
|
jsonObject1.put("api",sysApplicationApiEntity);
|
||||||
return BaseResult.getSuccessMessageEntity("查询数据成功", jsonObject1);
|
return BaseResult.getSuccessMessageEntity("查询数据成功", jsonObject1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param object
|
||||||
|
* @return
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本查询分页接口
|
||||||
|
* @Date 2:09 下午 2023/9/23
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity queryAppScriptPage(JSONObject object) {
|
||||||
|
SysApplicationScriptEntity entity = getData("jsonStr", object, SysApplicationScriptEntity.class);
|
||||||
|
//判断分页
|
||||||
|
if (entity == null || entity.getPageNum() == null || entity.getPageSize() == null) {
|
||||||
|
return BaseResult.getFailureMessageEntity("分页查询参数不存在");
|
||||||
|
}
|
||||||
|
PageHelper.startPage(entity.getPageNum(), entity.getPageSize());
|
||||||
|
List<SysApplicationScriptEntity> sysApplicationScriptEntities = sysApplicationScriptDao.queryByLike(entity);
|
||||||
|
PageInfo pageInfo = new PageInfo(sysApplicationScriptEntities);
|
||||||
|
return BaseResult.getSuccessMessageEntity("查询数据成功", pageInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param object
|
||||||
|
* @return
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本查询接口
|
||||||
|
* @Date 2:09 下午 2023/9/23
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity queryAppScript(JSONObject object) {
|
||||||
|
SysApplicationScriptEntity entity = getData("jsonStr", object, SysApplicationScriptEntity.class);
|
||||||
|
List<SysApplicationScriptEntity> sysApplicationScriptEntities = sysApplicationScriptDao.queryByLike(entity);
|
||||||
|
return BaseResult.getSuccessMessageEntity("查询数据成功", sysApplicationScriptEntities);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param object
|
||||||
|
* @return
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本修改接口
|
||||||
|
* @Date 2:09 下午 2023/9/23
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity saveAppScript(JSONObject object) {
|
||||||
|
SysApplicationScriptEntity entity = getData("jsonStr", object, SysApplicationScriptEntity.class);
|
||||||
|
if (entity == null) {
|
||||||
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
|
}
|
||||||
|
if (entity.getScriptCode() == null || "".equals(entity.getScriptCode())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先输入脚本编号");
|
||||||
|
}
|
||||||
|
if (entity.getScriptData() == null || "".equals(entity.getScriptData())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先输入脚本内容");
|
||||||
|
}
|
||||||
|
entity.setCreate();
|
||||||
|
sysApplicationScriptDao.save(entity);
|
||||||
|
return BaseResult.getSuccessMessageEntity("保存脚本成功", entity.getId());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param object
|
||||||
|
* @return
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本修改接口
|
||||||
|
* @Date 2:09 下午 2023/9/23
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity updateAppScript(JSONObject object) {
|
||||||
|
SysApplicationScriptEntity entity = getData("jsonStr", object, SysApplicationScriptEntity.class);
|
||||||
|
if (entity == null) {
|
||||||
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
|
}
|
||||||
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
|
}
|
||||||
|
if (entity.getScriptCode() == null || "".equals(entity.getScriptCode())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先输入脚本编号");
|
||||||
|
}
|
||||||
|
if (entity.getScriptData() == null || "".equals(entity.getScriptData())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先输入脚本内容");
|
||||||
|
}
|
||||||
|
entity.setUpdate();
|
||||||
|
sysApplicationScriptDao.update(entity);
|
||||||
|
return BaseResult.getSuccessMessageEntity("修改脚本成功");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param object
|
||||||
|
* @return
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本删除接口
|
||||||
|
* @Date 2:10 下午 2023/9/23
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity deleteAppScript(JSONObject object) {
|
||||||
|
SysApplicationScriptEntity entity = getData("jsonStr", object, SysApplicationScriptEntity.class);
|
||||||
|
if (entity == null) {
|
||||||
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
|
}
|
||||||
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
|
}
|
||||||
|
entity.setUpdate();
|
||||||
|
sysApplicationScriptDao.logicRemoveMultiCondition(entity);
|
||||||
|
return BaseResult.getSuccessMessageEntity("删除脚本成功");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param object
|
||||||
|
* @return
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 获取脚本接口
|
||||||
|
* @Date 2:10 下午 2023/9/23
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity getAppScript(JSONObject object) {
|
||||||
|
SysApplicationScriptEntity entity = getData("jsonStr", object, SysApplicationScriptEntity.class);
|
||||||
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
|
}
|
||||||
|
//查询接口
|
||||||
|
SysApplicationScriptEntity sysApplicationScriptEntity = sysApplicationScriptDao.get(entity.getId());
|
||||||
|
return BaseResult.getSuccessMessageEntity("查询数据成功", sysApplicationScriptEntity);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param object
|
||||||
|
* @return
|
||||||
|
* @Author lvleigang
|
||||||
|
* @Description 脚本启用停用接口
|
||||||
|
* @Date 2:10 下午 2023/9/23
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity enableOrDisableAppScript(JSONObject object) {
|
||||||
|
SysApplicationScriptEntity entity = getData("jsonStr", object, SysApplicationScriptEntity.class);
|
||||||
|
if (entity == null) {
|
||||||
|
return BaseResult.getFailureMessageEntity("参数不允许为空");
|
||||||
|
}
|
||||||
|
if (entity.getId() == null || "".equals(entity.getId())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
|
}
|
||||||
|
if (entity.getScriptStatus() == null || "".equals(entity.getScriptStatus())) {
|
||||||
|
return BaseResult.getFailureMessageEntity("系统错误");
|
||||||
|
}
|
||||||
|
entity.setUpdate();
|
||||||
|
sysApplicationScriptDao.update(entity);
|
||||||
|
if ("1".equals(entity.getScriptStatus())) {// 1启用2停用
|
||||||
|
return BaseResult.getSuccessMessageEntity("启用成功");
|
||||||
|
} else {
|
||||||
|
return BaseResult.getSuccessMessageEntity("停用成功");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public JsonResultEntity externalCallInterfaceToESB(ServletRequest servletRequest, ServletResponse servletResponse) {
|
||||||
|
|
||||||
|
//例如:A应用发送数据到中台,中台转发到B应用
|
||||||
|
HttpServletRequest request = (HttpServletRequest) servletRequest;
|
||||||
|
String oldbodys = ServletUtil.getBody(servletRequest);
|
||||||
|
Map<String, String> oldheaderMap = ServletUtil.getHeaderMap(request);
|
||||||
|
String oldquerys = request.getQueryString();
|
||||||
|
//应用key
|
||||||
|
String publicKey = request.getHeader("publicKey");
|
||||||
|
//应用密钥
|
||||||
|
String secretKey = request.getHeader("secretKey");
|
||||||
|
//appId
|
||||||
|
String appId = request.getHeader("appId");
|
||||||
|
//apiCode
|
||||||
|
String apiCode = request.getHeader("apiCode");
|
||||||
|
|
||||||
|
String ip = IPHelper.getIpAddr(request);
|
||||||
|
if (publicKey == null || "".equals(publicKey)) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先传递公钥");
|
||||||
|
}
|
||||||
|
if (secretKey == null || "".equals(secretKey)) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先传递密钥");
|
||||||
|
}
|
||||||
|
if (appId == null || "".equals(appId)) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先传递接收方应用");
|
||||||
|
}
|
||||||
|
if (apiCode == null || "".equals(apiCode)) {
|
||||||
|
return BaseResult.getFailureMessageEntity("请先传递发送接口");
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info("请求参数:publicKey:【" + publicKey + "】secretKey:【" + secretKey + "】appId:【" + appId + "】apiCode:【" + apiCode);
|
||||||
|
//根据请求a应用的公钥、密钥是否能查找到一条数据
|
||||||
|
|
||||||
|
SysApplicationEntity sendApp = getAppByPublicKeySecretKey(publicKey, secretKey);
|
||||||
|
if (sendApp == null) {
|
||||||
|
//saveLog(new SysApplicationEntity(), new SysApplicationEntity(), new SysApplicationApiEntity(), oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,"公钥、密钥错误");
|
||||||
|
return BaseResult.getFailureMessageEntity("公钥、密钥错误,请联系管理员");
|
||||||
|
}
|
||||||
|
//判断应用是否启用
|
||||||
|
if (sendApp.getAppStatus() == null || !"1".equals(sendApp.getAppStatus())) {
|
||||||
|
saveLog(sendApp, new SysApplicationEntity(), new SysApplicationApiEntity(), oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,sendApp.getName() + "应用未启用");
|
||||||
|
return BaseResult.getFailureMessageEntity(sendApp.getName() + "应用未启用,请联系管理员");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
SysApplicationEntity receiveApp = getAppByAppId(appId);
|
||||||
|
if (receiveApp == null) {
|
||||||
|
saveLog(sendApp, new SysApplicationEntity(), new SysApplicationApiEntity(), oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,"根据appId:" + appId + "未匹配到应用");
|
||||||
|
return BaseResult.getFailureMessageEntity("根据appId:" + appId + "未匹配到应用,请联系管理员");
|
||||||
|
}
|
||||||
|
//判断应用是否启用
|
||||||
|
if (receiveApp.getAppStatus() == null || !"1".equals(receiveApp.getAppStatus())) {
|
||||||
|
saveLog(sendApp, receiveApp, new SysApplicationApiEntity(), oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,receiveApp.getName() + "应用未启用" );
|
||||||
|
return BaseResult.getFailureMessageEntity(receiveApp.getName() + "应用未启用,请联系管理员");
|
||||||
|
}
|
||||||
|
//判断应用接口是否启用
|
||||||
|
if (receiveApp.getInterfaceStatus() == null || !"1".equals(receiveApp.getInterfaceStatus())) {
|
||||||
|
saveLog(sendApp, receiveApp, new SysApplicationApiEntity(), oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,receiveApp.getName() + "应用接口环境未启用" );
|
||||||
|
return BaseResult.getFailureMessageEntity(receiveApp.getName() + "应用接口环境未启用,请联系管理员");
|
||||||
|
}
|
||||||
|
|
||||||
|
SysApplicationApiEntity receiveApi = getApiByAppIdApiCode(receiveApp.getId(), apiCode);
|
||||||
|
if (receiveApi == null) {
|
||||||
|
saveLog(sendApp, receiveApp, receiveApi, oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,receiveApp.getName() + ":" + apiCode + "未启用或者未创建" );
|
||||||
|
return BaseResult.getFailureMessageEntity(receiveApp.getName() + ":" + apiCode + "未启用或者未创建");
|
||||||
|
}
|
||||||
|
|
||||||
|
SysApplicationApiAuthEntity sysApplicationApiAuthEntity = getApiAuthByNameAppId(sendApp.getId(), receiveApp.getId());
|
||||||
|
if (sysApplicationApiAuthEntity == null) {
|
||||||
|
saveLog(sendApp, receiveApp, receiveApi, oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,receiveApp.getName() + "应用权限配置错误" );
|
||||||
|
return BaseResult.getFailureMessageEntity(receiveApp.getName() + "应用权限配置错误");
|
||||||
|
}
|
||||||
|
if (sysApplicationApiAuthEntity.getSystemAddress() != null && !"".equals(sysApplicationApiAuthEntity.getSystemAddress())
|
||||||
|
&& !sysApplicationApiAuthEntity.getSystemAddress().contains(ip)) {
|
||||||
|
saveLog(sendApp, receiveApp, receiveApi, oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,receiveApp.getName() + "发送应用" + receiveApp.getName() + "的ip白名单配置错误" );
|
||||||
|
return BaseResult.getFailureMessageEntity(receiveApp.getName() + "发送应用" + receiveApp.getName() + "的ip白名单配置错误");
|
||||||
|
}
|
||||||
|
|
||||||
|
SysApplicationApiAuthDetailEntity sysApplicationApiAuthDetailEntity = getApiAuthDetailByAppIdApiIdTripartiteSystemId(receiveApp.getId(), receiveApi.getId(), sysApplicationApiAuthEntity.getId());
|
||||||
|
if (sysApplicationApiAuthDetailEntity == null) {
|
||||||
|
saveLog(sendApp, receiveApp, receiveApi, oldbodys, null, oldheaderMap, null, null, oldquerys, null, null, false,receiveApi.getApiName() + "未授权给" + sendApp.getName() );
|
||||||
|
return BaseResult.getFailureMessageEntity(receiveApi.getApiName() + "未授权给" + sendApp.getName() + ",请联系管理员");
|
||||||
|
}
|
||||||
|
SysExtensionApiEntity sysExtensionApiEntity = new SysExtensionApiEntity();
|
||||||
|
|
||||||
|
|
||||||
|
List<String> a = Arrays.asList(new String[]{"apicode", "appid", "secretkey", "publickey", "x-forwarded-for", "cookie", "x-forwarded-proto", "x-real-ip", "content-length", "accept-language", "host", "content-type", "connection", "cache-control", "accept-encoding", "pragma", "accept", "user-agent"});
|
||||||
|
Map<String, String> headers = new HashMap<>();
|
||||||
|
if (receiveApi.getHeaderIn() != null && !"".equals(receiveApi.getHeaderIn())) {
|
||||||
|
JSONArray jsonArray = JSONArray.parseArray(receiveApi.getHeaderIn());
|
||||||
|
if (jsonArray != null && jsonArray.size() > 0) {
|
||||||
|
for (int i = 0; i < jsonArray.size(); i++) {
|
||||||
|
JSONObject object1 = jsonArray.getJSONObject(i);
|
||||||
|
headers.put(object1.getString("parameterName"), object1.getString("example"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (oldheaderMap != null && oldheaderMap.size() > 0) {
|
||||||
|
for (Map.Entry<String, String> entry : oldheaderMap.entrySet()) {
|
||||||
|
if (!a.contains(entry.getKey())) {
|
||||||
|
headers.put(entry.getKey(), entry.getValue());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
sysExtensionApiEntity.setSendApp(sendApp);
|
||||||
|
sysExtensionApiEntity.setReceiveApp(receiveApp);
|
||||||
|
sysExtensionApiEntity.setReceiveApi(receiveApi);
|
||||||
|
sysExtensionApiEntity.setHeaders(headers);
|
||||||
|
sysExtensionApiEntity.setQuerys(oldquerys);
|
||||||
|
sysExtensionApiEntity.setBodys(oldbodys);
|
||||||
|
Method[] methods = null;
|
||||||
|
Object object = null;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// 判断是否有内部api 是否扩展api 1、启用 2、停用
|
||||||
|
if (receiveApi.getExtensionApi() != null && "1".equals(receiveApi.getExtensionApi())
|
||||||
|
&& receiveApi.getBeanName() != null && !"".equals(receiveApi.getBeanName())
|
||||||
|
&& receiveApi.getFunName() != null && !"".equals(receiveApi.getFunName())
|
||||||
|
) {
|
||||||
|
//获取类
|
||||||
|
try {
|
||||||
|
object = ApplicationContextUtil.getBeanByName(receiveApi.getBeanName());
|
||||||
|
} catch (SecurityException e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
//获取类下面的方法
|
||||||
|
methods = object.getClass().getMethods();
|
||||||
|
if (methods == null || methods.length == 0) {
|
||||||
|
return BaseResult.getFailureMessageEntity("未找到内部方法,请联系管理员");
|
||||||
|
}
|
||||||
|
for (Method m : methods) {
|
||||||
|
if (null != m) {
|
||||||
|
if (m.getName().equals(receiveApi.getFunName().trim())) {
|
||||||
|
try {
|
||||||
|
logger.info("invoke开始>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
sysExtensionApiEntity = (SysExtensionApiEntity) m.invoke(object, sysExtensionApiEntity);
|
||||||
|
logger.info("invoke结束>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("invokeException{}", e.getMessage());
|
||||||
|
return BaseResult.getFailureMessageEntity("内部方法执行错误,请联系管理员");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
headers = sysExtensionApiEntity.getHeaders();
|
||||||
|
String querys = sysExtensionApiEntity.getQuerys();
|
||||||
|
|
||||||
|
byte[] byteBodys = sysExtensionApiEntity.getByteBodys();
|
||||||
|
//设置参数获取参数
|
||||||
|
StringBuffer url = new StringBuffer();
|
||||||
|
if(!receiveApi.getDestinationAddress().toLowerCase().startsWith("http")){
|
||||||
|
url.append(receiveApp.getInterfaceAddress());
|
||||||
|
}
|
||||||
|
url.append(receiveApi.getDestinationAddress());
|
||||||
|
if (querys != null) {
|
||||||
|
url.append("?");
|
||||||
|
url.append(querys);
|
||||||
|
}
|
||||||
|
Integer outTime = 6000;
|
||||||
|
if (receiveApi.getTimeoutPeriod() != null && !"".equals(receiveApi.getTimeoutPeriod())) {
|
||||||
|
outTime = Integer.valueOf(receiveApi.getTimeoutPeriod());
|
||||||
|
}
|
||||||
|
//1、POST 2、GET
|
||||||
|
String method = "POST";
|
||||||
|
if ("2".equals(receiveApi.getRequestMethod())) {
|
||||||
|
method = "GET";
|
||||||
|
}
|
||||||
|
//List<String> a = Arrays.asList(new String[]{"apicode", "appid", "secretkey", "publickey", "x-forwarded-for", "cookie", "x-forwarded-proto", "x-real-ip", "content-length", "accept-language", "host", "content-type", "connection", "cache-control", "accept-encoding", "pragma", "accept", "user-agent"});
|
||||||
|
//Map<String, String> headers = new HashMap<>();
|
||||||
|
//if (receiveApi.getHeaderIn() != null && !"".equals(receiveApi.getHeaderIn())) {
|
||||||
|
// JSONArray jsonArray = JSONArray.parseArray(receiveApi.getHeaderIn());
|
||||||
|
// if (jsonArray != null && jsonArray.size() > 0) {
|
||||||
|
// for (int i = 0; i < jsonArray.size(); i++) {
|
||||||
|
// JSONObject object1 = jsonArray.getJSONObject(i);
|
||||||
|
// headers.put(object1.getString("parameterName"), object1.getString("example"));
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
//if (headerMap != null && headerMap.size() > 0) {
|
||||||
|
// for (Map.Entry<String, String> entry : headerMap.entrySet()) {
|
||||||
|
// if (!a.contains(entry.getKey())) {
|
||||||
|
// headers.put(entry.getKey(), entry.getValue());
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
|
|
||||||
|
if ("POST".equals(method)) {
|
||||||
|
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
|
||||||
|
// HttpClient
|
||||||
|
CloseableHttpClient closeableHttpClient = httpClientBuilder.disableCookieManagement().build();
|
||||||
|
HttpPost post = new HttpPost(url.toString());
|
||||||
|
CloseableHttpResponse response = null;
|
||||||
|
|
||||||
|
RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(outTime).build();
|
||||||
|
post.setConfig(requestConfig);//设置请求参数【超时时间】
|
||||||
|
|
||||||
|
if (headers != null && headers.size() > 0) {
|
||||||
|
for (String key : headers.keySet()) {
|
||||||
|
post.setHeader(key, headers.get(key));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
byte[] body = null;
|
||||||
|
boolean flag = true;
|
||||||
|
try {
|
||||||
|
if (byteBodys != null && !"".equals(byteBodys)) {
|
||||||
|
ByteArrayEntity entity = new ByteArrayEntity(byteBodys);
|
||||||
|
entity.setContentType("application/json");
|
||||||
|
post.setEntity(entity);
|
||||||
|
}
|
||||||
|
response = closeableHttpClient.execute(post);
|
||||||
|
|
||||||
|
HttpEntity entity = response.getEntity();
|
||||||
|
synchronized (lock) {
|
||||||
|
body = EntityUtils.toByteArray(entity);
|
||||||
|
}
|
||||||
|
flag = true;
|
||||||
|
logger.info("返回结果:" +Base64.getEncoder().encodeToString(body));
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("请求错误:" + e.getMessage());
|
||||||
|
flag = false;
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
// 关闭响应对象
|
||||||
|
if (response != null) {
|
||||||
|
response.close();
|
||||||
|
}
|
||||||
|
// 关闭响应对象
|
||||||
|
if (closeableHttpClient != null) {
|
||||||
|
closeableHttpClient.close();
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
logger.info("保存日志开始");
|
||||||
|
SysMessageManageLogEntity sysMessageManageLogEntity = saveLog(sendApp, receiveApp, receiveApi, oldbodys,Base64.getEncoder().encodeToString(byteBodys) , oldheaderMap,headers, headers, oldquerys,querys, body.toString(),true,null);
|
||||||
|
if (methods != null && methods.length > 0) {
|
||||||
|
for (Method m : methods) {
|
||||||
|
if (null != m) {
|
||||||
|
if (m.getName().equals(receiveApi.getFunName().trim()+"CallBack")) {
|
||||||
|
try {
|
||||||
|
logger.info("invoke开始>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
m.invoke(object, sysMessageManageLogEntity);
|
||||||
|
logger.info("invoke结束>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("invokeException{}", e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logger.info("保存日志结束");
|
||||||
|
if (flag) {
|
||||||
|
if (JSONUtil.isTypeJSON(body.toString())) {
|
||||||
|
JSONObject jsonObject = JSONObject.parseObject(body.toString());
|
||||||
|
if(sysMessageManageLogEntity.getStatus() != null && "3".equals(sysMessageManageLogEntity.getStatus())){
|
||||||
|
return BaseResult.getSuccessMessageEntity("转发成功", jsonObject);
|
||||||
|
}else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", jsonObject);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if(sysMessageManageLogEntity.getStatus() != null && "3".equals(sysMessageManageLogEntity.getStatus())){
|
||||||
|
return BaseResult.getSuccessMessageEntity("转发成功", body);
|
||||||
|
}else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", body);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", body);
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {//GET
|
||||||
|
|
||||||
|
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
|
||||||
|
// HttpClient
|
||||||
|
CloseableHttpClient closeableHttpClient = httpClientBuilder.disableCookieManagement().build();
|
||||||
|
HttpGet get = new HttpGet(url.toString());
|
||||||
|
CloseableHttpResponse response = null;
|
||||||
|
|
||||||
|
RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(outTime).build();
|
||||||
|
get.setConfig(requestConfig);//设置请求参数【超时时间】
|
||||||
|
if (headers != null && headers.size() > 0) {
|
||||||
|
for (String key : headers.keySet()) {
|
||||||
|
get.setHeader(key, headers.get(key));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
StringBuilder body = new StringBuilder();
|
||||||
|
|
||||||
|
boolean flag = true;
|
||||||
|
try {
|
||||||
|
response = closeableHttpClient.execute(get);
|
||||||
|
HttpEntity entity = response.getEntity();
|
||||||
|
synchronized (lock) {
|
||||||
|
body.append(EntityUtils.toString(entity,"UTF-8"));
|
||||||
|
}
|
||||||
|
flag = true;
|
||||||
|
logger.info("返回结果:" + body);
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("请求错误:" + e.getMessage());
|
||||||
|
body.append(e.getMessage());
|
||||||
|
flag = false;
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
// 关闭响应对象
|
||||||
|
if (response != null) {
|
||||||
|
response.close();
|
||||||
|
}
|
||||||
|
// 关闭响应对象
|
||||||
|
if (closeableHttpClient != null) {
|
||||||
|
closeableHttpClient.close();
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logger.info("保存日志开始");
|
||||||
|
SysMessageManageLogEntity sysMessageManageLogEntity = saveLog(sendApp, receiveApp, receiveApi, oldbodys,Base64.getEncoder().encodeToString(byteBodys) , oldheaderMap,headers, headers, oldquerys,querys, body.toString(), true,null);
|
||||||
|
if (methods != null && methods.length > 0) {
|
||||||
|
for (Method m : methods) {
|
||||||
|
if (null != m) {
|
||||||
|
if (m.getName().equals(receiveApi.getFunName().trim()+"CallBack")) {
|
||||||
|
try {
|
||||||
|
logger.info("invoke开始>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
m.invoke(object, sysMessageManageLogEntity);
|
||||||
|
logger.info("invoke结束>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("invokeException{}", e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
logger.info("保存日志结束");
|
||||||
|
if (flag) {
|
||||||
|
if (JSONUtil.isTypeJSON(body.toString())) {
|
||||||
|
JSONObject jsonObject = JSONObject.parseObject(body.toString());
|
||||||
|
if(sysMessageManageLogEntity.getStatus() != null && "3".equals(sysMessageManageLogEntity.getStatus())){
|
||||||
|
return BaseResult.getSuccessMessageEntity("转发成功", jsonObject);
|
||||||
|
}else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", jsonObject);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if(sysMessageManageLogEntity.getStatus() != null && "3".equals(sysMessageManageLogEntity.getStatus())){
|
||||||
|
return BaseResult.getSuccessMessageEntity("转发成功", body);
|
||||||
|
}else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", body);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return BaseResult.getFailureMessageEntity("转发失败", body);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
package com.hzya.frame.sysnew.grovy.service;
|
package com.hzya.frame.sysnew.grovy.service;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
|
||||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,5 +22,5 @@ public interface IGroovyIntegrationService {
|
||||||
* @param jsonObject 请求参数对象
|
* @param jsonObject 请求参数对象
|
||||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||||
**/
|
**/
|
||||||
JsonResultEntity groovyScriptExecution(JSONObject jsonObject);
|
SysExtensionApiEntity groovyScriptExecution(JSONObject jsonObject);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,12 +2,11 @@ package com.hzya.frame.sysnew.grovy.service.impl;
|
||||||
|
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
|
||||||
import com.hzya.frame.sysnew.grovy.service.IGroovyIntegrationService;
|
import com.hzya.frame.sysnew.grovy.service.IGroovyIntegrationService;
|
||||||
import com.hzya.frame.util.GroovyUtil;
|
import com.hzya.frame.util.GroovyUtil;
|
||||||
import com.hzya.frame.web.entity.BaseResult;
|
import com.hzya.frame.web.entity.BaseResult;
|
||||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
import groovy.lang.GroovyClassLoader;
|
|
||||||
import groovy.lang.GroovyObject;
|
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
@ -24,28 +23,41 @@ import org.springframework.stereotype.Service;
|
||||||
public class GroovyIntegrationServiceImpl implements IGroovyIntegrationService {
|
public class GroovyIntegrationServiceImpl implements IGroovyIntegrationService {
|
||||||
private static final Logger logger = LoggerFactory.getLogger(GroovyIntegrationServiceImpl.class);
|
private static final Logger logger = LoggerFactory.getLogger(GroovyIntegrationServiceImpl.class);
|
||||||
|
|
||||||
// public static void main(String[] args) {
|
|
||||||
// HelloWorld helloWorld = new HelloWorld();
|
|
||||||
// System.out.println(helloWorld.sayHello());
|
|
||||||
// }
|
|
||||||
|
|
||||||
public static void main(String[] args) throws IllegalAccessException, InstantiationException {
|
|
||||||
GroovyClassLoader groovyClassLoader = new GroovyClassLoader();
|
|
||||||
|
|
||||||
// 动态编译和加载Groovy脚本
|
|
||||||
Class<?> groovyClass = groovyClassLoader.parseClass("println(\"1231231\")");
|
|
||||||
|
|
||||||
// 创建Groovy类的实例
|
|
||||||
GroovyObject groovyObject = (GroovyObject) groovyClass.newInstance();
|
|
||||||
// 执行Groovy脚本
|
|
||||||
JSONObject jsonObject = new JSONObject();
|
|
||||||
jsonObject.put("name", "张三");
|
|
||||||
Object returnObj = groovyObject.invokeMethod("run", jsonObject.toJSONString());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public JsonResultEntity groovyScriptExecution(JSONObject jsonObject) {
|
public SysExtensionApiEntity groovyScriptExecution(JSONObject jsonObject) {
|
||||||
Object object = GroovyUtil.execute(jsonObject);
|
Object object = GroovyUtil.execute(jsonObject);
|
||||||
return BaseResult.getSuccessMessageEntity(object);
|
return new SysExtensionApiEntity();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
java.lang.String str = "{\"project_org\":\"\",\"modify_time\":\"2024-06-17 16:52:34\",\"project_duty_dept\":null,\"project_name\":\"凯伍德组织档案\",\"document_rule_num\":1,\"add_status\":\"0\",\"delete_status\":\"1\",\"project_dutier\":\"\",\"id\":\"fb12734c8267488b96833633e68a7abc\",\"data_status\":\"F\",\"modify_user_id\":\"c796fd9ba4c9f5ff3cc2fa41a040e443\",\"sorts\":1,\"project_memo\":\"\",\"document_rule\":\"XM-2024-06-17-00001\",\"create_user_id\":\"c796fd9ba4c9f5ff3cc2fa41a040e443\",\"create_time\":\"2024-06-17 16:42:18\",\"company_id\":null,\"project_sh_name\":\"\",\"project_code\":\"01004\",\"project_currtype\":\"\",\"update_status\":\"0\",\"sts\":\"Y\",\"org_id\":\"0\",\"project_parentpro\":\"\",\"project_bill_type\":\"\"}";
|
||||||
|
|
||||||
|
A88772 s = new A88772();
|
||||||
|
s .execute(str);
|
||||||
|
}
|
||||||
|
static class A88772 {
|
||||||
|
String execute(String jsonStr) {
|
||||||
|
com.alibaba.fastjson.JSONObject reqData = com.alibaba.fastjson.JSON.parseObject(jsonStr);
|
||||||
|
com.alibaba.fastjson.JSONObject returnObject = new com.alibaba.fastjson.JSONObject();
|
||||||
|
com.alibaba.fastjson.JSONObject ufinterfaceObject = new com.alibaba.fastjson.JSONObject();
|
||||||
|
ufinterfaceObject.put("billtype", "supplier"); ufinterfaceObject.put("isexchange", "Y");
|
||||||
|
ufinterfaceObject.put("replace", "Y"); ufinterfaceObject.put("sender", "OA");
|
||||||
|
ufinterfaceObject.put("account", "01"); ufinterfaceObject.put("groupcode", "00");
|
||||||
|
com.alibaba.fastjson.JSONObject billObject = new com.alibaba.fastjson.JSONObject();
|
||||||
|
com.alibaba.fastjson.JSONObject billheadObject = new com.alibaba.fastjson.JSONObject();
|
||||||
|
billheadObject.put("code", reqData.get("project_code")); billheadObject.put("supprop", "0");
|
||||||
|
billheadObject.put("custstate", "1"); billheadObject.put("pk_supplierclass", "S01");
|
||||||
|
billheadObject.put("pk_country", "CN"); billheadObject.put("pk_timezone", "P0800");
|
||||||
|
billheadObject.put("pk_format", "ZH-CN"); billheadObject.put("enablestate", "2");
|
||||||
|
billheadObject.put("name", reqData.get("project_sh_name")); billheadObject.put("pk_group", "00");
|
||||||
|
billheadObject.put("pk_org", "003"); billheadObject.put("taxpayerid", "087981489021135119");
|
||||||
|
returnObject.put("ufinterface",ufinterfaceObject); billObject.put("billhead", billheadObject); returnObject.put("bill",billObject);
|
||||||
|
System.out.println( returnObject.toJSONString());
|
||||||
|
return returnObject.toJSONString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,10 @@
|
||||||
package com.hzya.frame.u8c.ax.service.impl;
|
package com.hzya.frame.u8c.ax.service.impl;
|
||||||
|
|
||||||
import cn.hutool.http.HttpRequest;
|
|
||||||
import cn.hutool.json.JSONUtil;
|
|
||||||
import com.alibaba.fastjson.JSON;
|
import com.alibaba.fastjson.JSON;
|
||||||
import com.alibaba.fastjson.JSONArray;
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
|
import com.hzya.frame.basedao.service.impl.BaseService;
|
||||||
import com.hzya.frame.u8c.ax.dao.IAxDao;
|
import com.hzya.frame.u8c.ax.dao.IAxDao;
|
||||||
import com.hzya.frame.u8c.ax.entity.ArchivesEntity;
|
import com.hzya.frame.u8c.ax.entity.*;
|
||||||
import com.hzya.frame.u8c.ax.entity.Ass;
|
|
||||||
import com.hzya.frame.u8c.ax.entity.Voucher;
|
|
||||||
import com.hzya.frame.u8c.ax.entity.VoucherDetails;
|
|
||||||
import com.hzya.frame.u8c.ax.entity.VoucherRoot;
|
|
||||||
import com.hzya.frame.u8c.ax.service.IAxService;
|
import com.hzya.frame.u8c.ax.service.IAxService;
|
||||||
import com.hzya.frame.web.entity.BaseResult;
|
import com.hzya.frame.web.entity.BaseResult;
|
||||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||||
|
@ -22,14 +16,11 @@ import org.apache.http.entity.ByteArrayEntity;
|
||||||
import org.apache.http.impl.client.CloseableHttpClient;
|
import org.apache.http.impl.client.CloseableHttpClient;
|
||||||
import org.apache.http.impl.client.HttpClientBuilder;
|
import org.apache.http.impl.client.HttpClientBuilder;
|
||||||
import org.apache.http.util.EntityUtils;
|
import org.apache.http.util.EntityUtils;
|
||||||
import org.checkerframework.checker.units.qual.A;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import com.hzya.frame.basedao.service.impl.BaseService;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
@ -218,6 +209,7 @@ public class AxServiceImpl extends BaseService<ArchivesEntity, String> implement
|
||||||
post.setHeader("publicKey", publicKey);
|
post.setHeader("publicKey", publicKey);
|
||||||
post.setHeader("secretKey", secretKey);
|
post.setHeader("secretKey", secretKey);
|
||||||
post.setHeader("appId", appId);
|
post.setHeader("appId", appId);
|
||||||
|
post.setHeader("needStackTrace", jsonObject.getString("needStackTrace"));
|
||||||
switch (jsonObject.getString("voucherType")){
|
switch (jsonObject.getString("voucherType")){
|
||||||
case "add"://新增
|
case "add"://新增
|
||||||
post.setHeader("apiCode", pzApiCodexz);
|
post.setHeader("apiCode", pzApiCodexz);
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
package com.hzya.frame.webapp.entrance.controler;
|
package com.hzya.frame.webapp.entrance.controler;
|
||||||
|
|
||||||
import com.hzya.frame.bip.v3.v2207.service.IBipSsoService;
|
|
||||||
import com.hzya.frame.sysnew.application.service.ISysApplicationService;
|
import com.hzya.frame.sysnew.application.service.ISysApplicationService;
|
||||||
import com.hzya.frame.sys.entity.EsbReturnEntity;
|
import com.hzya.frame.sys.entity.EsbReturnEntity;
|
||||||
import com.hzya.frame.sys.file.download.entity.FileDownloadEntity;
|
import com.hzya.frame.sys.file.download.entity.FileDownloadEntity;
|
||||||
|
@ -30,8 +29,6 @@ import org.springframework.web.multipart.MultipartFile;
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
import javax.servlet.ServletRequest;
|
import javax.servlet.ServletRequest;
|
||||||
import javax.servlet.ServletResponse;
|
import javax.servlet.ServletResponse;
|
||||||
import javax.servlet.http.HttpServletRequest;
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.charset.StandardCharsets;
|
import java.nio.charset.StandardCharsets;
|
||||||
|
|
||||||
|
@ -52,8 +49,6 @@ public class EntranceController {
|
||||||
private IEntranceService entranceService;
|
private IEntranceService entranceService;
|
||||||
@Autowired
|
@Autowired
|
||||||
protected IFileDownloadService filedownloadService;
|
protected IFileDownloadService filedownloadService;
|
||||||
@Autowired
|
|
||||||
protected IBipSsoService bipSsoService;
|
|
||||||
@Resource
|
@Resource
|
||||||
protected ISysApplicationService sysApplicationService;
|
protected ISysApplicationService sysApplicationService;
|
||||||
@RequestMapping(value = "/option")
|
@RequestMapping(value = "/option")
|
||||||
|
@ -169,10 +164,9 @@ public class EntranceController {
|
||||||
public JsonResultEntity externalCallInterface(ServletRequest servletRequest, ServletResponse servletResponse) throws Exception {
|
public JsonResultEntity externalCallInterface(ServletRequest servletRequest, ServletResponse servletResponse) throws Exception {
|
||||||
return sysApplicationService.externalCallInterface(servletRequest,servletResponse);
|
return sysApplicationService.externalCallInterface(servletRequest,servletResponse);
|
||||||
}
|
}
|
||||||
@RequestMapping(value = "/erpSso")
|
@RequestMapping(value = "/externalCallInterfaceToESB")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public String erpSso(HttpServletRequest request,HttpServletResponse response, String ticket) throws Exception {
|
public JsonResultEntity externalCallInterfaceToESB(ServletRequest servletRequest, ServletResponse servletResponse) throws Exception {
|
||||||
response.sendRedirect(bipSsoService.erpSso(request,ticket));
|
return sysApplicationService.externalCallInterfaceToESB(servletRequest,servletResponse);
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue