Conflicts:
	buildpackage/src/main/resources/application-llg.yml
	service/src/main/java/com/hzya/frame/u8c/ax/entity/VoucherDetails.java
	service/src/main/java/com/hzya/frame/u8c/ax/service/impl/AxServiceImpl.java
This commit is contained in:
lvleigang 2024-09-06 11:20:26 +08:00
commit 993ef052dd
721 changed files with 82530 additions and 12250 deletions

8
.gitignore vendored
View File

@ -52,5 +52,11 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk
./idea/
/buildpackage/src/main/resources/banner.txt
/webapp/target/
/service/target/
/core/target/
/common/target/
/buildpackage/target/
/webapp/target/

View File

@ -11,3 +11,41 @@
修改 updateEntity
删除 deleteEntity
启用停用 enableDisableEntity
Flyway
比较文件先后顺序规则:左对齐原则缺位用0代替
1.0.0.1 比 1.0.0 版本高。
1.0.10 比 1.0.9.4 版本高。
1.0.0_1 比 1.0.0 版本高。
1_0_0_1 比 1_0_0 版本高。
1.0.10 和 1.0.010 版本号一样高,这是因为每个版本号部分的前导 0 会被忽略。
Flyway 将 SQL 文件分为 Versioned 、Repeatable 和 Undo 三种:
Versioned 用于版本升级,每个版本有唯一的版本号并只能执行一次。
Repeatable 可重复执行,当 Flyway 检测到 Repeatable 类型的 SQL 脚本的 checksum 有变动Flyway 就会重新执行该脚本,它并不用于版本更新,这类的 migration 总是在 Versioned 执行之后才被执行。
Undo 用于撤销具有相同版本的版本化迁移带来的影响。但是该回滚过于粗暴,过于机械化,一般不推荐使用。一般建议使用 Versioned 模式来解决。
Prefix 可配置,前缀标识,默认值 V 表示 Versioned R 表示 Repeatable U 表示 Undo。
Version 标识版本号, 由一个或多个数字构成,数字之间的分隔符可用点 . 或下划线 _。
Separator 可配置,用于分隔版本标识与描述信息,默认为两个下划线 __
Description 描述信息,文字之间可以用下划线 _ 或空格 分隔。
Suffix 可配置,后续标识,默认为 .sql。
例如:
V3.0.1__initialize.sql 只执行一次
V3.0.2__test_insert.sql 这个文件会在V3.0.1__initialize.sql之后执行且只执行一次
R__TRUNCATE_bd_app.sql 这个文件会执行多次但是会校验是否checksum一般不使用用:注意因为多次执行所以不能有版本号
**校验checksum,简单来说就是文件的行数据发生改变时候会执行,如果内容不变也是不会去执行的**
表flyway_schema_history会记录sql执行的情况
本项目需要的sql统一放置到resources/flyway下
# 系统初始化
| 名称 | 备注 |
|------|------|
| V3.0.1__sys_init_table.sql | 系统初始化建表语句 |
| 李四 | 32 |
| 王五 | 24 |

View File

@ -69,6 +69,36 @@
<profile.active>llg</profile.active>
</properties>
</profile>
<profile>
<id>zqtlocal</id> <!--曾庆拓-->
<properties>
<profile.active>zqtlocal</profile.active>
</properties>
</profile>
<profile>
<id>yuqh</id> <!--于群辉-->
<properties>
<profile.active>yuqh</profile.active>
</properties>
</profile>
<profile>
<id>xel</id> <!--相二林-->
<properties>
<profile.active>xel</profile.active>
</properties>
</profile>
<profile>
<id>ydc</id> <!--英德赛-->
<properties>
<profile.active>ydc</profile.active>
</properties>
</profile>
<profile>
<id>yc</id> <!--越城区-->
<properties>
<profile.active>yc</profile.active>
</properties>
</profile>
</profiles>
<build>
<finalName>kangarooDataCenterV3</finalName>

View File

@ -5,6 +5,7 @@ import com.baomidou.dynamic.datasource.spring.boot.autoconfigure.druid.DruidDyna
import com.hzya.frame.DataSource.impl.DynamicDataSourceAssistConfiguration;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;
import org.springframework.boot.web.servlet.ServletComponentScan;
@ -13,12 +14,11 @@ import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.ImportResource;
@EnableCaching
@ServletComponentScan(basePackages = {"com.hzya.frame"})
@ServletComponentScan(basePackages = {"com.hzya.frame" ,"org.jeecg.modules.jmreport","com.jimureport.demo"})
@ImportResource(locations = {"classpath:cfgHome/**/spring/spring-*.xml"})
@Import({DruidDynamicDataSourceConfiguration.class, DynamicDataSourceCreatorAutoConfiguration.class, DynamicDataSourceAssistConfiguration.class})
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class, HibernateJpaAutoConfiguration.class})
//@SpringBootApplication(scanBasePackages = {"com.hzya.frame"})
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class, HibernateJpaAutoConfiguration.class, FlywayAutoConfiguration.class})
public class WebappApplication {
public static void main(String[] args) {

View File

@ -0,0 +1,15 @@
package com.hzya.frame.plugin.a8bill.dao;
import com.hzya.frame.basedao.dao.IBaseDao;
import com.hzya.frame.plugin.a8bill.entity.PayBillEntity;
/**
* 组织档案(mdm_org: table)表数据库访问层
*
* @author makejava
* @since 2024-06-07 18:30:04
*/
public interface IPayBillDao extends IBaseDao<PayBillEntity, String> {
}

View File

@ -0,0 +1,16 @@
package com.hzya.frame.plugin.a8bill.dao.impl;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
import com.hzya.frame.plugin.a8bill.dao.IPayBillDao;
import com.hzya.frame.plugin.a8bill.entity.PayBillEntity;
/**
* 组织档案(MdmOrg)表数据库访问层
*
* @author makejava
* @since 2024-06-07 18:30:04
*/
public class PayBillDaoImpl extends MybatisGenericDao<PayBillEntity, String> implements IPayBillDao {
}

View File

@ -0,0 +1,14 @@
package com.hzya.frame.plugin.a8bill.entity;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 付款单
*
* @author makejava
* @since 2024-06-07 18:30:04
*/
public class PayBillEntity extends BaseEntity {
}

View File

@ -0,0 +1,16 @@
<?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.plugin.a8bill.dao.impl.PayBillDaoImpl">
<resultMap id="get-PayBillEntity-result" type="com.hzya.frame.plugin.a8bill.entity.PayBillEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "PayBillEntity_Base_Column_List">
id
</sql>
</mapper>

View File

@ -0,0 +1,63 @@
package com.hzya.frame.plugin.a8bill.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.seeyon.paybill.service.IPayBillService;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
/**
* 付款单(PayBill)表服务接口
*
* @author makejava
* @since 2024-06-07 18:30:05
*/
public class PayBillPluginInitializer extends PluginBaseEntity{
Logger logger = LoggerFactory.getLogger(PayBillPluginInitializer.class);
@Autowired
private IPayBillService payBillService;
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
@Override
public String getPluginId() {
return "PayBillPlugin";
}
@Override
public String getPluginName() {
return "PayBillPlugin插件";
}
@Override
public String getPluginLabel() {
return "PayBillPlugin";
}
@Override
public String getPluginType() {
return "1";
}
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) {
try {
logger.info("======开始执行付款单据信息同步========");
return payBillService.sendEngineerPayBillToBip(requestJson);
}catch (Exception e){
logger.info("======执行付款单据同步失败:{}========",e.getMessage());
e.printStackTrace();
}
return null;
}
}

View File

@ -0,0 +1,63 @@
package com.hzya.frame.plugin.a8bill.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.seeyon.paybill.service.IPayBillService;
import com.hzya.frame.seeyon.recbill.service.IRecBillService;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
/**
* 收款单(RecBill)表服务接口
*
* @author makejava
* @since 2024-06-07 18:30:05
*/
public class RecBillPluginInitializer extends PluginBaseEntity{
Logger logger = LoggerFactory.getLogger(RecBillPluginInitializer.class);
@Autowired
private IRecBillService recBillService;
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
@Override
public String getPluginId() {
return "RecBillPluginInitializer";
}
@Override
public String getPluginName() {
return "RecBillPluginInitializer插件";
}
@Override
public String getPluginLabel() {
return "RecBillPluginInitializer";
}
@Override
public String getPluginType() {
return "1";
}
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) {
try {
logger.info("======开始执行收款单据信息同步========");
return recBillService.sendRecBillToBip(requestJson);
}catch (Exception e){
logger.info("======执行收款单据同步失败:{}========",e.getMessage());
e.printStackTrace();
}
return null;
}
}

View File

@ -0,0 +1,13 @@
package com.hzya.frame.plugin.a8bill.service;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.plugin.a8bill.entity.PayBillEntity;
/**
* 付款单
*
* @author makejava
* @since 2024-06-07 18:30:05
*/
public interface IPayBillService extends IBaseService<PayBillEntity, String>{
}

View File

@ -0,0 +1,22 @@
package com.hzya.frame.plugin.a8bill.service.impl;
import com.hzya.frame.basedao.service.impl.BaseService;
import com.hzya.frame.plugin.a8bill.entity.PayBillEntity;
import com.hzya.frame.plugin.a8bill.service.IPayBillService;
/**
* private IMdmOrgDao mdmOrgDao;
*
* @Autowired
* public void setMdmOrgDao(IMdmOrgDao dao) {
* this.mdmOrgDao = dao;
* this.dao = dao;
* }
*
* @author makejava
* @since 2024-06-07 18:30:05
*/
public class PayBillServiceImpl extends BaseService<PayBillEntity, String> implements IPayBillService {
}

View File

@ -0,0 +1,114 @@
package com.hzya.frame.plugin.cbs8.plugin;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.cbs8.dto.req.AgentPayResultRequestDTO;
import com.hzya.frame.cbs8.dto.res.AgentPayQueryDTO;
import com.hzya.frame.cbs8.dto.res.AgentPayResultResDTO;
import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.checkerframework.checker.units.qual.A;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.List;
/**
* @Description
* @Author xiangerlin
* @Date 2024/6/18 17:22
**/
public class AgentPayResultPluginInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(AgentPayResultPluginInitializer.class);
@Autowired
private ICbsPluginService cbsPluginService;
/***
* 插件初始化方法
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 10:48
* @Param []
* @return void
**/
@Override
public void initialize() {
}
/****
* 插件销毁方法
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
/****
* 插件的ID
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginId() {
return "CBS8AgentPayResultPlugin";
}
/****
* 插件的名称
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginName() {
return "cbs8代发代扣详情查询插件";
}
/****
* 插件的显示值
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginLabel() {
return "cbs8代发代扣详情查询插件";
}
/***
* 插件类型 1场景插件
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 14:01
* @Param []
* @return java.lang.String
**/
@Override
public String getPluginType() {
return "1";
}
/***
* 执行业务代码
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-07 11:20
* @param requestJson 执行业务代码的参数
* @return void
**/
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
//1查询代发代扣交易未完成代
//2调用cbs接口
AgentPayResultRequestDTO agentPayResultRequestDTO = new AgentPayResultRequestDTO();
agentPayResultRequestDTO.setBusNum("PA00034224062600011");
AgentPayResultResDTO agentPayResultResDTO = cbsPluginService.agentPayResult(agentPayResultRequestDTO);
//记录日志
return null;
}
}

View File

@ -0,0 +1,101 @@
package com.hzya.frame.plugin.cbs8.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
/**
* @Description 电子回单定时任务
* @Author xiangerlin
* @Date 2024/6/17 14:03
**/
public class ElecBillPluginInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(getClass());
@Autowired
private ICbsPluginService cbsPluginService;
/***
* 插件初始化方法
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 10:48
* @Param []
* @return void
**/
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
/****
* 插件销毁方法
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
/****
* 插件的ID
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginId() {
return "CBS8ElecBillPlugin";
}
/****
* 插件的名称
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginName() {
return "cbs8电子回单插件";
}
/****
* 插件的显示值
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginLabel() {
return "cbs8电子回单插件";
}
/***
* 插件类型 1场景插件
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 14:01
* @Param []
* @return java.lang.String
**/
@Override
public String getPluginType() {
return "1";
}
/***
* 执行业务代码
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-07 11:20
* @param requestJson 执行业务代码的参数
* @return void
**/
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
cbsPluginService.elecBillUpload(requestJson);
return null;
}
}

View File

@ -0,0 +1,116 @@
package com.hzya.frame.plugin.cbs8.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.cbs8.dto.res.PayResponseDTO;
import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentDetailEntity;
import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentEntity;
import com.hzya.frame.seeyon.cbs8.service.IAgentPaymentService;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.apache.commons.collections.CollectionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.List;
/**
* @Description
* @Author xiangerlin
* @Date 2024/6/18 14:03
**/
public class PayApplyAgentPluginInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(PayApplyAgentPluginInitializer.class);
@Autowired
private ICbsPluginService cbsPluginService;
@Autowired
private IAgentPaymentService agentPaymentService;
/***
* 插件初始化方法
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 10:48
* @Param []
* @return void
**/
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
/****
* 插件销毁方法
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
/****
* 插件的ID
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginId() {
return "CBS8PayApplyAgentPlugin";
}
/****
* 插件的名称
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginName() {
return "cbs8代发代扣插件";
}
/****
* 插件的显示值
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginLabel() {
return "cbs8代发代扣插件";
}
/***
* 插件类型 1场景插件
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 14:01
* @Param []
* @return java.lang.String
**/
@Override
public String getPluginType() {
return "1";
}
/***
* 执行业务代码
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-07 11:20
* @param requestJson 执行业务代码的参数
* @return void
**/
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
//1查询代支付的
AgentPaymentEntity agentPaymentEntity = new AgentPaymentEntity();
agentPaymentEntity.setOaId("4442823497745714629");
cbsPluginService.applyAgentPay(agentPaymentEntity);
return null;
}
}

View File

@ -0,0 +1,112 @@
package com.hzya.frame.plugin.cbs8.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
/**
* @Description 经办支付申请
* @Author xiangerlin
* @Date 2024/6/7 13:42
**/
public class PayApplyPluginInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(PayApplyPluginInitializer.class);
@Autowired
private ICbsPluginService cbsPluginService;
/***
* 插件初始化方法
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 10:48
* @Param []
* @return void
**/
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
/****
* 插件销毁方法
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
/****
* 插件的ID
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginId() {
return "CBS8PayApplyPlugin";
}
/****
* 插件的名称
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginName() {
return "cbs8支付申请插件";
}
/****
* 插件的显示值
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginLabel() {
return "cbs8支付申请插件";
}
/***
* 插件类型 1场景插件
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 14:01
* @Param []
* @return java.lang.String
**/
@Override
public String getPluginType() {
return "1";
}
/***
* 执行业务代码
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-07 11:20
* @param requestJson 执行业务代码的参数
* @return void
**/
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
PaymentEntity paymentEntity = null;
if (null != requestJson){
requestJson.remove("jsonStr");
paymentEntity = JSONObject.parseObject(requestJson.toString(),PaymentEntity.class);
}
if (null == paymentEntity)
paymentEntity = new PaymentEntity();
//支付申请
paymentEntity.setOaId("8475071606892874568");
cbsPluginService.applyPay(paymentEntity);
return null;
}
}

View File

@ -0,0 +1,110 @@
package com.hzya.frame.plugin.cbs8.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
import com.hzya.frame.seeyon.cbs8.entity.CbsLogEntity;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
/**
* @Description 查询支付结果
* @Author xiangerlin
* @Date 2024/6/14 16:24
**/
public class PayResultPluginInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(PayResultPluginInitializer.class);
@Autowired
private ICbsPluginService cbsPluginService;
/***
* 插件初始化方法
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 10:48
* @Param []
* @return void
**/
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
/****
* 插件销毁方法
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
/****
* 插件的ID
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginId() {
return "CBS8PayResultPlugin";
}
/****
* 插件的名称
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginName() {
return "cbs8支付结果查询插件";
}
/****
* 插件的显示值
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginLabel() {
return "cbs8支付结果查询插件";
}
/***
* 插件类型 1场景插件
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 14:01
* @Param []
* @return java.lang.String
**/
@Override
public String getPluginType() {
return "1";
}
/***
* 执行业务代码
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-07 11:20
* @param requestJson 执行业务代码的参数
* @return void
**/
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
CbsLogEntity cbsLogEntity = null;
if (null != requestJson){
requestJson.remove("jsonStr");
cbsLogEntity = JSONObject.parseObject(requestJson.toString(),CbsLogEntity.class);
}
if (null == cbsLogEntity){
cbsLogEntity = new CbsLogEntity();
}
cbsPluginService.queryResult(cbsLogEntity);
return null;
}
}

View File

@ -0,0 +1,126 @@
package com.hzya.frame.plugin.cbs8.plugin;
import cn.hutool.core.date.DateUtil;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.cbs8.dto.req.TransactionDetailReqDTO;
import com.hzya.frame.cbs8.dto.res.TransactionDetailDTO;
import com.hzya.frame.cbs8.util.CBSUtil;
import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.List;
/**
* @Description 交易明细查询
* @Author xiangerlin
* @Date 2024/6/17 16:03
**/
public class TransactionDetailPluginInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(getClass());
@Autowired
private ICbsPluginService cbsPluginService;
/***
* 插件初始化方法
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 10:48
* @Param []
* @return void
**/
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
/****
* 插件销毁方法
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
/****
* 插件的ID
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginId() {
return "CBS8TransactionDetailQueryPlugin";
}
/****
* 插件的名称
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginName() {
return "cbs8交易明细查询插件";
}
/****
* 插件的显示值
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginLabel() {
return "cbs8交易明细查询插件";
}
/***
* 插件类型 1场景插件
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 14:01
* @Param []
* @return java.lang.String
**/
@Override
public String getPluginType() {
return "1";
}
/***
* 执行业务代码
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-07 11:20
* @param requestJson 执行业务代码的参数
* @return void
**/
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
TransactionDetailReqDTO transactionDetailReqDTO = null;
if (null != requestJson){
requestJson.remove("jsonStr");
transactionDetailReqDTO = JSONObject.parseObject(requestJson.toString(),TransactionDetailReqDTO.class);
}
if (null == transactionDetailReqDTO){
transactionDetailReqDTO = new TransactionDetailReqDTO();
}
transactionDetailReqDTO.setCurrentPage(CBSUtil.DEFAULT_CURRENT_PAGE);
transactionDetailReqDTO.setPageSize(CBSUtil.DEFAULT_PAGE_SIZE);
transactionDetailReqDTO.setStartDate(DateUtil.today());
transactionDetailReqDTO.setEndDate(DateUtil.today());
transactionDetailReqDTO.setDateType("0");
transactionDetailReqDTO.setLoanType("2");
//1查询交易明细
List<TransactionDetailDTO> transactionDetailList = cbsPluginService.queryTransactionDetail(transactionDetailReqDTO);
//保存交易明细到OA底表
cbsPluginService.saveTransactionDetail(transactionDetailList);
return new JsonResultEntity("成功",true,transactionDetailList);
//return null;
}
}

View File

@ -0,0 +1,76 @@
package com.hzya.frame.plugin.cbs8.service;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.cbs8.dto.req.AgentPayResultRequestDTO;
import com.hzya.frame.cbs8.dto.req.TransactionDetailReqDTO;
import com.hzya.frame.cbs8.dto.res.AgentPayResultResDTO;
import com.hzya.frame.cbs8.dto.res.PayResponseDTO;
import com.hzya.frame.cbs8.dto.res.TransactionDetailDTO;
import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentDetailEntity;
import com.hzya.frame.seeyon.cbs8.entity.AgentPaymentEntity;
import com.hzya.frame.seeyon.cbs8.entity.CbsLogEntity;
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
import java.util.List;
/**
* @Description
* @Author xiangerlin
* @Date 2024/6/17 08:46
**/
public interface ICbsPluginService {
/**
* 支付申请
* @param entity
*/
void applyPay(PaymentEntity entity)throws Exception;
/**
* 保存支付申请日志
* @param entity
* @throws Exception
*/
void savePayLog(PaymentEntity entity,PayResponseDTO payResponseDTO)throws Exception;
/**
* 查询支付申请的交易结果
* @param cbsLogEntity
* @throws Exception
*/
void queryResult(CbsLogEntity cbsLogEntity)throws Exception;
/**
* 电子回单查询 并上传OA
* @param requestJson
* @throws Exception
*/
void elecBillUpload(JSONObject requestJson)throws Exception;
/**
* 查询交易明细
* transactionDetailReqDTO.currentPage transactionDetailReqDTO.pageSize 必填
* @param transactionDetailReqDTO
*/
List<TransactionDetailDTO> queryTransactionDetail(TransactionDetailReqDTO transactionDetailReqDTO);
/**
* 代发代扣 支付申请
* @param paymentEntity
*/
void applyAgentPay(AgentPaymentEntity paymentEntity);
/**
* 代发代扣 结果详情查询
* @param agentPayResultRequestDTO
* @return
*/
AgentPayResultResDTO agentPayResult(AgentPayResultRequestDTO agentPayResultRequestDTO);
/**
* 保存交易明细到OA底表
* @param transactionDetailList
*/
void saveTransactionDetail(List<TransactionDetailDTO> transactionDetailList);
}

View File

@ -0,0 +1,513 @@
package com.hzya.frame.plugin.cbs8.service.impl;
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.convert.Convert;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.io.FileUtil;
import cn.hutool.core.map.MapBuilder;
import cn.hutool.core.util.NumberUtil;
import cn.hutool.core.util.StrUtil;
import cn.hutool.http.HttpRequest;
import cn.hutool.http.HttpUtil;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.hzya.frame.cbs8.dto.req.*;
import com.hzya.frame.cbs8.dto.res.*;
import com.hzya.frame.cbs8.service.ICbs8Service;
import com.hzya.frame.cbs8.util.CBSUtil;
import com.hzya.frame.cbs8.util.CurrencyEnum;
import com.hzya.frame.cbs8.util.PayState;
import com.hzya.frame.plugin.cbs8.service.ICbsPluginService;
import com.hzya.frame.seeyon.cap4.form.dto.*;
import com.hzya.frame.seeyon.cbs8.entity.*;
import com.hzya.frame.seeyon.cbs8.service.*;
import com.hzya.frame.seeyon.entity.CtpAttachmentEntity;
import com.hzya.frame.seeyon.entity.CtpFileEntity;
import com.hzya.frame.seeyon.service.ICtpAttachmentService;
import com.hzya.frame.seeyon.util.RestUtil;
import com.hzya.frame.uuid.UUIDLong;
import com.hzya.frame.web.exception.BaseSystemException;
import org.apache.commons.collections.CollectionUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
/**
* @Description
* @Author xiangerlin
* @Date 2024/6/17 08:46
**/
public class CbsPluginServiceImpl implements ICbsPluginService {
Logger logger = LoggerFactory.getLogger(CbsPluginServiceImpl.class);
@Autowired
private ICbs8Service cbs8Service;
@Autowired
private IPaymentService paymentService;
@Autowired
private ICbsLogService cbsLogService;
@Autowired
private ICtpAttachmentService ctpAttachmentService;
@Autowired
private ITransactionDetailService transactionDetailService;
@Autowired
private IAgentPaymentService agentPaymentService;
@Autowired
private IAgentPaymentDetailService agentPaymentDetailService;
@Autowired
private RestUtil restUtil;
@Value("${cbs8.elec_path:}")
private String elec_path;
@Value("${OA.data_source_code:}")
private String oa_data_source_code;
/**
* 支付申请
*
* @param paymentEntity
*/
@Override
public void applyPay(PaymentEntity paymentEntity) throws Exception{
//查询待支付的列表
if (null == paymentEntity){
paymentEntity = new PaymentEntity();
}
paymentEntity.setDataSourceCode(oa_data_source_code);
List<PaymentEntity> paymentList = paymentService.queryUnpaid(paymentEntity);
/* List<PaymentEntity> paymentList = new ArrayList<>();
paymentEntity.setReferenceNum("CL202406140001");
paymentEntity.setPayAccount("655905707410000");
paymentEntity.setPayBankName("");
paymentEntity.setAmount("99");
paymentEntity.setRevAccount("123456778");
paymentEntity.setRevBankName("中国工商银行总行清算中心");
paymentEntity.setRevBankType("ICB");
paymentEntity.setRevAccountName("测试账户");
paymentEntity.setCnapsCode("102100099996");
paymentEntity.setPurpose("测试用途");
paymentEntity.setBusType("202");
paymentEntity.setCurrency("10");
paymentEntity.setPurpose("测试用途");
paymentList.add(paymentEntity);*/
if (CollectionUtils.isNotEmpty(paymentList)){
for (PaymentEntity pay : paymentList) {
//调用支付申请接口
PayResponseDTO payResponseDTO = cbs8Service.payApply(pay);
boolean successed = payResponseDTO.getSuccessed();
if (successed){
pay.setPayResult(PayState.p.getValue());
}else {
pay.setPayResult("推送失败");
}
//4更新OA表单
pay.setDataSourceCode(oa_data_source_code);
pay.setApplyCode(payResponseDTO.getBusNum());
paymentService.updatePayState(pay);
//5记录操作日志
savePayLog(pay,payResponseDTO);
}
}
}
/**
* 保存支付申请日志
*
* @param entity
* @throws Exception
*/
@Override
public void savePayLog(PaymentEntity entity,PayResponseDTO payResponseDTO) throws Exception {
//4. 保存日志
CbsLogEntity cbsLogEntity = new CbsLogEntity();
cbsLogEntity.setTitle(entity.getTitle());
cbsLogEntity.setPay_company(entity.getPayCompany());
cbsLogEntity.setPayee(entity.getRevAccountName());
cbsLogEntity.setAmount(entity.getAmount());
cbsLogEntity.setOa_id(entity.getOaId());
cbsLogEntity.setBill_code(Convert.toStr(entity.getReferenceNumNew(),entity.getReferenceNum()));
cbsLogEntity.setTab_name_ch(entity.getBillName());
cbsLogEntity.setTab_name_en(entity.getTableName());
Boolean successed = payResponseDTO.getSuccessed();
if (successed){
cbsLogEntity.setPay_state(PayState.p.getValue());
cbsLogEntity.setApply_state(PayState.two.getValue());
cbsLogEntity.setCbs_apply_code(payResponseDTO.getBusNum());
cbsLogEntity.setSuccessed("true");
entity.setPayResult(PayState.p.getValue());
}else {
cbsLogEntity.setPay_state("推送失败");
cbsLogEntity.setMessage(payResponseDTO.getErrorMsg());
cbsLogEntity.setSuccessed("false");
entity.setPayResult("推送失败");
}
cbsLogService.saveLog(cbsLogEntity);
}
/**
* 查询支付申请的交易结果
*
* @param cbsLogEntity
* @throws Exception
*/
@Override
public void queryResult(CbsLogEntity cbsLogEntity) throws Exception {
if (null == cbsLogEntity){
cbsLogEntity = new CbsLogEntity();
}
cbsLogEntity.setDataSourceCode(oa_data_source_code);
// 1查询支付中的日志
List<CbsLogEntity> inPayList = cbsLogService.queryInPayment(cbsLogEntity);
if (CollectionUtils.isNotEmpty(inPayList)){
for (CbsLogEntity entity : inPayList) {
try {
List<PayResultResDTO> payResultResList = cbs8Service.queryPayResult(new PayResultRequestDTO(entity.getBill_code()));
if (CollectionUtils.isNotEmpty(payResultResList)){
PayResultResDTO payResultResDTO = payResultResList.get(0);
//支付申请状态
String status = payResultResDTO.getStatus();
//支付状态
String pay_status = payResultResDTO.getPayStatus();
//不等于支付中的时候 更新支付状态
if (!PayState.p.getType().equals(pay_status)){
//如果支付状态为空保存支付申请状态如果支付状态不为空则保存支付状态
PaymentEntity paymentEntity = new PaymentEntity();
paymentEntity.setOaId(entity.getOa_id());
paymentEntity.setApplyCode(entity.getCbs_apply_code());
paymentEntity.setDataSourceCode(oa_data_source_code);
List<PaymentEntity> paymentList = paymentService.query(paymentEntity);
if (CollectionUtils.isNotEmpty(paymentList)){
paymentEntity = paymentList.get(0);
if (StrUtil.isEmpty(pay_status)) {
//支付申请状态 支付状态和支付申请状态用一个
paymentEntity.setPayResult(PayState.payStateGetValue(status));
} else {
//支付状态 支付状态和支付申请状态用一个
paymentEntity.setPayResult(PayState.payStateGetValue(pay_status));
}
if (StrUtil.isNotEmpty(pay_status) && pay_status.equals(PayState.g.getType())) {
//支付时间
paymentEntity.setPayDate(CBSUtil.convertTimestampToString(payResultResDTO.getPayDate()));
}
//更新视图单据状态
paymentEntity.setDataSourceCode(oa_data_source_code);
paymentService.updatePayState(paymentEntity);
//更新日志表状态
entity.setPay_state(paymentEntity.getPayResult());
entity.setApply_state(PayState.payStateGetValue(status));
entity.setDataSourceCode(oa_data_source_code);
cbsLogService.updateLog(entity);
}
}
}
}catch (Exception e){
e.printStackTrace();
logger.error("查询交易结果出错",e);
}
}
}
}
/**
* 电子回单查询 并上传OA
*
* @param requestJson
* @throws Exception
*/
@Override
public void elecBillUpload(JSONObject requestJson) throws Exception {
//查询支付成功 没有电子回单的数据
PaymentEntity paymentEntity = new PaymentEntity();
// List<PaymentEntity> paymentList = paymentService.queryElecIsNull(paymentEntity);
paymentEntity.setPayDate("2024-06-20");
paymentEntity.setReferenceNum("41");
List<PaymentEntity> paymentList = Arrays.asList(paymentEntity);
if (CollectionUtils.isNotEmpty(paymentList)) {
for (PaymentEntity pay : paymentList) {
try {
String payDate = DateUtil.format(DateUtil.parse(pay.getPayDate()), "yyyy-MM-dd");
//查询cbs电子回单
List<ElecResponseDTO> elecResList = cbs8Service.queryElecBill(new ElecRequestDTO(payDate,DateUtil.today(),pay.getReferenceNum()));
if (CollectionUtils.isNotEmpty(elecResList)){
ElecResponseDTO elecResponseDTO = elecResList.get(0);
String bucketFileUrl = elecResponseDTO.getBucketFileUrl();
String bucketFileName = elecResponseDTO.getBucketFileName();
//上传电子回单到OA
HttpUtil.downloadFile(bucketFileUrl, FileUtil.file(elec_path));//附件下载
String pdfUrl = elec_path + bucketFileName;
File file = new File(pdfUrl);
if (file.exists()) {
CtpFileEntity cpFileEntity = new CtpFileEntity();
cpFileEntity.setFile(file);
cpFileEntity.setDataSourceCode(oa_data_source_code);
JSONObject jsonObjectUpload = restUtil.fileUpload(file,"8000240005");
String file_url = jsonObjectUpload.getString("fileUrl");
if (null != jsonObjectUpload && StrUtil.isNotEmpty(file_url)) {
String sub_reference = String.valueOf(UUIDLong.longUUID());
pay.setReceipt(sub_reference);
//更新表单的电子回单值
paymentService.updateElec(pay);
//保存附件关系
CtpAttachmentEntity ctpAttachmentEntity = new CtpAttachmentEntity();
ctpAttachmentEntity.setFile_url(file_url);
ctpAttachmentService.saveAttachment(file_url, pay.getSummaryId(), sub_reference);
}
//删除本地临时文件
file.delete();
}
}
}catch (Exception e){
logger.error("电子回单查询出错",e);
}
}
}
}
/**
* 查询交易明细
* transactionDetailReqDTO.currentPage transactionDetailReqDTO.pageSize 必填
* @param transactionDetailReqDTO
*/
@Override
public List<TransactionDetailDTO> queryTransactionDetail(TransactionDetailReqDTO transactionDetailReqDTO) {
boolean hasNextPage = true;//是否有下一页
int currentPage = transactionDetailReqDTO.getCurrentPage();
int pageSize = transactionDetailReqDTO.getPageSize();
if (currentPage == 0){
currentPage = CBSUtil.DEFAULT_CURRENT_PAGE;//页码
}
if (pageSize == 0){
pageSize = CBSUtil.DEFAULT_PAGE_SIZE;//每页条数
transactionDetailReqDTO.setPageSize(pageSize);
}
List<TransactionDetailDTO> resultList = new ArrayList<>();
do{
transactionDetailReqDTO.setCurrentPage(currentPage);//页码
currentPage++;//页码自增
hasNextPage = false;//保护功能防止出现死循环
CbsResDataDTO dataDTO = cbs8Service.queryTransactionDetail(transactionDetailReqDTO);
if (null != dataDTO){
hasNextPage = dataDTO.getHasNextPage();
List<TransactionDetailDTO> transactionDetailDTOList = CBSUtil.convertJsonArrayToList(dataDTO.getList(), TransactionDetailDTO.class);
resultList.addAll(transactionDetailDTOList);
}
}while (hasNextPage);
return resultList;
}
/**
* 代发代扣 支付申请
*
* @param paymentEntity
*/
@Override
public void applyAgentPay(AgentPaymentEntity paymentEntity) {
try {
if (null != paymentEntity ){
paymentEntity.setDataSourceCode(oa_data_source_code);
List<AgentPaymentEntity> agentPaymentList = agentPaymentService.queryUnpaid(paymentEntity);
if (CollectionUtils.isNotEmpty(agentPaymentList)){
for (AgentPaymentEntity agentPay : agentPaymentList) {
AgentPaymentDetailEntity detailEntity = new AgentPaymentDetailEntity();
detailEntity.setFormmainId(agentPay.getOaId());
detailEntity.setDataSourceCode(oa_data_source_code);
List<AgentPaymentDetailEntity> agentPaymentDetailList = agentPaymentService.queryDetails(detailEntity);
if (CollectionUtils.isNotEmpty(agentPaymentDetailList)){
PaymentApplySubmitReqDTO paymentApplySubmitReqDTO = BeanUtil.copyProperties(agentPay,PaymentApplySubmitReqDTO.class);
List<PaymentApplyAgentDTO> paymentApplyAgentList = new ArrayList<>();
for (AgentPaymentDetailEntity detail : agentPaymentDetailList) {
PaymentApplyAgentDTO detailDTO = BeanUtil.copyProperties(detail,PaymentApplyAgentDTO.class);
paymentApplyAgentList.add(detailDTO);
}
//招行这里要传203
paymentApplySubmitReqDTO.setBankExtend5("203");
PayResponseDTO payResponseDTO = cbs8Service.agentPayApply(paymentApplySubmitReqDTO,paymentApplyAgentList);
if (null != payResponseDTO){
Boolean successed = payResponseDTO.getSuccessed();
AgentPaymentEntity pay = new AgentPaymentEntity();
pay.setOaId(paymentEntity.getOaId());
pay.setDataSourceCode(oa_data_source_code);
if (successed){
//更新申请单号到OA
pay.setApplyCode(payResponseDTO.getBusNum());
pay.setPayResult("审批中");
}else {
pay.setPayResult(payResponseDTO.getErrorMsg());
}
agentPaymentService.updateResult(pay);
System.out.println(JSONObject.toJSONString(payResponseDTO));
}
}
}
}
}else {
throw new BaseSystemException("参数不能为空");
}
}catch (Exception e){
logger.error("代发代扣出错:{}",e);
}
}
/**
* 代发代扣 结果详情查询
*
* @param agentPayResultRequestDTO
* @return
*/
@Override
public AgentPayResultResDTO agentPayResult(AgentPayResultRequestDTO agentPayResultRequestDTO) {
try {
if (null != agentPayResultRequestDTO && StrUtil.isNotEmpty(agentPayResultRequestDTO.getBusNum())){
AgentPayResultResDTO agentPayResultResDTO = cbs8Service.agentPayResult(agentPayResultRequestDTO);
//更新OA表单
String busNum = agentPayResultResDTO.getBusNum();
if (StringUtils.isNotEmpty(busNum)){
AgentPaymentEntity agentPaymentEntity = new AgentPaymentEntity();
agentPaymentEntity.setApplyCode(busNum);
agentPaymentEntity.setDataSourceCode(oa_data_source_code);
AgentPaymentEntity entity = agentPaymentService.queryByApplyCode(agentPaymentEntity);
String pay_status = agentPayResultResDTO.getPayStatus();
String status = agentPayResultResDTO.getStatus();
if (null != entity){
AgentPaymentEntity result = new AgentPaymentEntity();
result.setOaId(entity.getOaId());
result.setDataSourceCode(oa_data_source_code);
//更新主表
if (StrUtil.isEmpty(pay_status)) {
result.setPayResult(PayState.payStateGetValue(status));//支付申请状态 支付状态和支付申请状态用一个
} else {
result.setPayResult(PayState.payStateGetValue(pay_status));//支付状态 支付状态和支付申请状态用一个
}
agentPaymentService.updateResult(result);
//更新明细表
List<AgentPayQueryDTO> agentDetails = agentPayResultResDTO.getAgentDetails();
for (AgentPayQueryDTO d : agentDetails) {
AgentPaymentDetailEntity detail = new AgentPaymentDetailEntity();
detail.setFormmainId(entity.getOaId());
detail.setDtlAmount(d.getDtlAmount());
detail.setDtlCnapsCode(d.getDtlCnapsCode());
detail.setDtlRevName(d.getDtlRevName());
detail.setDtlSeqNum(Integer.valueOf(d.getDtlSeqNum()));
detail.setPayResult(PayState.payStateGetValue(d.getDtlStatus()));
detail.setPayDate(CBSUtil.convertTimestampToString(d.getDtlPayTime()));
detail.setDataSourceCode(oa_data_source_code);
agentPaymentDetailService.updatePayResult(detail);
}
}
}
return agentPayResultResDTO;
}
}catch (Exception e){
logger.error("代发代扣详情结果查询出错{}",e);
}
return null;
}
/**
* 保存交易明细到OA底表
*
* @param transactionlList
*/
@Override
public void saveTransactionDetail(List<TransactionDetailDTO> transactionlList) {
if (CollectionUtils.isNotEmpty(transactionlList)){
//过滤已经保存过的数据
//收款档案表的数据
TransactionDetailEntity transactionDetailEntity = new TransactionDetailEntity();
transactionDetailEntity.setBankTransactionDate(DateUtil.lastWeek().toDateStr());
transactionDetailEntity.setDataSourceCode(oa_data_source_code);
List<TransactionDetailEntity> transactionDetailList = transactionDetailService.querySerialNumber(transactionDetailEntity);
//过滤已经保存的数据
if (CollectionUtils.isNotEmpty(transactionDetailList)){
//过滤transactionlList 去除已经存在transactionDetailList中的数据条件为transactionSerialNumber相等
if (CollectionUtils.isNotEmpty(transactionlList)){
transactionlList = transactionlList.stream()
.filter(item -> transactionDetailList.stream()
.noneMatch(detailItem -> item.getTransactionSerialNumber().equals(detailItem.getTransactionSerialNumber())))
.collect(Collectors.toList());
}
}
if (CollectionUtils.isNotEmpty(transactionlList)){
//保存到OA底表
for (TransactionDetailDTO dto : transactionlList) {
TransactionDetailEntity transactionDetail = new TransactionDetailEntity();
BeanUtil.copyProperties(dto,transactionDetail);
transactionDetail.setCurrency(CurrencyEnum.getChineseNameByCode(dto.getCurrency()));
if (NumberUtil.isNumber(dto.getBankTransactionDate())){//如果是时间戳 转换成日期字符串
transactionDetail.setBankTransactionDate(CBSUtil.convertTimestampToString(dto.getBankTransactionDate()));
}
transactionDetailService.restSave(transactionDetail);
}
}
}
}
//这个方法没用用的是8.0批量保存方式我没有测试
private void saveTransactionDetailTemp(List<TransactionDetailDTO> transactionDetailList) {
if (CollectionUtils.isNotEmpty(transactionDetailList)){
//过滤已经保存过的数据
for (TransactionDetailDTO dto : transactionDetailList) {
List<FormDataDTO> dataList = new ArrayList<>();
FormDTO formDTO = new FormDTO();
formDTO.setFormCode("formmain_0233");
formDTO.setLoginName("yonyou");
formDTO.setRightId("6603635988997229999.-8611088937958683581");
String field0001=dto.getAccountNo();//我方银行账号
String field0002=dto.getAccountName();//我方户名
String field0003=dto.getOpenBank();//我方开户行
String field0004=dto.getBankType();//我方银行类型
String field0005=dto.getTransactionSerialNumber();//交易流水号
String field0006=dto.getBankTransactionDate();//交易日期
String field0007=dto.getBankSerialNumber();//银行流水号
String field0008=dto.getCurrency();//币种
String field0009=dto.getIncurredAmount();//收款金额
String field0010=dto.getPurpose();//用途
String field0011=dto.getDigest();//摘要
String field0012=dto.getOppositeAccount();//对方账号
String field0013=dto.getOppositeName();//对方户名
String field0014=dto.getOppositeOpeningBank();//对方开户行
String field0015=dto.getRemark();//备注
//fields
List<RecordFieldDTO> fields = new ArrayList<>();
fields.add(new RecordFieldDTO("field0001",field0001,field0001));
fields.add(new RecordFieldDTO("field0002",field0002,field0002));
fields.add(new RecordFieldDTO("field0003",field0003,field0003));
fields.add(new RecordFieldDTO("field0004",field0004,field0004));
fields.add(new RecordFieldDTO("field0005",field0005,field0005));
fields.add(new RecordFieldDTO("field0006",field0006,field0006));
fields.add(new RecordFieldDTO("field0007",field0007,field0007));
fields.add(new RecordFieldDTO("field0008",field0008,field0008));
fields.add(new RecordFieldDTO("field0009",field0009,field0009));
fields.add(new RecordFieldDTO("field0010",field0010,field0010));
fields.add(new RecordFieldDTO("field0011",field0011,field0011));
fields.add(new RecordFieldDTO("field0012",field0012,field0012));
fields.add(new RecordFieldDTO("field0013",field0013,field0013));
fields.add(new RecordFieldDTO("field0014",field0014,field0014));
fields.add(new RecordFieldDTO("field0015",field0015,field0015));
//masterTable
MasterTableDTO masterTableDTO = new MasterTableDTO();
masterTableDTO.setName("formmain_1284");
RecordDTO recordDTO = new RecordDTO();
recordDTO.setId(UUIDLong.longUUID());
recordDTO.setFields(fields);
masterTableDTO.setRecord(recordDTO);
//dataList
FormDataDTO formDataDTO = new FormDataDTO();
formDataDTO.setMasterTable(masterTableDTO);
dataList.add(formDataDTO);
formDTO.setDataList(dataList);
}
}
}
}

View File

@ -0,0 +1,15 @@
package com.hzya.frame.plugin.masterData.dao;
import com.hzya.frame.basedao.dao.IBaseDao;
import com.hzya.frame.plugin.masterData.entity.MdmEntity;
/**
* 客户档案(mdm_customer: table)表数据库访问层
*
* @author makejava
* @since 2024-06-21 13:52:35
*/
public interface IMdmDao extends IBaseDao<MdmEntity, String> {
}

View File

@ -0,0 +1,15 @@
package com.hzya.frame.plugin.masterData.dao.impl;
import com.hzya.frame.plugin.masterData.entity.MdmEntity;
import com.hzya.frame.plugin.masterData.dao.IMdmDao;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 客户档案(MdmCustomer)表数据库访问层
*
* @author makejava
* @since 2024-06-21 13:52:35
*/
public class MdmDaoImpl extends MybatisGenericDao<MdmEntity, String> implements IMdmDao {
}

View File

@ -0,0 +1,186 @@
package com.hzya.frame.plugin.masterData.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 客户档案(MdmCustomer)实体类
*
* @author makejava
* @since 2024-06-21 13:52:35
*/
public class MdmEntity extends BaseEntity {
/** 单据规则 */
private String documentRule;
/** 单据规则流水号 */
private Long documentRuleNum;
/** 数据状态 Y正常 N删除 F修改 */
private String dataStatus;
/** 新增数据状态 0待下发 1已下发 */
private String addStatus;
/** 修改数据状态 0待下发 1已下发 */
private String updateStatus;
/** 删除数据状态 0待下发 1已下发 */
private String deleteStatus;
/** 公司id */
private String companyId;
/** 客户编码 */
private String code;
/** 客户类型 */
private String custprop;
/** 客户状态 */
private String custstate;
/** 启用状态 */
private String enablestate;
/** 客户名称 */
private String name;
/** 国家/地区 */
private String pkCountry;
/** 客户基本分类 */
private String pkCustclass;
/** 所属集团 */
private String pkGroup;
/** 所属组织 */
private String pkOrg;
/** 纳税人登记号 */
private String taxpayerid;
public String getDocumentRule() {
return documentRule;
}
public void setDocumentRule(String documentRule) {
this.documentRule = documentRule;
}
public Long getDocumentRuleNum() {
return documentRuleNum;
}
public void setDocumentRuleNum(Long documentRuleNum) {
this.documentRuleNum = documentRuleNum;
}
public String getDataStatus() {
return dataStatus;
}
public void setDataStatus(String dataStatus) {
this.dataStatus = dataStatus;
}
public String getAddStatus() {
return addStatus;
}
public void setAddStatus(String addStatus) {
this.addStatus = addStatus;
}
public String getUpdateStatus() {
return updateStatus;
}
public void setUpdateStatus(String updateStatus) {
this.updateStatus = updateStatus;
}
public String getDeleteStatus() {
return deleteStatus;
}
public void setDeleteStatus(String deleteStatus) {
this.deleteStatus = deleteStatus;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public String getCustprop() {
return custprop;
}
public void setCustprop(String custprop) {
this.custprop = custprop;
}
public String getCuststate() {
return custstate;
}
public void setCuststate(String custstate) {
this.custstate = custstate;
}
public String getEnablestate() {
return enablestate;
}
public void setEnablestate(String enablestate) {
this.enablestate = enablestate;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPkCountry() {
return pkCountry;
}
public void setPkCountry(String pkCountry) {
this.pkCountry = pkCountry;
}
public String getPkCustclass() {
return pkCustclass;
}
public void setPkCustclass(String pkCustclass) {
this.pkCustclass = pkCustclass;
}
public String getPkGroup() {
return pkGroup;
}
public void setPkGroup(String pkGroup) {
this.pkGroup = pkGroup;
}
public String getPkOrg() {
return pkOrg;
}
public void setPkOrg(String pkOrg) {
this.pkOrg = pkOrg;
}
public String getTaxpayerid() {
return taxpayerid;
}
public void setTaxpayerid(String taxpayerid) {
this.taxpayerid = taxpayerid;
}
}

View File

@ -0,0 +1,375 @@
<?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.plugin.masterData.dao.impl.MdmDaoImpl">
<resultMap id="get-MdmCustomerEntity-result" type="com.hzya.frame.plugin.masterData.entity.MdmEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
<result property="documentRule" column="document_rule" jdbcType="VARCHAR"/>
<result property="documentRuleNum" column="document_rule_num" jdbcType="INTEGER"/>
<result property="dataStatus" column="data_status" jdbcType="VARCHAR"/>
<result property="addStatus" column="add_status" jdbcType="VARCHAR"/>
<result property="updateStatus" column="update_status" jdbcType="VARCHAR"/>
<result property="deleteStatus" column="delete_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"/>
<result property="code" column="code" jdbcType="VARCHAR"/>
<result property="custprop" column="custprop" jdbcType="VARCHAR"/>
<result property="custstate" column="custstate" jdbcType="VARCHAR"/>
<result property="enablestate" column="enablestate" jdbcType="VARCHAR"/>
<result property="name" column="name" jdbcType="VARCHAR"/>
<result property="pkCountry" column="pk_country" jdbcType="VARCHAR"/>
<result property="pkCustclass" column="pk_custclass" jdbcType="VARCHAR"/>
<result property="pkGroup" column="pk_group" jdbcType="VARCHAR"/>
<result property="pkOrg" column="pk_org" jdbcType="VARCHAR"/>
<result property="taxpayerid" column="taxpayerid" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "MdmCustomerEntity_Base_Column_List">
id
,document_rule
,document_rule_num
,data_status
,add_status
,update_status
,delete_status
,sorts
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,org_id
,company_id
,code
,custprop
,custstate
,enablestate
,name
,pk_country
,pk_custclass
,pk_group
,pk_org
,taxpayerid
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-MdmCustomerEntity-result" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity">
select
<include refid="MdmCustomerEntity_Base_Column_List" />
from mdm_customer
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </if>
<if test="documentRule != null and documentRule != ''"> and document_rule = #{documentRule} </if>
<if test="documentRuleNum != null"> and document_rule_num = #{documentRuleNum} </if>
<if test="dataStatus != null and dataStatus != ''"> and data_status = #{dataStatus} </if>
<if test="addStatus != null and addStatus != ''"> and add_status = #{addStatus} </if>
<if test="updateStatus != null and updateStatus != ''"> and update_status = #{updateStatus} </if>
<if test="deleteStatus != null and deleteStatus != ''"> and delete_status = #{deleteStatus} </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>
<if test="code != null and code != ''"> and code = #{code} </if>
<if test="custprop != null and custprop != ''"> and custprop = #{custprop} </if>
<if test="custstate != null and custstate != ''"> and custstate = #{custstate} </if>
<if test="enablestate != null and enablestate != ''"> and enablestate = #{enablestate} </if>
<if test="name != null and name != ''"> and name = #{name} </if>
<if test="pkCountry != null and pkCountry != ''"> and pk_country = #{pkCountry} </if>
<if test="pkCustclass != null and pkCustclass != ''"> and pk_custclass = #{pkCustclass} </if>
<if test="pkGroup != null and pkGroup != ''"> and pk_group = #{pkGroup} </if>
<if test="pkOrg != null and pkOrg != ''"> and pk_org = #{pkOrg} </if>
<if test="taxpayerid != null and taxpayerid != ''"> and taxpayerid = #{taxpayerid} </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.plugin.masterData.entity.MdmEntity">
select count(1) from mdm_customer
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </if>
<if test="documentRule != null and documentRule != ''"> and document_rule = #{documentRule} </if>
<if test="documentRuleNum != null"> and document_rule_num = #{documentRuleNum} </if>
<if test="dataStatus != null and dataStatus != ''"> and data_status = #{dataStatus} </if>
<if test="addStatus != null and addStatus != ''"> and add_status = #{addStatus} </if>
<if test="updateStatus != null and updateStatus != ''"> and update_status = #{updateStatus} </if>
<if test="deleteStatus != null and deleteStatus != ''"> and delete_status = #{deleteStatus} </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>
<if test="code != null and code != ''"> and code = #{code} </if>
<if test="custprop != null and custprop != ''"> and custprop = #{custprop} </if>
<if test="custstate != null and custstate != ''"> and custstate = #{custstate} </if>
<if test="enablestate != null and enablestate != ''"> and enablestate = #{enablestate} </if>
<if test="name != null and name != ''"> and name = #{name} </if>
<if test="pkCountry != null and pkCountry != ''"> and pk_country = #{pkCountry} </if>
<if test="pkCustclass != null and pkCustclass != ''"> and pk_custclass = #{pkCustclass} </if>
<if test="pkGroup != null and pkGroup != ''"> and pk_group = #{pkGroup} </if>
<if test="pkOrg != null and pkOrg != ''"> and pk_org = #{pkOrg} </if>
<if test="taxpayerid != null and taxpayerid != ''"> and taxpayerid = #{taxpayerid} </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-MdmCustomerEntity-result" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity">
select
<include refid="MdmCustomerEntity_Base_Column_List" />
from mdm_customer
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </if>
<if test="documentRule != null and documentRule != ''"> and document_rule like concat('%',#{documentRule},'%') </if>
<if test="documentRuleNum != null"> and document_rule_num like concat('%',#{documentRuleNum},'%') </if>
<if test="dataStatus != null and dataStatus != ''"> and data_status like concat('%',#{dataStatus},'%') </if>
<if test="addStatus != null and addStatus != ''"> and add_status like concat('%',#{addStatus},'%') </if>
<if test="updateStatus != null and updateStatus != ''"> and update_status like concat('%',#{updateStatus},'%') </if>
<if test="deleteStatus != null and deleteStatus != ''"> and delete_status like concat('%',#{deleteStatus},'%') </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>
<if test="code != null and code != ''"> and code like concat('%',#{code},'%') </if>
<if test="custprop != null and custprop != ''"> and custprop like concat('%',#{custprop},'%') </if>
<if test="custstate != null and custstate != ''"> and custstate like concat('%',#{custstate},'%') </if>
<if test="enablestate != null and enablestate != ''"> and enablestate like concat('%',#{enablestate},'%') </if>
<if test="name != null and name != ''"> and name like concat('%',#{name},'%') </if>
<if test="pkCountry != null and pkCountry != ''"> and pk_country like concat('%',#{pkCountry},'%') </if>
<if test="pkCustclass != null and pkCustclass != ''"> and pk_custclass like concat('%',#{pkCustclass},'%') </if>
<if test="pkGroup != null and pkGroup != ''"> and pk_group like concat('%',#{pkGroup},'%') </if>
<if test="pkOrg != null and pkOrg != ''"> and pk_org like concat('%',#{pkOrg},'%') </if>
<if test="taxpayerid != null and taxpayerid != ''"> and taxpayerid like concat('%',#{taxpayerid},'%') </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="MdmCustomerentity_list_or" resultMap="get-MdmCustomerEntity-result" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity">
select
<include refid="MdmCustomerEntity_Base_Column_List" />
from mdm_customer
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> or id = #{id} </if>
<if test="documentRule != null and documentRule != ''"> or document_rule = #{documentRule} </if>
<if test="documentRuleNum != null"> or document_rule_num = #{documentRuleNum} </if>
<if test="dataStatus != null and dataStatus != ''"> or data_status = #{dataStatus} </if>
<if test="addStatus != null and addStatus != ''"> or add_status = #{addStatus} </if>
<if test="updateStatus != null and updateStatus != ''"> or update_status = #{updateStatus} </if>
<if test="deleteStatus != null and deleteStatus != ''"> or delete_status = #{deleteStatus} </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>
<if test="code != null and code != ''"> or code = #{code} </if>
<if test="custprop != null and custprop != ''"> or custprop = #{custprop} </if>
<if test="custstate != null and custstate != ''"> or custstate = #{custstate} </if>
<if test="enablestate != null and enablestate != ''"> or enablestate = #{enablestate} </if>
<if test="name != null and name != ''"> or name = #{name} </if>
<if test="pkCountry != null and pkCountry != ''"> or pk_country = #{pkCountry} </if>
<if test="pkCustclass != null and pkCustclass != ''"> or pk_custclass = #{pkCustclass} </if>
<if test="pkGroup != null and pkGroup != ''"> or pk_group = #{pkGroup} </if>
<if test="pkOrg != null and pkOrg != ''"> or pk_org = #{pkOrg} </if>
<if test="taxpayerid != null and taxpayerid != ''"> or taxpayerid = #{taxpayerid} </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.plugin.masterData.entity.MdmEntity" keyProperty="id" useGeneratedKeys="true">
insert into mdm_customer(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> id , </if>
<if test="documentRule != null and documentRule != ''"> document_rule , </if>
<if test="documentRuleNum != null"> document_rule_num , </if>
<if test="dataStatus != null and dataStatus != ''"> data_status , </if>
<if test="addStatus != null and addStatus != ''"> add_status , </if>
<if test="updateStatus != null and updateStatus != ''"> update_status , </if>
<if test="deleteStatus != null and deleteStatus != ''"> delete_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="code != null and code != ''"> code , </if>
<if test="custprop != null and custprop != ''"> custprop , </if>
<if test="custstate != null and custstate != ''"> custstate , </if>
<if test="enablestate != null and enablestate != ''"> enablestate , </if>
<if test="name != null and name != ''"> name , </if>
<if test="pkCountry != null and pkCountry != ''"> pk_country , </if>
<if test="pkCustclass != null and pkCustclass != ''"> pk_custclass , </if>
<if test="pkGroup != null and pkGroup != ''"> pk_group , </if>
<if test="pkOrg != null and pkOrg != ''"> pk_org , </if>
<if test="taxpayerid != null and taxpayerid != ''"> taxpayerid , </if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> #{id} ,</if>
<if test="documentRule != null and documentRule != ''"> #{documentRule} ,</if>
<if test="documentRuleNum != null"> #{documentRuleNum} ,</if>
<if test="dataStatus != null and dataStatus != ''"> #{dataStatus} ,</if>
<if test="addStatus != null and addStatus != ''"> #{addStatus} ,</if>
<if test="updateStatus != null and updateStatus != ''"> #{updateStatus} ,</if>
<if test="deleteStatus != null and deleteStatus != ''"> #{deleteStatus} ,</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="code != null and code != ''"> #{code} ,</if>
<if test="custprop != null and custprop != ''"> #{custprop} ,</if>
<if test="custstate != null and custstate != ''"> #{custstate} ,</if>
<if test="enablestate != null and enablestate != ''"> #{enablestate} ,</if>
<if test="name != null and name != ''"> #{name} ,</if>
<if test="pkCountry != null and pkCountry != ''"> #{pkCountry} ,</if>
<if test="pkCustclass != null and pkCustclass != ''"> #{pkCustclass} ,</if>
<if test="pkGroup != null and pkGroup != ''"> #{pkGroup} ,</if>
<if test="pkOrg != null and pkOrg != ''"> #{pkOrg} ,</if>
<if test="taxpayerid != null and taxpayerid != ''"> #{taxpayerid} ,</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into mdm_customer(document_rule, document_rule_num, data_status, add_status, update_status, delete_status, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, code, custprop, custstate, enablestate, name, pk_country, pk_custclass, pk_group, pk_org, taxpayerid, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.documentRule},#{entity.documentRuleNum},#{entity.dataStatus},#{entity.addStatus},#{entity.updateStatus},#{entity.deleteStatus},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId},#{entity.code},#{entity.custprop},#{entity.custstate},#{entity.enablestate},#{entity.name},#{entity.pkCountry},#{entity.pkCustclass},#{entity.pkGroup},#{entity.pkOrg},#{entity.taxpayerid}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into mdm_customer(document_rule, document_rule_num, data_status, add_status, update_status, delete_status, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, code, custprop, custstate, enablestate, name, pk_country, pk_custclass, pk_group, pk_org, taxpayerid)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.documentRule},#{entity.documentRuleNum},#{entity.dataStatus},#{entity.addStatus},#{entity.updateStatus},#{entity.deleteStatus},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId},#{entity.code},#{entity.custprop},#{entity.custstate},#{entity.enablestate},#{entity.name},#{entity.pkCountry},#{entity.pkCustclass},#{entity.pkGroup},#{entity.pkOrg},#{entity.taxpayerid})
</foreach>
on duplicate key update
document_rule = values(document_rule),
document_rule_num = values(document_rule_num),
data_status = values(data_status),
add_status = values(add_status),
update_status = values(update_status),
delete_status = values(delete_status),
create_user_id = values(create_user_id),
create_time = values(create_time),
modify_user_id = values(modify_user_id),
modify_time = values(modify_time),
sts = values(sts),
org_id = values(org_id),
company_id = values(company_id),
code = values(code),
custprop = values(custprop),
custstate = values(custstate),
enablestate = values(enablestate),
name = values(name),
pk_country = values(pk_country),
pk_custclass = values(pk_custclass),
pk_group = values(pk_group),
pk_org = values(pk_org),
taxpayerid = values(taxpayerid)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity" >
update mdm_customer set
<trim suffix="" suffixOverrides=",">
<if test="documentRule != null and documentRule != ''"> document_rule = #{documentRule},</if>
<if test="documentRuleNum != null"> document_rule_num = #{documentRuleNum},</if>
<if test="dataStatus != null and dataStatus != ''"> data_status = #{dataStatus},</if>
<if test="addStatus != null and addStatus != ''"> add_status = #{addStatus},</if>
<if test="updateStatus != null and updateStatus != ''"> update_status = #{updateStatus},</if>
<if test="deleteStatus != null and deleteStatus != ''"> delete_status = #{deleteStatus},</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>
<if test="code != null and code != ''"> code = #{code},</if>
<if test="custprop != null and custprop != ''"> custprop = #{custprop},</if>
<if test="custstate != null and custstate != ''"> custstate = #{custstate},</if>
<if test="enablestate != null and enablestate != ''"> enablestate = #{enablestate},</if>
<if test="name != null and name != ''"> name = #{name},</if>
<if test="pkCountry != null and pkCountry != ''"> pk_country = #{pkCountry},</if>
<if test="pkCustclass != null and pkCustclass != ''"> pk_custclass = #{pkCustclass},</if>
<if test="pkGroup != null and pkGroup != ''"> pk_group = #{pkGroup},</if>
<if test="pkOrg != null and pkOrg != ''"> pk_org = #{pkOrg},</if>
<if test="taxpayerid != null and taxpayerid != ''"> taxpayerid = #{taxpayerid},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity" >
update mdm_customer 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.plugin.masterData.entity.MdmEntity" >
update mdm_customer 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="documentRule != null and documentRule != ''"> and document_rule = #{documentRule} </if>
<if test="documentRuleNum != null"> and document_rule_num = #{documentRuleNum} </if>
<if test="dataStatus != null and dataStatus != ''"> and data_status = #{dataStatus} </if>
<if test="addStatus != null and addStatus != ''"> and add_status = #{addStatus} </if>
<if test="updateStatus != null and updateStatus != ''"> and update_status = #{updateStatus} </if>
<if test="deleteStatus != null and deleteStatus != ''"> and delete_status = #{deleteStatus} </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>
<if test="code != null and code != ''"> and code = #{code} </if>
<if test="custprop != null and custprop != ''"> and custprop = #{custprop} </if>
<if test="custstate != null and custstate != ''"> and custstate = #{custstate} </if>
<if test="enablestate != null and enablestate != ''"> and enablestate = #{enablestate} </if>
<if test="name != null and name != ''"> and name = #{name} </if>
<if test="pkCountry != null and pkCountry != ''"> and pk_country = #{pkCountry} </if>
<if test="pkCustclass != null and pkCustclass != ''"> and pk_custclass = #{pkCustclass} </if>
<if test="pkGroup != null and pkGroup != ''"> and pk_group = #{pkGroup} </if>
<if test="pkOrg != null and pkOrg != ''"> and pk_org = #{pkOrg} </if>
<if test="taxpayerid != null and taxpayerid != ''"> and taxpayerid = #{taxpayerid} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from mdm_customer where id = #{id}
</delete>
</mapper>

View File

@ -0,0 +1,61 @@
package com.hzya.frame.plugin.masterData.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.sysnew.comparison.masterData.service.IMasterDataService;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
/**
* 主数据同步
*
* @author makejava
* @since 2024-06-21 13:52:35
*/
public class MdmPluginInitializer extends PluginBaseEntity{
Logger logger = LoggerFactory.getLogger(MdmPluginInitializer.class);
@Autowired
private IMasterDataService masterDataService;
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
@Override
public String getPluginId() {
return "MdmCustomerPlugin";
}
@Override
public String getPluginName() {
return "MdmCustomerPlugin插件";
}
@Override
public String getPluginLabel() {
return "MdmCustomerPlugin";
}
@Override
public String getPluginType() {
return "1";
}
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) {
try {
logger.info("======开始执行主数据信息同步========");
return masterDataService.queryArchives(requestJson);
}catch (Exception e){
logger.info("======执行主数据同步失败:{}========",e.getMessage());
e.printStackTrace();
}
return null;
}
}

View File

@ -0,0 +1,12 @@
package com.hzya.frame.plugin.masterData.service;
import com.hzya.frame.plugin.masterData.entity.MdmEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* 客户档案(MdmCustomer)表服务接口
*
* @author makejava
* @since 2024-06-21 13:52:35
*/
public interface IMdmService extends IBaseService<MdmEntity, String>{
}

View File

@ -0,0 +1,24 @@
package com.hzya.frame.plugin.masterData.service.impl;
import com.hzya.frame.plugin.masterData.entity.MdmEntity;
import com.hzya.frame.plugin.masterData.dao.IMdmDao;
import com.hzya.frame.plugin.masterData.service.IMdmService;
import com.hzya.frame.plugin.masterData.service.IMdmService;
import org.springframework.beans.factory.annotation.Autowired;
import com.hzya.frame.basedao.service.impl.BaseService;
/**
* 客户档案(MdmCustomer)表服务实现类
*
* @author makejava
* @since 2024-06-21 13:52:35
*/
public class MdmServiceImpl extends BaseService<MdmEntity, String> implements IMdmService {
private IMdmDao mdmCustomerDao;
@Autowired
public void setMdmCustomerDao(IMdmDao dao) {
this.mdmCustomerDao = dao;
this.dao = dao;
}
}

View File

@ -0,0 +1,138 @@
package com.hzya.frame.plugin.seeyonExt.plugin;
import cn.hutool.core.util.StrUtil;
import cn.hutool.json.JSONUtil;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.seeyon.service.ISeeYonInterFace;
import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsEntity;
import com.hzya.frame.sysnew.integtationTaskLivingDetails.service.IIntegrationTaskLivingDetailsService;
import com.hzya.frame.web.entity.BaseResult;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.HashMap;
import java.util.Map;
/**
* @Description
* @Author xiangerlin
* @Date 2024/5/15 08:34
**/
public class SeeyonExtPluginInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(SeeyonExtPluginInitializer.class);
@Autowired
private IIntegrationTaskLivingDetailsService taskLivingDetailsService;
@Autowired
private ISeeYonInterFace seeyInterFace;
/***
* 插件初始化方法
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 10:48
* @Param []
* @return void
**/
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
/****
* 插件销毁方法
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
/****
* 插件的ID
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginId() {
return "SeeyonExtPlugin";
}
/****
* 插件的名称
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginName() {
return "seeyonExt插件";
}
/****
* 插件的显示值
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2023-08-02 10:48
* @return void
**/
@Override
public String getPluginLabel() {
return "seeyonExt插件";
}
/***
* 插件类型 1场景插件
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-02 14:01
* @Param []
* @return java.lang.String
**/
@Override
public String getPluginType() {
return "1";
}
/***
* seeyonExt 重试专用插件
* @Since 3.0
* @Author 👻👻👻👻👻👻👻👻 gjh
* @Date 2023-08-07 11:20
* @param requestJson 执行业务代码的参数
* @return void
**/
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) throws Exception {
try {
//重试方法
if (null != requestJson){
//JSONObject jsonStr = requestJson.getJSONObject("jsonStr");
//如果这个id不为空说明是重试的
String id = requestJson.getString("integration_task_living_details_id");
if (StrUtil.isNotEmpty(id)){
//查询日志表
IntegrationTaskLivingDetailsEntity taskDetailEntity = taskLivingDetailsService.get(id);
if (null != taskDetailEntity && JSONUtil.isTypeJSON(taskDetailEntity.getRootAppPk())){
//拿到这张表的源系统ID
JSONObject jsonObject = JSONObject.parseObject(taskDetailEntity.getRootAppPk());
Map<String,String>extData = new HashMap<>();
extData.put("integration_task_living_details_id",id);//把日志id放到hzyaExtData中下游方法从这个对象里取
jsonObject.put("hzyaExtData",extData);
JSONObject param = new JSONObject();
param.put("jsonStr", JSON.toJSONString(jsonObject));
//调用seeyon标准重试方法
seeyInterFace.thirdInterfaceSeeYonDefinitionRePush(param);
}
}
}
logger.info("执行成功");
return BaseResult.getSuccessMessageEntity("执行成功");
}catch (Exception e){
e.printStackTrace();
}
return BaseResult.getSuccessMessageEntity("执行成功");
}
}

View File

@ -19,5 +19,5 @@ spring:
savefile:
# 文件保存路径
path: E:\yongansystem\file
ax:
zt:
url: http://127.0.0.1:9081/kangarooDataCenterV3/entranceController/externalCallInterface

View File

@ -2,20 +2,41 @@
logging:
#日志级别 指定目录级别
level:
root: info
root: warn
encodings: UTF-8
file:
# 日志保存路径
path: /home/webservice/zt/log
spring:
datasource:
dynamic:
datasource:
master:
url: jdbc:mysql://hzya.ufyct.com:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: bd993088e8a7c3dc5f44441617f9b4bf
password: 62e4295b615a30dbf3b8ee96f41c820b
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile:
# 文件保存路径
path: /home/webservice/zt/file
ax:
url: http://127.0.0.1:9081/kangarooDataCenterV3/entranceController/externalCallInterface
# path: D:\webservice\file
# pluginpath: D:\webservice\plugin
pluginpath: /home/webservice/zt/plugin
# tomcatpath: D:\apache-tomcat-9.0.69\webapps\kangarooDataCenter\WEB-INF\classes\
tomcatpath: /home/webservice/zt/tomcatV3/webapps/kangarooDataCenterV3/WEB-INF/classes/
cbs8:
appId: 1P4AGrpz
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
# 这个私钥到时候上传到cbs和下面到是同一对
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
cbs_public_key: 0469146F06BF3B01236E84632441E826
#电子回单下载临时存放位置
elec_path: /Users/xiangerlin/Downloads/
OA:
data_source_code: yc_oa
zt:
url: http://127.0.0.1:9082/kangarooDataCenterV3/entranceController/externalCallInterface

View File

@ -6,18 +6,22 @@ logging:
encodings: UTF-8
file:
# 日志保存路径
path: /Users/apple/Desktop/log/local
path: D:\yongansystem\kangarooDataCenter\v3\logs
spring:
datasource:
dynamic:
datasource:
master:
url: jdbc:mysql://hzya.ufyct.com:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
# url: jdbc:mysql://ufidahz.com.cn:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
# username: root
# password: bd993088e8a7c3dc5f44441617f9b4bf
# driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: bd993088e8a7c3dc5f44441617f9b4bf
password: 62e4295b615a30dbf3b8ee96f41c820b
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile:
# 文件保存路径
path: /Users/apple/Desktop/log/local
ax:
path: D:\yongansystem\kangarooDataCenter\v3\logs
zt:
url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface

View File

@ -8,16 +8,53 @@ logging:
# 日志保存路径
path: /Users/apple/Desktop/log/local
spring:
data:
mongodb:
# host: 192.168.2.237
# port: 27017
# database: businesscenter
# auto-index-creation: true
# password: hzya1314
# username: hzya
flyway:
# 启动flyway migration, 默认为true
enabled: false
datasource:
dynamic:
druid:
filters: stat,log4j2
datasource:
master:
# url: jdbc:dm://hzya.ufyct.com:9040?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
# username: hzyazt
# password: 62e4295b615a30dbf3b8ee96f41c820b
# driver-class-name: dm.jdbc.driver.DmDriver
# type: com.alibaba.druid.pool.DruidDataSource
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: 62e4295b615a30dbf3b8ee96f41c820b
password: bd993088e8a7c3dc5f44441617f9b4bf
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
# url: jdbc:dm://hzya.ufyct.com:9040/businesscenter?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8
# url: jdbc:dm://hzya.ufyct.com:9040?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
# username: hzyazt
# password: 62e4295b615a30dbf3b8ee96f41c820b
# driver-class-name: dm.jdbc.driver.DmDriver
savefile:
# 文件保存路径
path: /Users/apple/Desktop/log/local
ax:
zt:
url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
cbs8:
appId: 1P4AGrpz
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
# 这个私钥到时候上传到cbs和下面到是同一对
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
cbs_public_key: 0469146F06BF3B01236E84632441E826
#电子回单下载临时存放位置
elec_path: /Users/xiangerlin/Downloads/
OA:
data_source_code: yc_oa

View File

@ -12,12 +12,12 @@ spring:
dynamic:
datasource:
master:
url: jdbc:mysql://hzya.ufyct.com:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: bd993088e8a7c3dc5f44441617f9b4bf
password: 62e4295b615a30dbf3b8ee96f41c820b
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile:
# 文件保存路径
path: /Users/apple/Desktop/log/local
ax:
zt:
url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface

View File

@ -0,0 +1,35 @@
#######################本地环境#######################
logging:
#日志级别 指定目录级别
level:
root: info
encodings: UTF-8
file:
# 日志保存路径
path: /Users/xiangerlin/work/app/logs/dev
spring:
datasource:
dynamic:
datasource:
master:
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: 62e4295b615a30dbf3b8ee96f41c820b
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile:
# 文件保存路径
path: /Users/xiangerlin/work/app/file/dev
cbs8:
appId: 1P4AGrpz
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
# 这个私钥到时候上传到cbs和下面到是同一对
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
cbs_public_key: 0469146F06BF3B01236E84632441E826F3067A6B93BC3839C836A06007869CD351FBBE388B51F742859388BBC1DE089923AAFBC69E448F15141DDF30EE6CE90185
#电子回单下载临时存放位置
elec_path: /Users/xiangerlin/Downloads/
OA:
data_source_code: yc-test

View File

@ -0,0 +1,90 @@
#logging:
# #日志级别 指定目录级别
# level:
# root: info
# encodings: UTF-8
# file:
# # 日志保存路径
# path: /zt/log
#spring:
# flyway:
# # 启动flyway migration, 默认为true
# enabled: false
# datasource:
# dynamic:
# druid:
# filters: stat,log4j2
# datasource:
# master:
# url: jdbc:dm://10.75.51.82:5238?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
# username: businesscenter
# password: 6842568689469adad597d144ee104063
# driver-class-name: dm.jdbc.driver.DmDriver
#savefile:
# # 文件保存路径
# path: /zt/file
#公司mysql
#ax:
# url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
#logging:
# #日志级别 指定目录级别warn
# level:
# root: info
# encodings: UTF-8
# file:
# # 日志保存路径
# path: /home/webservice/zt/log
#spring:
# datasource:
# dynamic:
# datasource:
# master:
# url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
# username: root
# password: 62e4295b615a30dbf3b8ee96f41c820b
# driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
#savefile:
# # 文件保存路径
# path: /home/webservice/zt/file
#公司服务器达梦
logging:
#日志级别 指定目录级别
level:
root: info
encodings: UTF-8
file:
# 日志保存路径
path: /zt/log
spring:
flyway:
# 启动flyway migration, 默认为true
enabled: false
datasource:
dynamic:
druid:
filters: stat,log4j2
datasource:
master:
url: jdbc:dm://ufidahz.com.cn:9040?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
username: hzyazt
password: 62e4295b615a30dbf3b8ee96f41c820b
driver-class-name: dm.jdbc.driver.DmDriver
savefile:
# 文件保存路径
path: /zt/file
cbs8:
appId: 1P4AGrpz
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
# 这个私钥到时候上传到cbs和下面到是同一对
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
cbs_public_key: 0469146F06BF3B01236E84632441E826
#电子回单下载临时存放位置
elec_path: /zt/elecfile
OA:
data_source_code: yc_oa

View File

@ -0,0 +1,21 @@
#######################本地环境#######################
logging:
#日志级别 指定目录级别
level:
root: info
encodings: UTF-8
file:
# 日志保存路径
path: /Users/xiangerlin/work/app/logs/ydc
spring:
datasource:
dynamic:
datasource:
master:
url: jdbc:mysql://ufidahz.com.cn:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: bd993088e8a7c3dc5f44441617f9b4bf
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile:
# 文件保存路径
path: /Users/xiangerlin/work/app/logs/ydc

View File

@ -0,0 +1,31 @@
#######################本地环境#######################
logging:
#日志级别 指定目录级别
level:
root: info
encodings: UTF-8
file:
# 日志保存路径
path: /Users/xiangerlin/work/app/logs/yuecheng
spring:
datasource:
dynamic:
datasource:
master:
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: 62e4295b615a30dbf3b8ee96f41c820b
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile:
# 文件保存路径
path: /Users/xiangerlin/work/app/logs/yuecheng
cbs8:
appId: 1P4AGrpz
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
# 这个私钥到时候上传到cbs和下面到是同一对
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
cbs_public_key: 0469146F06BF3B01236E84632441E826F3067A6B93BC3839C836A06007869CD351FBBE388B51F742859388BBC1DE089923AAFBC69E448F15141DDF30EE6CE90185

View File

@ -0,0 +1,23 @@
#######################本地环境#######################
logging:
#日志级别 指定目录级别
level:
root: info
encodings: UTF-8
file:
# 日志保存路径
path: E:\yongansystem\log
spring:
datasource:
dynamic:
datasource:
master:
url: jdbc:mysql://ufidahz.com.cn:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: bd993088e8a7c3dc5f44441617f9b4bf
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile:
# 文件保存路径
path: E:\yongansystem\log
zt:
url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface

View File

@ -0,0 +1,39 @@
#######################zqtlocal环境#######################
logging:
#日志级别 指定目录级别
level:
root: warn
encodings: UTF-8
file:
# 日志保存路径
path: D:/local/logs/
spring:
datasource:
dynamic:
datasource:
master:
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
username: root
password: 62e4295b615a30dbf3b8ee96f41c820b
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile:
# 文件保存路径
path: D:/local/upload/
pluginpath : D:/local/plugin/
tomcatpath: E:\apache-tomcat-9.0.27\webapps\kangarooDataCenterV3\WEB-INF\classes\
cbs8:
appId: 1P4AGrpz
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
# 这个私钥到时候上传到cbs和下面到是同一对
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
cbs_public_key: 0469146F06BF3B01236E84632441E826
#电子回单下载临时存放位置
elec_path: /Users/xiangerlin/Downloads/
OA:
data_source_code: yc_oa
zt:
url: http://127.0.0.1:9082/kangarooDataCenterV3/entranceController/externalCallInterface

View File

@ -6,6 +6,26 @@ server:
tomcat:
uri-encoding: utf-8
spring:
autoconfigure:
exclude: org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration
flyway:
# 启动flyway migration, 默认为true
enabled: true
# flyway 的 clean 命令会删除指定 schema 下的所有 table, 生产务必禁掉。这个默认值是 false 理论上作为默认配置是不科学的。
clean-disabled: true
# SQL 脚本的目录,多个路径使用逗号分隔 默认值 classpath:db/migration
locations: classpath:flyway
# - classpath:flyway
# metadata 版本控制历史表 默认 flyway_schema_history
table: flyway_schema_history
# 如果没有 flyway_schema_history 这个 metadata 表, 在执行 flyway migrate 命令之前, 必须先执行 flyway baseline 命令
# 设置为 true 后 flyway 将在需要 baseline 的时候, 自动执行一次 baseline。
baseline-on-migrate: true
validate-on-migrate: false
sql-migration-prefix: V
sql-migration-separator: __
sql-migration-suffixes: .sql
placeholder-replacement: false
jackson:
date-format: yyyy-MM-dd HH:mm:ss
time-zone: GMT+8
@ -72,4 +92,37 @@ mybatis-plus:
global-config:
db-config:
id-type: auto # 主键策略
zt:
url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
#JimuReport[minidao配置]
minidao :
base-package: org.jeecg.modules.jmreport.desreport.dao*
db-type: mysql
#JimuReport[上传配置]
jeecg :
jmreport:
# 自动保存
autoSave: true
# 单位毫秒 默认5*60*1000
interval: 10000
# local|minio|alioss
uploadType: local
# local
path :
#文件路径
upload: D:\images
# alioss
oss:
endpoint: oss-cn-beijing.aliyuncs.com
accessKey: ??
secretKey: ??
staticDomain: ??
bucketName: ??
# minio
minio:
minio_url: http://minio.jeecg.com
minio_name: ??
minio_pass: ??
bucketName: ??
data:
use: true

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<id>CBS8PayApplyPlugin</id>
<name>cbs8插件</name>
<category>202406070001</category>
</plugin>

View File

@ -0,0 +1,10 @@
<?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="payApplyPluginInitializer" class="com.hzya.frame.plugin.cbs8.plugin.PayApplyPluginInitializer" />
<bean name="payResultPluginInitializer" class="com.hzya.frame.plugin.cbs8.plugin.PayResultPluginInitializer" />
<bean name="elecBillPluginInitializer" class="com.hzya.frame.plugin.cbs8.plugin.ElecBillPluginInitializer" />
<bean name="transactionDetailPluginInitializer" class="com.hzya.frame.plugin.cbs8.plugin.TransactionDetailPluginInitializer" />
<bean name="payApplyAgentPluginInitializer" class="com.hzya.frame.plugin.cbs8.plugin.PayApplyAgentPluginInitializer" />
<bean name="agentPayResultPluginInitializer" class="com.hzya.frame.plugin.cbs8.plugin.AgentPayResultPluginInitializer" />
</beans>

View File

@ -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="cbsPluginService" class="com.hzya.frame.plugin.cbs8.service.impl.CbsPluginServiceImpl" />
</beans>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<id>MdmPlugin</id>
<name>MdmPlugin插件</name>
<category>90000001</category>
</plugin>

View File

@ -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="mdmCustomerDao" class="com.hzya.frame.plugin.masterData.dao.impl.MdmDaoImpl" />
</beans>

View File

@ -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="mdmCustomerInitializer" class="com.hzya.frame.plugin.masterData.plugin.MdmPluginInitializer" />
</beans>

View File

@ -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="mdmCustomerService" class="com.hzya.frame.plugin.masterData.service.impl.MdmServiceImpl" />
</beans>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<id>MdmModulePlugin</id>
<name>MdmModulePlugin插件</name>
<category>90000001</category>
</plugin>

View File

@ -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>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<id>PayBillPlugin</id>
<name>OA付款单插件</name>
<category>202406210001</category>
</plugin>

View File

@ -0,0 +1,6 @@
<?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="PayBillPluginInitializer" class="com.hzya.frame.plugin.a8bill.plugin.PayBillPluginInitializer" />
<bean name="RecBillPluginInitializer" class="com.hzya.frame.plugin.a8bill.plugin.RecBillPluginInitializer" />
</beans>

View File

@ -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="PayBillPluginService" class="com.hzya.frame.plugin.a8bill.service.impl.PayBillServiceImpl" />
</beans>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<id>SeeyonExtPlugin</id>
<name>seeyonExt插件</name>
<category>202405150001</category>
</plugin>

View File

@ -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="seeyonExtPluginInitializer" class="com.hzya.frame.plugin.seeyonExt.plugin.SeeyonExtPluginInitializer" />
</beans>

View File

@ -0,0 +1,24 @@
INSERT INTO sys_application (id, app_logo, app_status, name, version_number, access_mode, affiliation_field, manufacturer, app_introduction, client_path, app_id, system_address, web_path, program_path, public_key, secret_key, interface_address, interface_status, app_type, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('70d24970f0e8429485220fff1e331e50', NULL, '1', '东进环思', '1.0', '[\"2\",\"1\"]', '1', '环丝应用(东进环思)', '环丝应用(东进环思)', NULL, 800033, NULL, NULL, NULL, 'ZJYA0iD/DtdYCBYE1AqHlz4All0gLb96p8G1xNjdGz4tDZlCe7eDIk+3zDUT+v578prj', 'nL860JIPqIuB0jUsJE5RZLcyZfi8ArRSz6rk0h69TDbkf3Qq0Jstwk9FIgbGa6ejj3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=', NULL, '2', '1', '2', 25, NULL, 'Y', '2024-07-16 10:14:05', '1', '2024-07-16 10:14:05', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('0be0862057b249c5b3b902f9d2e18744', 8000330000, NULL, '1', '70d24970f0e8429485220fff1e331e50', '770605aa7fdd4673960b488ee37538ad', '客商档案新增', '中台—环思,客商档案同步环思', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"f7c387b0-d5d3-48d3-9aa6-c84e9b12a06d\",\"parameterName\":\"body\",\"first\":true}]', '[]', 252, '1', '2024-07-16 10:53:07', '1', '2024-07-16 10:53:07', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('362bc0ef8a0e4a8fbb015e7ff241147b', 8000330002, NULL, '1', '70d24970f0e8429485220fff1e331e50', 'a02cccd7bac94d7ba2a42bf684d9ab4c', '物料分类新增', '中台—环思,物料分类同步环思', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"0c291ae8-7bc7-46ad-8954-4f9b1cf03454\",\"parameterName\":\"body\",\"first\":true}]', '[]', 254, '1', '2024-07-16 10:54:57', '1', '2024-07-16 10:54:57', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('3c40a2e4a5a7444d9cdb28b9c8e4e1a9', 8000330003, NULL, '1', '70d24970f0e8429485220fff1e331e50', 'a02cccd7bac94d7ba2a42bf684d9ab4c', '物料分类修改', '中台—环思,物料分类同步环思\n', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"f3b82e1a-1fea-4804-bbbc-17ea51a78871\",\"parameterName\":\"body\",\"first\":true}]', '[]', 255, '1', '2024-07-16 10:55:21', '1', '2024-07-16 10:55:21', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('5d89843a48c248649dfc351913666f6e', 8000330001, NULL, '1', '70d24970f0e8429485220fff1e331e50', '770605aa7fdd4673960b488ee37538ad', '客商档案修改', '中台—环思,客商档案同步环思\n', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"376565d7-604b-4451-9ce9-c8593b925b11\",\"parameterName\":\"body\",\"first\":true}]', '[]', 253, '1', '2024-07-16 10:53:33', '1', '2024-07-16 10:53:33', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('72a4da1a75394bf282260a755dd5b083', 8000330005, NULL, '1', '70d24970f0e8429485220fff1e331e50', '3b0732a8f5fc443d984c06b9fbde6459', '物料档案修改', '中台—环思,物料档案同步环思', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"9d3ef246-32bd-47ec-9acf-79f8bd83824f\",\"parameterName\":\"body\",\"first\":true}]', '[]', 257, '1', '2024-07-16 10:56:23', '1', '2024-07-16 10:56:23', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('c9a1fa17652f4d4fabe9d9656b0998ea', 8000330004, NULL, '1', '70d24970f0e8429485220fff1e331e50', '3b0732a8f5fc443d984c06b9fbde6459', '物料档案新增', '中台—环思,物料档案同步环思\n', '2', NULL, '1', '1', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"70c43e7b-ce2e-4746-a358-26151c933a4d\",\"parameterName\":\"body\",\"first\":true}]', '[]', 256, '1', '2024-07-16 10:56:03', '1', '2024-07-16 10:56:03', 'Y', NULL, NULL, NULL, '2', '1', '1', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('3b0732a8f5fc443d984c06b9fbde6459', '70d24970f0e8429485220fff1e331e50', '物料档案', 82, NULL, 'Y', '2024-07-16 10:55:32', '1', '2024-07-16 10:55:32', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('770605aa7fdd4673960b488ee37538ad', '70d24970f0e8429485220fff1e331e50', '客商档案', 80, NULL, 'Y', '2024-07-16 10:52:27', '1', '2024-07-16 10:52:27', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('a02cccd7bac94d7ba2a42bf684d9ab4c', '70d24970f0e8429485220fff1e331e50', '物料分类', 81, NULL, 'Y', '2024-07-16 10:54:23', '1', '2024-07-16 10:54:23', '1');
update sys_application_api set extension_api = '2' where extension_api is null;
update sys_application_api set return_success_field = 'status' where return_success_field is null;
update sys_application_api set return_success_value = '200' where return_success_value is null;
update sys_application_api set return_msg = 'msg' where return_msg is null;
commit;

View File

@ -0,0 +1,17 @@
INSERT INTO sys_application (id, app_logo, app_status, name, version_number, access_mode, affiliation_field, manufacturer, app_introduction, client_path, app_id, system_address, web_path, program_path, public_key, secret_key, interface_address, interface_status, app_type, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('ae67183945fe48a890a5bedde34a23e8', NULL, '1', '宁波银行财资大管家', 'V1.0', '[\"1\",\"2\",\"3\",\"4\"]', '1', '宁波银行', '东进新材料对接宁波财资大管家', NULL, 800036, NULL, NULL, NULL, 'ZJYAA9Z/jWMe1rC+Sjh8NVMRtwVMb5Bn0DbmIEsgpVlR3C9Ce7eDIk+3zDUT+v578prj', 'B8sgQwEaskwM7BQj1XLvu3kdKD3xm7Lyd4FWsPaFQk5v+UtQLCkzVzLlCZ9Bdyv2j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=', 'http://127.0.0.1:9999/', '1', '3', '2', 23, NULL, 'Y', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('a7490cf7c5a641f68a6deb84df941d57', 8000360000, NULL, '1', 'ae67183945fe48a890a5bedde34a23e8', '58105ccc4b4b4fbf89312f85b09ea9f6', '单笔转账接口', '单笔转账接口', '2', NULL, '1', 'kangarooDataCenterV3/entranceController/platformInterface', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":0,\"concreteType\":\"String\",\"id\":\"8db68afc-64ff-4dac-b581-168b0b15ec59\",\"parameterName\":\"yatl\",\"required\":true,\"example\":\"ningboBankTreasuryServiceImpl\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":1,\"concreteType\":\"String\",\"id\":\"9a51135c-3c31-408d-8188-e0e8def2a2ea\",\"parameterName\":\"yadj\",\"required\":true,\"example\":\"sendNbBank\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":2,\"concreteType\":\"String\",\"id\":\"450138d7-fc93-4963-b891-beee640e1faa\",\"parameterName\":\"appKey\",\"required\":true,\"example\":\"54b3e05c-7983-4e6c-8920-f9ab8a0004a6\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":3,\"concreteType\":\"String\",\"description\":\"商户私钥\",\"id\":\"811d51c8-07a2-4245-b01f-a2f0de56db68\",\"parameterName\":\"privateKey\",\"required\":true,\"example\":\"MIGTAgEAMBMGByqGSM49AgEGCCqBHM9VAYItBHkwdwIBAQQgTt6OadouxxxSDg/0SZdOIBqtnFGKrpwmL+quEUf+hfSgCgYIKoEcz1UBgi2hRANCAAQGHNN2NO7btp+w1248yk98E0asGC8sG0bmIzdom4M0xp3vc4IfXjmZ8omUz4oVcjzAuyMSSpJM6uPLcU1SH4HZ\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":4,\"concreteType\":\"String\",\"id\":\"8da0ab8c-c518-439b-a241-0d66cd96ca21\",\"parameterName\":\"publicUrl\",\"required\":true,\"example\":\"http://cz-test.nbcb.com.cn:7070/nbcb/api\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":5,\"concreteType\":\"String\",\"description\":\"开放平台公钥\",\"id\":\"dee6fb29-61aa-4fd8-905c-e15904c5a35a\",\"parameterName\":\"publicKey\",\"required\":true,\"example\":\"MFkwEwYHKoZIzj0CAQYIKoEcz1UBgi0DQgAEXAt6fxeKlpREIyXoT3jDwGU7L6JkKrzdOKP1cMB14rtNwwlyaUGLrtuHVoArAHP3x7XN2rUw0GxSngYQwOAsjQ==\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":6,\"concreteType\":\"String\",\"description\":\"财资客户号\",\"id\":\"6d499c86-b66b-40e2-8f0f-48ea392478f5\",\"parameterName\":\"custId\",\"required\":true,\"example\":\"0000112058\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":7,\"concreteType\":\"String\",\"id\":\"b791597e-a44e-4c43-840e-daf35aa4856f\",\"parameterName\":\"productID\",\"required\":true,\"example\":\"tmsSettle\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":8,\"concreteType\":\"String\",\"id\":\"80dfdc20-38a6-4191-8c98-e32ff4c683d1\",\"parameterName\":\"serviceID\",\"required\":true,\"example\":\"singleTransfer\"}]', '[]', '1', '[{\"index\":0,\"id\":\"159491c8-a097-4df4-9abf-98f777b4f2c5\",\"parameterName\":\"body\",\"first\":true}]', '[]', 244, '1', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', 'Y', NULL, 'ningboBankTreasuryServiceImpl', 'doChangeData', '1', 'retCode', '0000', 'retMsg');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('ecdaa2fb5a754aab984ea94fed80a840', 8000360001, NULL, '1', 'ae67183945fe48a890a5bedde34a23e8', 'e6d546212791410593f758e289733361', '交易结果接口', '交易结果接口', '2', NULL, '1', 'kangarooDataCenterV3/entranceController/platformInterface', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":0,\"parameterName\":\"yatl\",\"id\":\"08d57d17-352f-4eb5-ab35-0c8f8d37c54f\",\"required\":true,\"example\":\"ningboBankTreasuryServiceImpl\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":1,\"parameterName\":\"yadj\",\"id\":\"c0412200-27c5-42ad-bd92-3d60cf5fae05\",\"required\":true,\"example\":\"sendNbBank\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":2,\"parameterName\":\"appKey\",\"id\":\"e4be39d4-016f-4048-85a7-4751a0b45221\",\"required\":true,\"example\":\"54b3e05c-7983-4e6c-8920-f9ab8a0004a6\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":3,\"description\":\"商户私钥\",\"parameterName\":\"privateKey\",\"id\":\"8027bd40-b0db-4040-9e1c-7971eb2c4480\",\"required\":true,\"example\":\"MIGTAgEAMBMGByqGSM49AgEGCCqBHM9VAYItBHkwdwIBAQQgTt6OadouxxxSDg/0SZdOIBqtnFGKrpwmL+quEUf+hfSgCgYIKoEcz1UBgi2hRANCAAQGHNN2NO7btp+w1248yk98E0asGC8sG0bmIzdom4M0xp3vc4IfXjmZ8omUz4oVcjzAuyMSSpJM6uPLcU1SH4HZ\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":4,\"parameterName\":\"publicUrl\",\"id\":\"89c7052d-8a90-4a22-bc95-a10b656d7ad6\",\"required\":true,\"example\":\"http://cz-test.nbcb.com.cn:7070/nbcb/api\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":5,\"description\":\"开放平台公钥\",\"parameterName\":\"publicKey\",\"id\":\"c96236b3-ed05-437a-ab01-829e8052dee9\",\"required\":true,\"example\":\"MFkwEwYHKoZIzj0CAQYIKoEcz1UBgi0DQgAEXAt6fxeKlpREIyXoT3jDwGU7L6JkKrzdOKP1cMB14rtNwwlyaUGLrtuHVoArAHP3x7XN2rUw0GxSngYQwOAsjQ==\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"concreteType\":\"String\",\"index\":6,\"description\":\"财资客户号\",\"parameterName\":\"custId\",\"id\":\"bddeecac-2ca0-498a-9063-3655c50b8089\",\"required\":true,\"example\":\"0000112058\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":7,\"concreteType\":\"String\",\"id\":\"b2785506-3c80-47f7-a211-8ccb9ce35a34\",\"parameterName\":\"productID\",\"required\":true,\"example\":\"tmsSettle\"},{\"parameterType\":\"fundamental\",\"length\":\"255\",\"index\":8,\"concreteType\":\"String\",\"id\":\"eb20bd5c-19e2-413b-8c4d-3ce5272bc691\",\"parameterName\":\"serviceID\",\"required\":true,\"example\":\"querySingleTransferResult\"}]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"concreteType\":\"String\",\"index\":1,\"description\":\"流水号\",\"parameterName\":\"serialNo\",\"id\":\"6b973918-89bf-43b4-b9db-436928dff463\",\"required\":true,\"example\":\"Api20230607003\"}],\"concreteType\":\"Object\",\"index\":0,\"id\":\"726732fd-30ec-4aec-a572-590a3d9bca68\",\"parameterName\":\"body\",\"first\":true,\"required\":true}]', '[]', 245, '1', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', 'Y', NULL, 'ningboBankTreasuryServiceImpl', 'doChangeData', '1', 'retCode', '0000', 'retMsg');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('58105ccc4b4b4fbf89312f85b09ea9f6', 'ae67183945fe48a890a5bedde34a23e8', '转账', 77, NULL, 'Y', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('e6d546212791410593f758e289733361', 'ae67183945fe48a890a5bedde34a23e8', '交易结果', 78, NULL, 'Y', '2024-07-17 09:05:35', '1', '2024-07-17 09:05:35', '1');
update sys_application_api set extension_api = '2' where extension_api is null;
update sys_application_api set return_success_field = 'status' where return_success_field is null;
update sys_application_api set return_success_value = '200' where return_success_value is null;
update sys_application_api set return_msg = 'msg' where return_msg is null;
commit;

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,35 @@
INSERT INTO sys_application (id, app_logo, app_status, name, version_number, access_mode, affiliation_field, manufacturer, app_introduction, client_path, app_id, system_address, web_path, program_path, public_key, secret_key, interface_address, interface_status, app_type, db_status, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('53936623a8bd451fb7f5fed09cb36fab', NULL, '1', '东进致远OA', '8.2', '[\"1\"]', '11', '致远', '越城区发展集团致远OA', 'http://ufidahz.com.cn:9955/', 800034, NULL, 'http://ufidahz.com.cn:9955/', 'http://ufidahz.com.cn:9955/', 'ZJYATW/MfYZX7zF0eAh4DJXbyTLwUtwSoSz5Y/o1ksAaN/dCe7eDIk+3zDUT+v578prj', '+5BUkLQh3iX3VHgEt5bE2IPh+ZeebGvDaEspsvVu739Ar6sFnwg+fpPod4t6XhoTj3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=', 'http://115.239.174.22:9999', '1', '1', '1', 17, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:17:56', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('23499f05d50b495d989208e124469eff', 8000340004, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '33406ee83887421bb1cdeb728606dcbf', '按登录名取人员信息', '按登录名取人员信息', '2', NULL, '1', '/seeyon/rest/orgMember', '1', '2', '10000', '100', '[]', '[]', '1', '[{\"id\":\"c8620cd3-7ee3-47a9-8b1d-88d26f7c21d8\",\"parameterName\":\"body\",\"first\":true}]', '[]', 228, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'enabled', 'true', 'enabled');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('539a319b80224ce6a39106324bb68ef9', 8000340005, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '81333abd92ac40d7b15b080d6d3750a9', '附件上传', '假的', '2', NULL, '1', '/seeyon/rest/attachment', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"03521015-0cf3-4b9f-b0d6-41d13b5578e4\",\"parameterName\":\"body\",\"first\":true}]', '[]', 235, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '1', '1', '1', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('6cc3ea97cec24265810efced08509203', 8000340007, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '27eae7084739493c97f2da86ba5f434b', '支付申请明细日志', 'OA付款推到CBS的支付申请日志', '2', '6f561dd4a5a74bba850cc37e5c287e92', '1', '/seeyon/rest/form/import/formmain_0232', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"index\":0,\"concreteType\":\"String\",\"id\":\"cc04b232-1755-49ab-b5bd-451ed4e7a9cf\",\"parameterName\":\"token\"}]', '[]', '1', '[{\"index\":0,\"id\":\"e167aa7a-43c0-476c-ae0d-9fc75752fc77\",\"parameterName\":\"body\",\"first\":true}]', '[]', 237, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, 'CbsLogServiceImpl', 'getTokenExt', '1', '1', '1', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('8aa016962a474a54a4a8efc60f284fa3', 8000340006, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '27eae7084739493c97f2da86ba5f434b', 'CBS收款记录', '保存CBS收款记录到OA底表\n调用的是xml格式的接口', '2', '6f561dd4a5a74bba850cc37e5c287e92', '1', '/seeyon/rest/form/import/formmain_0233', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"index\":0,\"concreteType\":\"String\",\"id\":\"3a5e0ff5-7790-4402-9e93-a175f35a6630\",\"parameterName\":\"token\"}]', '[]', '1', '[{\"id\":\"a09d407c-df44-46fa-ab3c-cf99f1332b17\",\"parameterName\":\"body\",\"first\":true}]', '[]', 236, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, 'CbsLogServiceImpl', 'getTokenExt', '1', '1', '1', '1');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('9f047fd9a30246b48d12844da5ab59d5', 8000340003, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '27eae7084739493c97f2da86ba5f434b', '无流程表单批量新增', NULL, '2', NULL, '1', '/seeyon/rest/cap4/form/soap/batch-add', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"ad5f0b02-d555-4f65-8856-6afbab270870\",\"parameterName\":\"body\",\"first\":true}]', '[]', 221, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'code', '0', 'code');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('c75bab671dc94be68bf4498d49a93951', 8000340002, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '3b45cc93711c49c6a150d3b6aeddc60f', '流程表单发起', '流程表单发起', '2', NULL, '1', '/seeyon/rest/bpm/process/start', '1', '1', '10000', '100', '[]', '[]', '1', '[{\"id\":\"c25f517e-b8b8-4fcb-9466-6952ff754a1c\",\"parameterName\":\"body\",\"first\":true}]', '[]', 220, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'code', '0', 'code');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('c7ac1418cb0a4061ade501ee5614630d', 8000340000, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '75200bc1ee464e86accf4022c71cc16c', 'token', '获取oatoken', '2', NULL, '1', '/seeyon/rest/token', '1', '1', '10000', '100', '[{\"parameterType\":\"fundamental\",\"index\":0,\"concreteType\":\"String\",\"description\":\"hzya_rest\",\"id\":\"a7f634e6-4325-409f-9d4d-c05418153f13\",\"parameterName\":\"userName\",\"example\":\"hzya_rest\"},{\"parameterType\":\"fundamental\",\"index\":1,\"concreteType\":\"String\",\"id\":\"f34ec8a4-10ca-4af5-8895-0bc650f92516\",\"parameterName\":\"password\",\"example\":\"5339d0e3-b23b-45d6-b301-c59de8bd447a\"},{\"parameterType\":\"fundamental\",\"index\":2,\"concreteType\":\"String\",\"description\":\"hzya_rest\",\"id\":\"4435d5e8-20d1-4b39-9286-77589e338c1e\",\"parameterName\":\"loginName\",\"example\":\"hzya_rest\"}]', '[]', '1', '[{\"parameterType\":\"complex\",\"children\":[{\"parameterType\":\"fundamental\",\"index\":1,\"concreteType\":\"String\",\"description\":\"hzyaRest\",\"id\":\"37d4be39-a313-4776-9b80-214bb73666aa\",\"parameterName\":\"userName\",\"example\":\"hzyaRest\"},{\"parameterType\":\"fundamental\",\"index\":2,\"concreteType\":\"String\",\"description\":\"0c92d077-03ea-4d58-92c2-c743dae957d1\",\"id\":\"9fb64713-6645-429d-b377-66f4bc72e968\",\"parameterName\":\"password\",\"example\":\"0c92d077-03ea-4d58-92c2-c743dae957d1\"},{\"parameterType\":\"fundamental\",\"index\":3,\"concreteType\":\"String\",\"description\":\"xel\",\"id\":\"16789d17-bc77-4fd5-9ca9-5dbbbed2d59b\",\"parameterName\":\"loginName\",\"example\":\"xel\"}],\"index\":0,\"concreteType\":\"Object\",\"id\":\"8aef3b7b-e4b7-4465-b0c5-88ecc5f84200\",\"parameterName\":\"body\",\"first\":true}]', '[{\"parameterType\":\"fundamental\",\"index\":0,\"concreteType\":\"String\",\"id\":\"85f455c0-eed0-4292-8130-a52c242974ec\",\"parameterName\":\"userName\"},{\"parameterType\":\"fundamental\",\"index\":1,\"concreteType\":\"String\",\"id\":\"902fce32-f09d-4ce6-ac88-a06ef1950963\",\"parameterName\":\"id\"}]', 214, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'userName', 'hzyaRest', 'id不为空说明成功');
INSERT INTO sys_application_api (id, api_code, api_path, api_status, app_id, catalogue_id, api_name, api_remark, need_Login, authentication_port, parameter_passing_mode, destination_address, request_coding, request_method, timeout_period, current_limiting, header_in, query_in, body_in_type, body_in, body_out, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, bean_name, fun_name, extension_api, return_success_field, return_success_value, return_msg) VALUES ('f3778b38d03048249e9d063abbcacc5c', 8000340001, NULL, '1', '53936623a8bd451fb7f5fed09cb36fab', '3b45cc93711c49c6a150d3b6aeddc60f', '更新表单', '更新表单', '1', NULL, '1', '/seeyon/rest/businessResource/updateForm', '1', '1', '10000', '100', '[{\"parameterType\":\"authport\",\"index\":0,\"concreteType\":\"String\",\"id\":\"fdc278ea-8981-4db0-92b4-0b067d740ab6\",\"parameterName\":\"token\",\"example\":[\"id\"]}]', '[]', '1', '[]', '[]', 215, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL, NULL, NULL, '2', 'code', '0', '0表示成功');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('27eae7084739493c97f2da86ba5f434b', '53936623a8bd451fb7f5fed09cb36fab', '无流程表单', 65, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('33406ee83887421bb1cdeb728606dcbf', '53936623a8bd451fb7f5fed09cb36fab', '组织架构', 70, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('3b45cc93711c49c6a150d3b6aeddc60f', '53936623a8bd451fb7f5fed09cb36fab', '流程表单', 64, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('75200bc1ee464e86accf4022c71cc16c', '53936623a8bd451fb7f5fed09cb36fab', 'token', 63, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('81333abd92ac40d7b15b080d6d3750a9', '53936623a8bd451fb7f5fed09cb36fab', '附件', 66, NULL, 'Y', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', '1');
INSERT INTO sys_application_api_type (id, app_id, name, sorts, org_id, sts, create_time, create_user_id, modify_time, modify_user_id) VALUES ('ced72ee34965400cbac80b8944fb9eda', '53936623a8bd451fb7f5fed09cb36fab', '销售合同', 84, NULL, 'Y', '2024-07-16 11:03:40', '1', '2024-07-16 11:03:40', '1');
INSERT INTO sys_application_database (id, app_id, source_code, source_name, source_type, source_ip, source_port, login_name, password, db_name, service_name, db_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('21a9e85a5dfc497a9fdd5b2e084b57ec', '53936623a8bd451fb7f5fed09cb36fab', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '1', 19, '1', '2024-07-16 10:17:56', '1', '2024-07-16 10:17:56', 'Y', NULL);
INSERT INTO sys_application_plugin (id, app_id, plugin_name, plugin_code, plugin_version, plugin_remark, release_date, plugin_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('9378e84eacb94edaafcc09f3469b37e1', '53936623a8bd451fb7f5fed09cb36fab', 'OA用户档案', 'MdmCustomerPlugin', '1.0', NULL, '2024-06-24 00:00:00', '1', 11, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL);
INSERT INTO sys_application_plugin (id, app_id, plugin_name, plugin_code, plugin_version, plugin_remark, release_date, plugin_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('98929ef5049f455db40fad55b7127b21', '53936623a8bd451fb7f5fed09cb36fab', 'OA付款单同步BIP', 'PayBillPlugin', '1', NULL, '2024-06-25 00:00:00', '1', 16, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL);
INSERT INTO sys_application_plugin (id, app_id, plugin_name, plugin_code, plugin_version, plugin_remark, release_date, plugin_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('a58d30d71f5943e9b114001ff36c69c3', '53936623a8bd451fb7f5fed09cb36fab', 'OA客户档案', 'MdmCustomerPlugin', '1.0', NULL, '2024-06-24 00:00:00', '1', 13, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL);
INSERT INTO sys_application_plugin (id, app_id, plugin_name, plugin_code, plugin_version, plugin_remark, release_date, plugin_status, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id) VALUES ('d2032b6aff7345b69553e6d0ca07c65c', '53936623a8bd451fb7f5fed09cb36fab', 'OA银行档案', 'MdmCustomerPlugin', '1.0', NULL, '2024-06-25 00:00:00', '1', 14, '1', '2024-07-16 10:15:14', '1', '2024-07-16 10:15:14', 'Y', NULL);
update sys_application_api set extension_api = '2' where extension_api is null;
update sys_application_api set return_success_field = 'status' where return_success_field is null;
update sys_application_api set return_success_value = '200' where return_success_value is null;
update sys_application_api set return_msg = 'msg' where return_msg is null;
commit;

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,112 @@
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('1', '0', '系统管理', 'systemSettings', 'icon-xitongguanli', '/systemSettings', 'Layout', NULL, '0', '1', 1, '1', '2024-04-02 09:35:56', '1', '2024-05-24 15:44:52', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('2', '1', '用户管理', 'userSettings', NULL, 'userSettings', 'ParentView', NULL, '0', '1', 2, '1', '2024-04-02 09:36:01', '1', '2024-06-29 14:20:29', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('3', '2', '角色管理', 'roleSettings', '-4989079828753399804', 'roleSettings', 'systemSettings/userSettings/roleSettings/index', NULL, '0', '1', 3, '1', '2024-04-02 09:36:04', '1', '2024-07-04 15:18:02', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('4c72e5216d744e0fb715d5d778db412b', '2', '人员管理', 'PersonnelSettings', '-7777602241705521719', 'PersonnelSettings', 'systemSettings/userSettings/PersonnelSettings/index', '1231231312312', '0', '1', 4, '1', '2024-04-02 10:10:35', '1', '2024-07-04 15:18:09', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('c05bc722e3664b428e24134965fe8dd3', '2', '用户信息', 'userInformation', '-8916277899496502779', 'userInformation', 'systemSettings/userSettings/userInformation/index', NULL, '0', '1', 5, '1', '2024-04-02 10:11:58', '1', '2024-07-04 15:18:22', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('4', '1', '组织机构', 'organization', '-217601803969409117', 'organization', 'systemSettings/organization/index', NULL, '0', '1', 6, '1', '2024-04-02 10:11:58', '1', '2024-07-04 15:21:05', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('5', '0', '系统维护', 'systemMaintenance', 'icon-danganduizhao', '/systemMaintenance', 'Layout', NULL, '0', '1', 6, '1', '2024-04-02 10:11:58', '1', '2024-05-24 16:03:46', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('6', '5', '菜单管理', 'menuManagement', '5050451005206776890', 'menuManagement', 'systemMaintenance/menuManagement', NULL, '0', '1', 7, '1', '2024-04-02 10:11:58', '1', '2024-07-04 15:19:39', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('7', '5', '按钮管理', 'buttonManagement', '-787759178487086889', 'buttonManagement', 'systemMaintenance/buttonManagement/index', NULL, '0', '1', 8, '1', '2024-04-02 10:11:58', '1', '2024-07-04 15:19:44', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('c008932b06e84ae5904e989af3d0fb07', '1', '权限管理', 'jurisdictionManage', NULL, 'jurisdictionManage', 'ParentView', NULL, '0', '1', 10, '1', '2024-04-03 14:07:29', '1', '2024-06-29 14:21:01', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('0e119cab23454d2ebf2442f0bf1a4f0b', 'c008932b06e84ae5904e989af3d0fb07', '用户权限', 'userJurisdiction', '-654050188193413581', 'userJurisdiction', 'systemSettings/jurisdictionManage/userJurisdiction/index', NULL, '0', '1', 11, '1', '2024-04-03 14:07:57', '1', '2024-07-04 15:18:42', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('11a0fd7c778a45fe9e02d0c0200dc179', 'c008932b06e84ae5904e989af3d0fb07', '角色权限', 'roleJurisdiction', '4668961960201636147', 'roleJurisdiction', 'systemSettings/jurisdictionManage/roleJurisdiction/index', NULL, '0', '1', 12, '1', '2024-04-07 09:05:00', '1', '2024-07-04 15:18:50', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('51928849267a463799cc4a336a6bee71', '0', '应用管理', 'applicationList', 'icon-caidan', '/applicationList', 'Layout', NULL, '0', '1', 13, '1', '2024-04-08 09:30:55', '1', '2024-04-08 10:44:58', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('84fd5cd21223416b942d5f79bcae5f35', '51928849267a463799cc4a336a6bee71', '应用中心', 'applicationListAdmin', '1416839922333927770', 'applicationListAdmin', 'applicationList/index', NULL, '0', '1', 14, '1', '2024-04-08 09:31:43', '1', '2024-07-04 10:27:40', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('822bbe0150ff46f982c0fa998f64f340', '51928849267a463799cc4a336a6bee71', '应用设置', 'settingMenu', '-2892170219507726319', 'settingMenu', 'applicationList/settingMenu', NULL, '1', '1', 15, '1', '2024-04-08 15:40:38', '1', '2024-07-04 10:28:33', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('3c979f6461ed42289a04e07daa85a16d', '51928849267a463799cc4a336a6bee71', '应用新增', 'applicationAdd', '1489911612727182633', 'applicationAdd', 'applicationList/applicationAdd', NULL, '1', '1', 16, '1', '2024-04-08 15:41:04', '1', '2024-07-04 10:28:38', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('46720575a73b46c8a883e3b890364c22', '0', '数据源管理', 'dataSourceManagement', 'icon-danganduizhao', '/dataSourceManagement', 'Layout', NULL, '0', '1', 17, '1', '2024-04-09 14:39:17', '1', '2024-05-24 15:45:44', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('0fd80aff8d9c4dd3810ca2d043c00ca3', '46720575a73b46c8a883e3b890364c22', '数据源管理', 'dataSourceManagements', '2319256122443123916', 'dataSourceManagement', 'dataSourceManagement/dataSourceManagement/index', NULL, '0', '1', 18, '1', '2024-04-09 14:40:04', '1', '2024-07-04 15:26:01', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('5f1182ffd4c1451291a211c4a820fb6b', '0', '集成任务管理', 'task', 'icon-renwuguanli', '/task', 'Layout', NULL, '0', '1', 22, '1', '2024-04-09 14:42:44', '1', '2024-05-24 15:46:00', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('9cf6a9fad9874da18c42f1c63c64ddbc', '5f1182ffd4c1451291a211c4a820fb6b', '集成任务部署', 'taskAdmin', '-6034541283670537998', '/', 'intergrationTask/index', NULL, '0', '1', 23, '1', '2024-04-09 14:43:15', '1', '2024-07-04 15:25:50', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('5451b1c84bd84af6af44b45ced4340a9', '5f1182ffd4c1451291a211c4a820fb6b', '集成任务日志', 'detailData', '4762289394461459349', 'logDetails', 'intergrationTask/detailData/index', NULL, '0', '1', 24, '1', '2024-04-09 14:43:43', '1', '2024-07-04 15:26:32', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('f5b3895011a54d45a3b9104e3fc28b8e', '5f1182ffd4c1451291a211c4a820fb6b', '集成任务监控', 'taskMonitoring', '-130710338222210555', 'monitoring', 'intergrationTask/monitoring', NULL, '0', '1', 26, '1', '2024-04-09 14:44:48', '1', '2024-07-04 15:26:14', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('82a8abdab323409a8eba40d2753eb4ae', '5f1182ffd4c1451291a211c4a820fb6b', '集成任务日志明细', 'logDetails', '-1928639021275134342', 'taskLogDetails', 'intergrationTask/taskLogdetailData/index', NULL, '0', '1', 27, '1', '2024-04-09 14:45:15', '1', '2024-07-04 15:26:24', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('931a97a2ea33446d9c3f4e11130279de', '5f1182ffd4c1451291a211c4a820fb6b', '日志查看', 'taskLogsView', '2796025808914499623', 'logsview', 'intergrationTask/logsViewPage', NULL, '1', '1', 28, '1', '2024-04-09 14:45:46', '1', '2024-07-04 15:26:41', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('9521483e01d14e5aa06fd246da55d2c3', '5f1182ffd4c1451291a211c4a820fb6b', '任务设置', 'taskAdd', '8524855161201509039', 'add', 'intergrationTask/taskAdd', NULL, '1', '1', 29, '1', '2024-04-09 14:46:13', '1', '2024-07-04 15:26:48', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('16faf4e100fe482888af65d3ff5e11bc', '5f1182ffd4c1451291a211c4a820fb6b', '实例查看', 'taskLivingView', '5751831597941672974', 'livingview', 'intergrationTask/livingViewPage', NULL, '1', '1', 30, '1', '2024-04-09 14:46:50', '1', '2024-07-04 15:26:55', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('4fd2f714e1a14aedb1971f80fca8b0ce', '0', '集成任务', 'newIntegrationTask', 'icon-renwujicheng', '/newIntegrationTask', 'Layout', NULL, '0', '1', 31, '1', '2024-04-09 14:47:36', '1', '2024-05-24 15:46:20', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('504e6bc41ea6456f93e69f3be668e137', '4fd2f714e1a14aedb1971f80fca8b0ce', '插件参数设置', 'plugInOptions', '1653664976964371217', 'plugInOptions', 'newIntegrationTask/plugInOptions/index', NULL, '0', '1', 32, '1', '2024-04-09 14:48:03', '1', '2024-07-04 13:48:11', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('1d00e0acc81b4e5ab65b98d91e1d4dfc', '4fd2f714e1a14aedb1971f80fca8b0ce', '集成前台任务', 'foregroundTask', '1984791001939854535', 'foregroundTask', 'newIntegrationTask/foregroundTask/index', NULL, '0', '1', 33, '1', '2024-04-09 14:48:31', '1', '2024-07-04 13:48:25', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('fe7d099ecfd94593a13dc321218749cc', 'c008932b06e84ae5904e989af3d0fb07', '接口管理', 'apiAdmin', '1190466157960907823', 'apiAdmin', 'apiAdmin/index.vue', NULL, '0', '1', 35, '1', '2024-04-11 09:30:32', '1', '2024-07-04 15:19:03', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('973fa79b42e64c9e968e9a5b1295c486', '0', '主数据中心', '主数据中心', 'icon-zhushujuzhongxin', '/integrationOption', 'Layout', NULL, '0', '1', 38, '1', '2024-05-08 17:02:23', '1', '2024-05-08 17:02:23', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('55c2c82eb1ba458d84f666784d6a13a1', '973fa79b42e64c9e968e9a5b1295c486', '主数据配置', 'masterDataOptions', '4592551509526331675', 'masterDataOptions', 'masterDataOptions/index', NULL, '0', '1', 39, '1', '2024-05-08 17:02:57', '1', '2024-07-04 10:08:14', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('19074ffd21c04e6d9961a7daea7cff2e', '973fa79b42e64c9e968e9a5b1295c486', '主数据添加', 'masterDataAdd', '-1139483645151067587', 'masterDataAdd', 'masterDataOptions/masterDataAdd', NULL, '1', '1', 40, '1', '2024-05-08 17:03:27', '1', '2024-07-04 14:14:25', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('1035eb2fbba24caca0617d3dc11c1f09', '973fa79b42e64c9e968e9a5b1295c486', '主数据设置', 'masterDataSettingMenu', '8758144563624233695', 'settingMenu', 'masterDataOptions/settingMenu', NULL, '1', '1', 41, '1', '2024-05-08 17:03:55', '1', '2024-07-04 15:27:08', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('ea22757e99c144fb9ef381dd322e233c', '973fa79b42e64c9e968e9a5b1295c486', '基础档案主数据', 'integrationOptionV2', NULL, 'integrationOptionV2', 'ParentView', NULL, '0', '1', 43, '1', '2024-05-08 17:05:13', '1', '2024-05-29 15:54:06', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('310638bad6d34e33aa53878ffbbe6cbf', '0', '报表中心', 'reportCenter', 'icon-danganduizhao', '/reportCenter', 'Layout', NULL, '1', '1', 51, '1', '2024-05-21 14:44:22', '1', '2024-07-09 14:44:06', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('df191edd5b3b4b02849b175ecd9e33e2', '310638bad6d34e33aa53878ffbbe6cbf', '报表设计', 'reportDesign', '5195426072247356303', '/reportDesign', 'Layout', NULL, '1', '1', 52, '1', '2024-05-21 14:46:40', '1', '2024-07-09 10:02:04', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('273d68853e2643c58708dc23f0502ae6', '310638bad6d34e33aa53878ffbbe6cbf', '报表管理', 'reportManagement', '4976674742449292373', '/reportManagement', 'Layout', NULL, '1', '1', 53, '1', '2024-05-21 14:47:33', '1', '2024-07-09 10:02:09', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('868caa8058e94faf944fa86087eb56bf', '0', '档案对照', 'recordContrast', 'icon-danganduizhao', '/recordContrast', 'Layout', NULL, '0', '1', 69, '1', '2024-05-28 10:15:35', '1', '2024-05-28 10:22:08', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('314f900b3e1342f8a5544203021d3694', '868caa8058e94faf944fa86087eb56bf', '档案对照', 'recordContrastAdmin', '-218852364998393496', 'recordContrastAdmin', 'recordContrast/index', NULL, '0', '1', 70, '1', '2024-05-28 10:27:23', '1', '2024-07-04 14:35:20', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_menu_config (id, parent_menu_id, menu_name, menu_english_name, menu_icon, route, menu_page, remark, visibles, show_type, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, options, form_id) VALUES ('9d60e91c80d741ae822f0b557da90435', '51928849267a463799cc4a336a6bee71', '接口日志', 'apiLogs', '4522505755255719521', 'apiLogs', 'apiLogs/index', NULL, '0', '1', 71, '1', '2024-05-29 09:36:49', '1', '2024-07-04 14:35:48', 'Y', '0', '0', NULL, NULL);
INSERT INTO sys_organ (id, organ_name, organ_code, parent_organ_id, state, company, manager_id, remark, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('1', '集团', 'hzya', '0', '0', '0', '1', '集团', 1, '1', '2024-04-02 08:35:49', '1', '2024-04-02 08:44:46', 'Y', NULL, NULL);
INSERT INTO sys_person (id, organ_id, person_code, person_name, sex, mobile_phone, entry_time, email, degree_id, post_id, level_id, birth_day, tel_phone, hometown, id_card, address, leave_time, state, remark, dd_user_id, wx_user_id, head_image_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('1', '1', 'admin', 'admin', '1', 'admin', '2024-04-01 08:56:16', '999999999@qq.com', '3208c037f18711eea2cd00ffb4e96929', 'ad997865f18711eea2cd00ffb4e96929', 'feea3fd8f18711eea2cd00ffb4e96929', '2024-04-02 08:56:46', '18613130436', NULL, NULL, NULL, NULL, '0', NULL, NULL, NULL, NULL, 1, '1', '2024-04-02 08:57:21', '1', '2024-05-21 08:59:04', 'Y', NULL, NULL);
INSERT INTO sys_popedom_home (id, object_id, home_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('991ecd73b3144fc889ef7562cef03dd9', '1', '1', '2', 1, '1', '2024-04-03 14:12:39', '1', '2024-04-03 14:12:39', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('725c58ff5d834feab8e463c36997696e', 'e51c982747354a93abc4020b13de6da5', '1', '2', 4695, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('b2bb7849bd7749efb73f20b4a4641cb6', 'e51c982747354a93abc4020b13de6da5', '2', '2', 4696, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('5cc5abb5b1e14d4b8a68fbb13dc1ca48', 'e51c982747354a93abc4020b13de6da5', '3', '2', 4697, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('96327954f2724353a16ddd30e0c60142', 'e51c982747354a93abc4020b13de6da5', '4c72e5216d744e0fb715d5d778db412b', '2', 4698, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('c15c9e20a3694a868800abb04d137609', 'e51c982747354a93abc4020b13de6da5', 'c05bc722e3664b428e24134965fe8dd3', '2', 4699, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('5c2c2f0b7341427a909ffb5a813249a6', 'e51c982747354a93abc4020b13de6da5', '51928849267a463799cc4a336a6bee71', '2', 4700, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('dc279c0eca4d4432ae10b13a5579b467', 'e51c982747354a93abc4020b13de6da5', '84fd5cd21223416b942d5f79bcae5f35', '2', 4701, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('9555bce6d0994d2d87cb507473cb5ad6', 'e51c982747354a93abc4020b13de6da5', '822bbe0150ff46f982c0fa998f64f340', '2', 4702, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('a479909afebc44c2aab633c58e74b466', 'e51c982747354a93abc4020b13de6da5', '3c979f6461ed42289a04e07daa85a16d', '2', 4703, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('04af05f30e0c4deab15d097fbaf0a14c', 'e51c982747354a93abc4020b13de6da5', '973fa79b42e64c9e968e9a5b1295c486', '2', 4704, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('4eb04331916a43eb8b536717c6baf310', 'e51c982747354a93abc4020b13de6da5', 'ea22757e99c144fb9ef381dd322e233c', '2', 4705, '1', '2024-07-09 14:06:30', '1', '2024-07-09 14:06:30', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('2bf8443af272443db36943a4f6da225b', '67fc3991a633427ab26e13bf9ea35374', '1', '2', 4706, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('fa5439e803624182a3b09e50ad673b78', '67fc3991a633427ab26e13bf9ea35374', '2', '2', 4707, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('51cff72ef4aa47f3b972e6bee98db890', '67fc3991a633427ab26e13bf9ea35374', '3', '2', 4708, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('e93369f61f4c4a9db1fa040fe8a9f56c', '67fc3991a633427ab26e13bf9ea35374', '4c72e5216d744e0fb715d5d778db412b', '2', 4709, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('8f61a1ee8ba14357a518e7cb2eed8eec', '67fc3991a633427ab26e13bf9ea35374', 'c05bc722e3664b428e24134965fe8dd3', '2', 4710, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('735dd4e508104eb4b95acf07799dc96e', '67fc3991a633427ab26e13bf9ea35374', '4', '2', 4711, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('01dd0dd1c68148a08cead16bca42d4ed', '67fc3991a633427ab26e13bf9ea35374', 'c008932b06e84ae5904e989af3d0fb07', '2', 4712, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('de67e135b29644db9663f4d72534c60a', '67fc3991a633427ab26e13bf9ea35374', '0e119cab23454d2ebf2442f0bf1a4f0b', '2', 4713, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('a7f969a5269d4fe39ed20cd2f3efdf3f', '67fc3991a633427ab26e13bf9ea35374', '11a0fd7c778a45fe9e02d0c0200dc179', '2', 4714, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('9b032f49712f46fc852032fddb348827', '67fc3991a633427ab26e13bf9ea35374', 'fe7d099ecfd94593a13dc321218749cc', '2', 4715, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('135d40b1f38f43499489b3881c9befb6', '67fc3991a633427ab26e13bf9ea35374', '5', '2', 4716, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ee9f4f5fb9974804abae0dc4d526660b', '67fc3991a633427ab26e13bf9ea35374', '6', '2', 4717, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('1a425bff16f64639bb57a9c895abf37c', '67fc3991a633427ab26e13bf9ea35374', '7', '2', 4718, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('25f1ac28de7b4054928c8cf88d2a5493', '67fc3991a633427ab26e13bf9ea35374', '51928849267a463799cc4a336a6bee71', '2', 4719, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('8a9e3c38004b417791666005ca82ab07', '67fc3991a633427ab26e13bf9ea35374', '84fd5cd21223416b942d5f79bcae5f35', '2', 4720, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('d35582e578524b15ba017ba29e50eda7', '67fc3991a633427ab26e13bf9ea35374', '822bbe0150ff46f982c0fa998f64f340', '2', 4721, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('29fd09b351c5435980e08cf766f5cbfc', '67fc3991a633427ab26e13bf9ea35374', '3c979f6461ed42289a04e07daa85a16d', '2', 4722, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('8ece8b7ef8144be3a5b76ea0d385e642', '67fc3991a633427ab26e13bf9ea35374', '9d60e91c80d741ae822f0b557da90435', '2', 4723, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('03c29b8f3e59467fa8eab197a60598dd', '67fc3991a633427ab26e13bf9ea35374', '5f1182ffd4c1451291a211c4a820fb6b', '2', 4724, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('02de83ccd4464d67ba9fecb04591d31e', '67fc3991a633427ab26e13bf9ea35374', '9cf6a9fad9874da18c42f1c63c64ddbc', '2', 4725, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('5e621ac317cb4c5bb2f8c3005abcf170', '67fc3991a633427ab26e13bf9ea35374', '5451b1c84bd84af6af44b45ced4340a9', '2', 4726, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('9f9e505a05af4ff1bf5fa34600dd59e4', '67fc3991a633427ab26e13bf9ea35374', 'f5b3895011a54d45a3b9104e3fc28b8e', '2', 4727, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('7fdbcfb96a6a473f976a93be2f187d1e', '67fc3991a633427ab26e13bf9ea35374', '82a8abdab323409a8eba40d2753eb4ae', '2', 4728, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('d0346f1e56e446248496bb80c5996ffa', '67fc3991a633427ab26e13bf9ea35374', '931a97a2ea33446d9c3f4e11130279de', '2', 4729, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('76573856edf54b3c9b35ca079ceb2646', '67fc3991a633427ab26e13bf9ea35374', '9521483e01d14e5aa06fd246da55d2c3', '2', 4730, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ecf5886c493241afa23c7d796c12fcd7', '67fc3991a633427ab26e13bf9ea35374', '16faf4e100fe482888af65d3ff5e11bc', '2', 4731, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('cae45ee61fdd40838ca13cb830578e17', '67fc3991a633427ab26e13bf9ea35374', '4fd2f714e1a14aedb1971f80fca8b0ce', '2', 4732, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('5078c96bc7d442b193b3a9be50461826', '67fc3991a633427ab26e13bf9ea35374', '504e6bc41ea6456f93e69f3be668e137', '2', 4733, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('a301e41a882c4bdf9f08a11e4f8f759b', '67fc3991a633427ab26e13bf9ea35374', '1d00e0acc81b4e5ab65b98d91e1d4dfc', '2', 4734, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('b414508d874f452ab35ff49bedaed5e4', '67fc3991a633427ab26e13bf9ea35374', '973fa79b42e64c9e968e9a5b1295c486', '2', 4735, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('bd011567d5744aecbcbed58f99dd3444', '67fc3991a633427ab26e13bf9ea35374', '55c2c82eb1ba458d84f666784d6a13a1', '2', 4736, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('cdfd4e4a8fa741b88e9ce9fa7ffc5dbf', '67fc3991a633427ab26e13bf9ea35374', '19074ffd21c04e6d9961a7daea7cff2e', '2', 4737, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('3f4bbe976c4540fbb9fe3bebd6c787d9', '67fc3991a633427ab26e13bf9ea35374', '1035eb2fbba24caca0617d3dc11c1f09', '2', 4738, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('75b6a2fbe6f849ae936b301cf6a1df0b', '67fc3991a633427ab26e13bf9ea35374', 'ea22757e99c144fb9ef381dd322e233c', '2', 4739, '1', '2024-07-18 09:42:50', '1', '2024-07-18 09:42:50', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('62a692cfffa24e2282eb07261e2f93da', '67fc3991a633427ab26e13bf9ea35374', '310638bad6d34e33aa53878ffbbe6cbf', '2', 4741, '1', '2024-07-18 09:42:51', '1', '2024-07-18 09:42:51', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('067a1f32c3b4465a8282c03eb827a04e', '67fc3991a633427ab26e13bf9ea35374', 'df191edd5b3b4b02849b175ecd9e33e2', '2', 4742, '1', '2024-07-18 09:42:51', '1', '2024-07-18 09:42:51', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('155c2b1ceab64d2591749f9396bbab32', '67fc3991a633427ab26e13bf9ea35374', '273d68853e2643c58708dc23f0502ae6', '2', 4743, '1', '2024-07-18 09:42:51', '1', '2024-07-18 09:42:51', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('e9097ea0f3c044c5b21a24ce73c3cc01', '67fc3991a633427ab26e13bf9ea35374', '868caa8058e94faf944fa86087eb56bf', '2', 4744, '1', '2024-07-18 09:42:51', '1', '2024-07-18 09:42:51', 'Y', '0', '0');
INSERT INTO sys_popedom_menu (id, object_id, menu_id, kind_id, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('b2377030a5594f1f9439d13745ce135b', '67fc3991a633427ab26e13bf9ea35374', '314f900b3e1342f8a5544203021d3694', '2', 4745, '1', '2024-07-18 09:42:51', '1', '2024-07-18 09:42:51', 'Y', '0', '0');
INSERT INTO sys_role (id, role_code, role_name, description, enable_state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('67fc3991a633427ab26e13bf9ea35374', 'admin', '超级管理员', '超级管理员', '0', 8, '1', '2024-04-02 14:40:09', '1', '2024-07-09 11:44:45', 'Y', '0', '0');
INSERT INTO sys_user (id, person_id, login_code, password, salt, last_login_time, last_connection_time, last_login_ip, state, remark, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('1', '1', 'admin', 'e1cd2194902c06412c64b66b898435ae', NULL, '2024-04-02 08:57:56', '2024-04-02 08:57:58', '127.0.0.1', '0', NULL, 1, '1', '2024-04-02 08:58:18', '1', '2024-06-05 10:13:12', 'Y', NULL, NULL);
INSERT INTO sys_user_company (id, user_id, user_company_id, remark, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('cd2ba22a0909428786602828ee8f282a', '1', '1', NULL, 7, '1', '2024-04-07 09:29:33', '1', '2024-04-07 09:29:33', 'Y', '0', '0');
INSERT INTO sys_user_roles (id, user_id, role_id, user_role_note, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('af4cc85ec274481586174d1dc05f0b3f', '1', '67fc3991a633427ab26e13bf9ea35374', NULL, 13, '1', '2024-04-07 09:29:33', '1', '2024-04-07 09:29:33', 'Y', '0', '0');
commit;

View File

@ -0,0 +1,117 @@
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('3208c037f18711eea2cd00ffb4e96929', 'sys_person', 'degree_id', '初中', '1', 1, NULL, '学历', '1', 1, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('31f07110f18711eea2cd00ffb4e96929', 'sys_person', 'degree_id', '高中', '2', 1, NULL, '学历', '1', 2, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('31f5c482f18711eea2cd00ffb4e96929', 'sys_person', 'degree_id', '中专', '3', 1, NULL, '学历', '1', 3, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('31f9e500f18711eea2cd00ffb4e96929', 'sys_person', 'degree_id', '大专', '4', 1, NULL, '学历', '1', 4, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('3200d195f18711eea2cd00ffb4e96929', 'sys_person', 'degree_id', '大学', '5', 1, NULL, '学历', '1', 5, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ad997865f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '销售主管', '1', 1, NULL, '职务', '1', 7, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ad9ce962f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '总经理', '2', 1, NULL, '职务', '1', 8, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ada11492f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '副总', '3', 1, NULL, '职务', '1', 9, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ada57154f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '财务', '4', 1, NULL, '职务', '1', 10, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('adac5305f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '出纳', '5', 1, NULL, '职务', '1', 11, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('adb061abf18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '实施部总监', '6', 1, NULL, '职务', '1', 12, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('adb1f704f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '研发部总监', '7', 1, NULL, '职务', '1', 13, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('adb896c6f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '研发部经理', '8', 1, NULL, '职务', '1', 14, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('adbe2130f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '实施部经理', '9', 1, NULL, '职务', '1', 15, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('adc56199f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '项目经理', '10', 1, NULL, '职务', '1', 16, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('adcc44cbf18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '研发工程师', '11', 1, NULL, '职务', '1', 17, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('add20873f18711eea2cd00ffb4e96929', 'sys_person', 'post_id', '实施工程师', '12', 1, NULL, '职务', '1', 18, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('feea3fd8f18711eea2cd00ffb4e96929', 'sys_person', 'level_id', '资深顾问', '1', 1, NULL, '级别', '1', 19, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('feef8907f18711eea2cd00ffb4e96929', 'sys_person', 'level_id', '研发顾问', '2', 1, NULL, '级别', '1', 20, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('fef6a7bdf18711eea2cd00ffb4e96929', 'sys_person', 'level_id', '实施顾问', '3', 1, NULL, '级别', '1', 21, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('fefa2b97f18711eea2cd00ffb4e96929', 'sys_person', 'level_id', '高级工程师', '4', 1, NULL, '级别', '1', 22, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ff010848f18711eea2cd00ffb4e96929', 'sys_person', 'level_id', '中级工程师', '5', 1, NULL, '级别', '1', 23, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ff082154f18711eea2cd00ffb4e96929', 'sys_person', 'level_id', '初级工程师', '6', 1, NULL, '级别', '1', 24, '1', '2024-04-03 14:34:51', '1', '2024-04-03 14:34:54', 'Y', '0', '0');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('1', 'sys_product', 'classify', 'ERP', '1', 1, NULL, '产品分类', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('10', 'sys_product', 'classify', 'Portal', '10', 10, NULL, '产品分类', '1', 10, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('11', 'sys_product', 'classify', '其他', '11', 11, NULL, '产品分类', '1', 11, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('161a15e0c6c611edb70400ffb4e96929', 'sys_thirdparty_api', 'content_type', 'application/json', '1', 1, NULL, '数据类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('16201b7fc6c611edb70400ffb4e96929', 'sys_thirdparty_api', 'content_type', 'text/xml', '2', 2, NULL, '数据类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('2', 'sys_product', 'classify', 'HR', '2', 2, NULL, '产品分类', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('26db733b6d9711eea2cd00ffb4e96929', 'mdm', 'db_type', '数字', 'BIGINT', 1, NULL, '主数据模版字段类型', '1', 1, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('26df45dd6d9711eea2cd00ffb4e96929', 'mdm', 'db_type', '金额', 'DECIMAL', 2, NULL, '主数据模版字段类型', '1', 2, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('26e349516d9711eea2cd00ffb4e96929', 'mdm', 'db_type', '字符串', 'VARCHAR', 3, NULL, '主数据模版字段类型', '1', 3, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('26e9e5266d9711eea2cd00ffb4e96929', 'mdm', 'db_type', '日期', 'DATETIME', 4, NULL, '主数据模版字段类型', '1', 4, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('26f738af6d9711eea2cd00ffb4e96929', 'mdm', 'db_type', '统计', 'COUNT', 5, NULL, '主数据模版字段类型', '1', 5, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('3', 'sys_product', 'classify', 'PLM', '3', 3, NULL, '产品分类', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('4', 'sys_product', 'classify', 'PM', '4', 4, NULL, '产品分类', '1', 4, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('4c6bc9e76d6411eea2cd00ffb4e96929', 'mdm', 'mdm_type', '档案', '1', 1, NULL, '主数据模版类型', '1', 1, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('4dcd9927c6c711edb70400ffb4e96929', 'sys_thirdparty_api', 'api_code', 'UTF-8', '1', 1, NULL, '数据类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('4e24e7e5c6c711edb70400ffb4e96929', 'sys_thirdparty_api', 'api_code', 'GB2312', '2', 2, NULL, '数据类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('4e44f9d1c6c711edb70400ffb4e96929', 'sys_thirdparty_api', 'api_code', 'ISO-8859-1', '3', 3, NULL, '数据类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('4e4e4070c6c711edb70400ffb4e96929', 'sys_thirdparty_api', 'api_code', 'GBK', '4', 4, NULL, '数据类型', '1', 4, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('5', 'sys_product', 'classify', 'CRM', '5', 5, NULL, '产品分类', '1', 5, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('54bcb59979f511eea2cd00ffb4e96929', 'mdm', 'mdm_filed_type', '数字', '1', 1, NULL, '主数据模版字段类型', '1', 1, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('54c510fc79f511eea2cd00ffb4e96929', 'mdm', 'mdm_filed_type', '金额', '2', 2, NULL, '主数据模版字段类型', '1', 2, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('54c8e19c79f511eea2cd00ffb4e96929', 'mdm', 'mdm_filed_type', '字符串', '3', 3, NULL, '主数据模版字段类型', '1', 3, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('54ce074679f511eea2cd00ffb4e96929', 'mdm', 'mdm_filed_type', '日期', '4', 4, NULL, '主数据模版字段类型', '1', 4, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('5b835d99cc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'release_type', '应用发布', '1', 1, NULL, '发布类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:22', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:22', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('5b91686bcc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'api_agreement', 'HTTP', '1', 1, NULL, '接口访问协议', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:22', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:22', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6', 'sys_product', 'classify', 'FI', '6', 6, NULL, '产品分类', '1', 6, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('65d776cf29c911eea2cd00ffb4e96929', 'sys_thirdparty_api_parameter', 'parameter_type', '认证接口', '5', 5, NULL, '参数类型', '1', 5, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6855f6d1c6c611edb70400ffb4e96929', 'sys_thirdparty_api', 'content_type', 'application/x-www-form-urlencoded', '3', 3, NULL, '数据类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('69dc998dcc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'api_agreement', 'HTTPS', '2', 2, NULL, '接口访问协议', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('69dec6f2cc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'api_application_type', '导出接口', '1', 1, NULL, '接口应用类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('69e2d8e2cc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'api_application_type', '取数接口', '2', 2, NULL, '接口应用类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('69ebc5cbcc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'api_application_type', '认证接口', '3', 3, NULL, '接口应用类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('69f4086acc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'api_application_type', '页面跳转', '4', 4, NULL, '接口应用类型', '1', 4, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('69ff5424cc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'request_method', 'POST', '1', 1, NULL, '请求方法', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a04fcaacc7d11edb70400ffb4e96929', 'sys_thirdparty_api', 'request_method', 'GET', '2', 2, NULL, '请求方法', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a0d8f37cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'parameter_type', '基本类型', '1', 1, NULL, '参数类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a161505cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'parameter_type', '复杂类型', '2', 2, NULL, '参数类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a1f4998cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'parameter_type', '基本列表', '3', 3, NULL, '参数类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a266f05cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'parameter_type', '复杂列表', '4', 4, NULL, '参数类型', '1', 4, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a2f5ed2cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type1', 'String', '11', 1, NULL, '数据类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a37791fcc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type1', 'Int', '12', 2, NULL, '数据类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a3fbd18cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type1', 'Long', '13', 3, NULL, '数据类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a44ab04cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type1', 'Float', '14', 4, NULL, '数据类型', '1', 4, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a4e15adcc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type1', 'Double', '15', 5, NULL, '数据类型', '1', 5, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a561db3cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type1', 'Boolean', '16', 6, NULL, '数据类型', '1', 6, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a5f1af4cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type2', 'Object', '21', 1, NULL, '数据类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a66ab65cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type2', 'Map', '22', 2, NULL, '数据类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a6b8c77cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type3', 'String', '31', 1, NULL, '数据类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a708d38cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type3', 'Int', '32', 2, NULL, '数据类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a7615d7cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type3', 'Long', '33', 3, NULL, '数据类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a7e5d0acc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type3', 'Float', '34', 4, NULL, '数据类型', '1', 4, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a850cdecc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type3', 'Double', '35', 5, NULL, '数据类型', '1', 5, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a8ac778cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type3', 'Boolean', '36', 6, NULL, '数据类型', '1', 6, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6a97d8e2cc7d11edb70400ffb4e96929', 'sys_thirdparty_api_parameter', 'data_type4', 'Object', '41', 1, NULL, '数据类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:48', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:48', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6c319282bbbc11edb70400ffb4e96929', 'sys_database', 'db_type', 'SqlServer', '1', 1, NULL, '数据库类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6c4259c7bbbc11edb70400ffb4e96929', 'sys_database', 'db_type', 'MySql', '2', 2, NULL, '数据库类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6c577cbdbbbc11edb70400ffb4e96929', 'sys_database', 'db_type', 'Oracle', '3', 3, NULL, '数据库类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6cab52fd253f11eeb21600ffb4e96929', 'sys_app_api', 'need_Login', '', '1', 1, NULL, '是否需要登录', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('6caea36d253f11eeb21600ffb4e96929', 'sys_app_api', 'need_Login', '', '2', 2, NULL, '是否需要登录', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('7', 'sys_product', 'classify', 'SCM', '7', 7, NULL, '产品分类', '1', 7, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('8', 'sys_product', 'classify', '电子商务', '8', 8, NULL, '产品分类', '1', 8, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('8db73e9ac6c711edb70400ffb4e96929', 'sys_thirdparty_api', 'accept', 'application/json', '1', 1, NULL, '数据类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('8db91293c6c711edb70400ffb4e96929', 'sys_thirdparty_api', 'accept', 'application/xml', '2', 2, NULL, '数据类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('8dc223c7c6c711edb70400ffb4e96929', 'sys_thirdparty_api', 'accept', 'text/plain', '3', 3, NULL, '数据类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9', 'sys_product', 'classify', 'IM', '9', 9, NULL, '产品分类', '1', 9, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9a27f3de253f11eeb21600ffb4e96929', 'sys_app_api', 'parameter_passing_mode', 'query', '1', 1, NULL, '传参方式', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9a2c33b8253f11eeb21600ffb4e96929', 'sys_app_api', 'parameter_passing_mode', 'data', '2', 2, NULL, '传参方式', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9da8520d250c11eeb21600ffb4e96929', 'sys_app_api', 'body_in_type', 'Application/json', '1', 1, NULL, 'Body 入参类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9dab9607250c11eeb21600ffb4e96929', 'sys_app_api', 'request_coding', 'UTF-8', '1', 1, NULL, '请求编码', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9dacf9f7250c11eeb21600ffb4e96929', 'sys_app_api', 'service_access_protocol', 'HTTP', '1', 1, NULL, '服务接入协议', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:22', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:22', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9dae52e9250c11eeb21600ffb4e96929', 'sys_app_api', 'service_access_protocol', 'HTTPS', '2', 2, NULL, '服务接入协议', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:46', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9daf8856250c11eeb21600ffb4e96929', 'sys_app_api', 'request_method', 'POST', '1', 1, NULL, '请求方法', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9db0e08c250c11eeb21600ffb4e96929', 'sys_app_api', 'request_method', 'GET', '2', 2, NULL, '请求方法', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9db6328d250c11eeb21600ffb4e96929', 'sys_app_api', 'enable_access_entry', 'APP', '1', 1, NULL, '允许访问入口', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('9dbeaf2f250c11eeb21600ffb4e96929', 'sys_app_api', 'enable_access_entry', 'H5', '2', 2, NULL, '允许访问入口', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-27 16:51:47', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('b49733e86d6411eea2cd00ffb4e96929', 'mdm', 'mdm_type', '业务', '2', 2, NULL, '主数据模版类型', '1', 2, NULL, 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('f296b142bbbc11edb70400ffb4e96929', 'sys_app', 'access_mode', 'PC', '1', 1, NULL, '接入方式', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('f29ab72bbbbc11edb70400ffb4e96929', 'sys_app', 'access_mode', '移动URL接入应用', '2', 2, NULL, '接入方式', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('f29f4a25bbbc11edb70400ffb4e96929', 'sys_app', 'access_mode', '本地H5应用', '3', 3, NULL, '接入方式', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('f2a842c1bbbc11edb70400ffb4e96929', 'sys_app', 'access_mode', '本地原生应用', '4', 4, NULL, '接入方式', '1', 4, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('f2ade517bbbc11edb70400ffb4e96929', 'sys_app', 'access_mode', 'PC&移动URL接入应用', '5', 5, NULL, '接入方式', '1', 5, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('f2b5a9d9bbbc11edb70400ffb4e96929', 'sys_app', 'access_mode', 'PC&本地H5应用', '6', 6, NULL, '接入方式', '1', 6, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('f2ba2745bbbc11edb70400ffb4e96929', 'sys_app', 'access_mode', 'PC&本地原生应用', '7', 7, NULL, '接入方式', '1', 7, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('fff2bdcec24111edb70400ffb4e96929', 'sys_version_parameter', 'date_type', '文本', '1', 1, NULL, '数据类型', '1', 1, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('fff83f4cc24111edb70400ffb4e96929', 'sys_version_parameter', 'date_type', '数字', '2', 2, NULL, '数据类型', '1', 2, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
INSERT INTO sys_dictionaryshop_new (id, tab_name, column_name, column_content, column_value, column_num_value, up_id, memo, used_sts, sorts, org_id, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES ('fffe9c23c24111edb70400ffb4e96929', 'sys_version_parameter', 'date_type', '密码', '3', 3, NULL, '数据类型', '1', 3, '1', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-03-06 09:02:36', 'Y');
commit;

View File

@ -0,0 +1,205 @@
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('1', '查询按钮列表分页', 'sysButtonConfigService', 'queryEntityPage', '查询按钮列表分页', '0', 1, '1', '2024-04-09 10:22:06', '1', '2024-05-17 10:42:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('2', '查询按钮列表', 'sysButtonConfigService', 'queryEntity', '查询按钮列表', '0', 2, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('3', '保存按钮', 'sysButtonConfigService', 'saveEntity', '保存按钮', '0', 3, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('4', '获取按钮', 'sysButtonConfigService', 'getEntity', '获取按钮', '0', 4, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('5', '修改按钮', 'sysButtonConfigService', 'updateEntity', '修改按钮', '0', 5, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('6', '删除按钮', 'sysButtonConfigService', 'deleteEntity', '删除按钮', '0', 6, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('7', '查询数据字典列表分页', 'sysDictionaryshopService', 'queryEntityPage', '查询数据字典列表分页', '0', 7, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('8', '查询数据字典列表', 'sysDictionaryshopService', 'queryEntity', '查询数据字典列表', '0', 8, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('9', '登录', 'loginService', 'doLogin', '登录', '0', 9, '1', '2024-04-09 11:03:02', '1', '2024-05-21 10:43:20', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('10', '根据用户id查询菜单树', 'sysMenuConfigService', 'queryTreeById', '根据用户id查询菜单树', '0', 10, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('11', '查询菜单树', 'sysMenuConfigService', 'queryEntityTree', '查询菜单树', '0', 11, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('12', '保存菜单', 'sysMenuConfigService', 'saveEntity', '保存菜单', '0', 12, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('13', '获取菜单', 'sysMenuConfigService', 'getEntity', '获取菜单', '0', 13, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('14', '修改菜单', 'sysMenuConfigService', 'updateEntity', '修改菜单', '0', 14, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('15', '删除菜单', 'sysMenuConfigService', 'deleteEntity', '删除菜单', '0', 15, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('16', '启用停用菜单', 'sysMenuConfigService', 'enableDisableEntity', '启用停用菜单', '0', 16, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('17', '查询组织树', 'sysOrganService', 'queryEntityTree', '查询组织树', '0', 17, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('18', '保存组织', 'sysOrganService', 'saveEntity', '保存组织', '0', 18, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('19', '获取组织', 'sysOrganService', 'getEntity', '获取组织', '0', 19, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('20', '修改组织', 'sysOrganService', 'updateEntity', '修改组织', '0', 20, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('21', '删除组织', 'sysOrganService', 'deleteEntity', '删除组织', '0', 21, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('22', '启用停用组织', 'sysOrganService', 'enableDisableEntity', '启用停用组织', '0', 22, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('23', '查询人员列表分页', 'sysPersonService', 'queryEntityPage', '查询人员列表分页', '0', 23, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('24', '查询人员列表', 'sysPersonService', 'queryEntity', '查询人员列表', '0', 24, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('25', '保存人员', 'sysPersonService', 'saveEntity', '保存人员', '0', 25, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('26', '获取人员', 'sysPersonService', 'getEntity', '获取人员', '0', 26, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('27', '修改人员', 'sysPersonService', 'updateEntity', '修改人员', '0', 27, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('28', '删除人员', 'sysPersonService', 'deleteEntity', '删除人员', '0', 28, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('29', '启用停用人员', 'sysPersonService', 'enableDisableEntity', '启用停用人员', '0', 29, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('30', '查询角色列表分页', 'sysRoleService', 'queryEntityPage', '查询角色列表分页', '0', 30, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('31', '查询角色列表', 'sysRoleService', 'queryEntity', '查询角色列表', '0', 31, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('32', '保存角色', 'sysRoleService', 'saveEntity', '保存角色', '0', 32, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('33', '获取角色', 'sysRoleService', 'getEntity', '获取角色', '0', 33, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('34', '修改角色', 'sysRoleService', 'updateEntity', '修改角色', '0', 34, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('35', '删除角色', 'sysRoleService', 'deleteEntity', '删除角色', '0', 35, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('36', '启用停用角色', 'sysRoleService', 'enableDisableEntity', '启用停用角色', '0', 36, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('37', '查询接口列表分页', 'sysInterfaceService', 'queryEntityPage', '查询接口列表分页', '0', 37, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('38', '查询接口列表', 'sysInterfaceService', 'queryEntity', '查询接口列表', '0', 38, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('39', '保存接口', 'sysInterfaceService', 'saveEntity', '保存接口', '0', 39, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('40', '获取接口', 'sysInterfaceService', 'getEntity', '获取接口', '0', 40, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('41', '修改接口', 'sysInterfaceService', 'updateEntity', '修改接口', '0', 41, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('42', '删除接口', 'sysInterfaceService', 'deleteEntity', '删除接口', '0', 42, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('43', '启用停用接口', 'sysInterfaceService', 'enableDisableEntity', '启用停用接口', '0', 43, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('44', '查询用户列表分页', 'sysUserService', 'queryEntityPage', '查询用户列表分页', '0', 44, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('45', '查询用户列表', 'sysUserService', 'queryEntity', '查询用户列表', '0', 45, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('46', '保存用户', 'sysUserService', 'saveEntity', '保存用户', '0', 46, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('47', '获取用户', 'sysUserService', 'getEntity', '获取用户', '0', 47, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('48', '修改用户', 'sysUserService', 'updateEntity', '修改用户', '0', 48, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('49', '删除用户', 'sysUserService', 'deleteEntity', '删除用户', '0', 49, '1', '2024-04-09 11:03:02', '1', '2024-04-15 09:05:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('50', '启用停用用户', 'sysUserService', 'enableDisableEntity', '启用停用用户', '0', 50, '1', '2024-04-11 09:55:51', '1', '2024-04-11 09:58:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('51', '重置密码', 'sysUserService', 'resetPassword', '重置密码', '0', 51, '1', '2024-04-09 10:22:06', '1', '2024-04-15 09:05:17', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('52', '权限查询', 'sysUserService', 'jurisdiction', '权限查询', '0', 52, '1', '2024-04-09 10:55:19', '1', '2024-04-15 09:06:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('53', '保存权限', 'sysUserService', 'saveJurisdiction', '保存权限', '0', 53, '1', '2024-04-09 11:02:40', '1', '2024-04-09 11:02:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('54', '查询配置的插件参数列表', 'sysPlugArgService', 'queryPlugArg', '查询配置的插件参数列表', '0', 54, '1', '2024-04-09 11:10:01', '1', '2024-04-03 12:59:48', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('55', '保存配置的插件参数列表', 'sysPlugArgService', 'savePlugArg', '保存配置的插件参数列表', '0', 55, '1', '2024-04-09 11:17:22', '1', '2024-03-28 14:56:39', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('56', '修改配置的插件参数列表', 'sysPlugArgService', 'updatePlugArg', '修改配置的插件参数列表', '0', 56, '1', '2024-04-09 11:24:43', '1', '2024-03-22 16:53:30', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('57', '删除配置的插件参数列表', 'sysPlugArgService', 'deletePlugArg', '删除配置的插件参数列表', '0', 57, '1', '2024-04-09 11:32:04', '1', '2024-03-16 18:50:21', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('58', '获取配置的插件参数列表', 'sysPlugArgService', 'getPlugArg', '获取配置的插件参数列表', '0', 58, '1', '2024-04-09 11:39:25', '1', '2024-03-10 20:47:12', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('59', '根据插件ID获取配置的插件参数列表', 'sysPlugArgService', 'getPlugArgByPlugId', '根据插件ID获取配置的插件参数列表', '0', 59, '1', '2024-04-09 11:46:46', '1', '2024-03-04 22:44:03', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('60', '查询集成前台任务列表', 'sysIntegratedForegroundTaskService', 'queryIntegratedForegroundTask', '查询集成前台任务列表', '0', 60, '1', '2024-04-09 11:54:07', '1', '2024-02-28 00:40:54', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('61', '保存集成前台任务', 'sysIntegratedForegroundTaskService', 'saveIntegratedForegroundTask', '保存集成前台任务', '0', 61, '1', '2024-04-09 12:01:28', '1', '2024-02-22 02:37:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('62', '修改集成前台任务', 'sysIntegratedForegroundTaskService', 'updateIntegratedForegroundTask', '修改集成前台任务', '0', 62, '1', '2024-04-09 12:08:49', '1', '2024-02-16 04:34:36', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('63', '删除集成前台任务', 'sysIntegratedForegroundTaskService', 'deleteIntegratedForegroundTask', '删除集成前台任务', '0', 63, '1', '2024-04-09 12:16:10', '1', '2024-02-10 06:31:27', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('64', '获取集成前台任务', 'sysIntegratedForegroundTaskService', 'getIntegratedForegroundTask', '获取集成前台任务', '0', 64, '1', '2024-04-09 12:23:31', '1', '2024-02-04 08:28:18', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('65', '查询所有插件数据', 'pluginService', 'queryPlugins', '查询所有插件数据', '0', 65, '1', '2024-04-09 12:30:52', '1', '2024-01-29 10:25:09', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('66', '根据插件类型查询插件数据', 'pluginService', 'queryPluginsByType', '根据插件类型查询插件数据', '0', 66, '1', '2024-04-09 12:38:13', '1', '2024-01-23 12:22:00', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('67', '根据插件ID查询插件数据', 'pluginService', 'queryPluginById', '根据插件ID查询插件数据', '0', 67, '1', '2024-04-09 12:45:34', '1', '2024-01-17 14:18:51', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('68', '根据插件ID执行相关业务逻辑方法', 'pluginService', 'executeBusinessPluginById', '根据插件ID执行相关业务逻辑方法', '0', 68, '1', '2024-04-09 12:52:55', '1', '2024-01-11 16:15:42', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('69', '查询数据字典', 'generalServiceImpl', 'selectDictionaryshop', '查询数据字典', '0', 69, '1', '2024-04-09 13:00:16', '1', '2024-01-05 18:12:33', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('70', '查询应用列表分页', 'sysApplicationService', 'queryApp', '查询应用列表分页', '0', 70, '1', '2024-04-09 13:07:37', '1', '2023-12-30 20:09:24', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('71', '创建应用保存接口', 'sysApplicationService', 'saveApp', '创建应用保存接口', '0', 71, '1', '2024-04-09 13:14:58', '1', '2023-12-24 22:06:15', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('72', '应用复制查询接口', 'sysApplicationService', 'getCopyApp', '应用复制查询接口', '0', 72, '1', '2024-04-09 13:22:19', '1', '2023-12-19 00:03:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('73', '应用复制接口保存接口', 'sysApplicationService', 'copyApp', '应用复制接口保存接口', '0', 73, '1', '2024-04-09 13:29:40', '1', '2023-12-13 01:59:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('74', '应用根据ID查询接口', 'sysApplicationService', 'getApp', '应用根据ID查询接口', '0', 74, '1', '2024-04-09 13:37:01', '1', '2023-12-07 03:56:48', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('75', '应用启用停用接口', 'sysApplicationService', 'enableOrDisableApp', '应用启用停用接口', '0', 75, '1', '2024-04-09 13:44:22', '1', '2023-12-01 05:53:39', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('76', '应用修改接口', 'sysApplicationService', 'updateApp', '应用修改接口', '0', 76, '1', '2024-04-09 13:51:43', '1', '2023-11-25 07:50:30', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('77', '数据源测试接口', 'sysApplicationService', 'testDatabase', '数据源测试接口', '0', 77, '1', '2024-04-09 13:59:04', '1', '2023-11-19 09:47:21', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('78', '应用目录查询接口', 'sysApplicationService', 'queryAppApiType', '应用目录查询接口', '0', 78, '1', '2024-04-09 14:06:25', '1', '2023-11-13 11:44:12', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('79', '应用目录保存接口', 'sysApplicationService', 'saveAppApiType', '应用目录保存接口', '0', 79, '1', '2024-04-09 14:13:46', '1', '2023-11-07 13:41:03', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('80', '应用目录修改接口', 'sysApplicationService', 'updateAppApiType', '应用目录修改接口', '0', 80, '1', '2024-04-09 14:21:07', '1', '2023-11-01 15:37:54', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('81', '应用目录删除接口', 'sysApplicationService', 'deleteAppApiType', '应用目录删除接口', '0', 81, '1', '2024-04-09 14:28:28', '1', '2023-10-26 17:34:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('82', '根据应用、目录、查询条件查询api接口', 'sysApplicationService', 'queryAppApi', '根据应用、目录、查询条件查询api接口', '0', 82, '1', '2024-04-09 14:35:49', '1', '2023-10-20 19:31:36', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('83', '查询应用api接口', 'sysApplicationService', 'getAppApi', '查询应用api接口', '0', 83, '1', '2024-04-09 14:43:10', '1', '2023-10-14 21:28:27', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('84', '查询调试参数接口', 'sysApplicationService', 'debugAppApi', '查询调试参数接口', '0', 84, '1', '2024-04-09 14:50:31', '1', '2023-10-08 23:25:18', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('85', '查询接口日志', 'sysApplicationService', 'queryAppApiLog', '查询接口日志', '0', 85, '1', '2024-04-09 14:57:52', '1', '2023-10-03 01:22:09', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('86', '共享保存接口', 'sysApplicationService', 'saveApiShare', '共享保存接口', '0', 86, '1', '2024-04-09 15:05:13', '1', '2023-09-27 03:19:00', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('87', 'api删除接口', 'sysApplicationService', 'deleteApi', 'api删除接口', '0', 87, '1', '2024-04-09 15:12:34', '1', '2023-09-21 05:15:51', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('88', 'api新增接口', 'sysApplicationService', 'saveApi', 'api新增接口', '0', 88, '1', '2024-04-09 15:19:55', '1', '2023-09-15 07:12:42', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('89', 'api修改接口', 'sysApplicationService', 'updateApi', 'api修改接口', '0', 89, '1', '2024-04-09 15:27:16', '1', '2023-09-09 09:09:33', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('90', '三方调用系统查询接口', 'sysApplicationService', 'queryAppApiAuth', '三方调用系统查询接口', '0', 90, '1', '2024-04-09 15:34:37', '1', '2023-09-03 11:06:24', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('91', '三方调用系统保存接口', 'sysApplicationService', 'saveAppApiAuth', '三方调用系统保存接口', '0', 91, '1', '2024-04-09 15:41:58', '1', '2023-08-28 13:03:15', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('92', 'api关联三方系统保存接口', 'sysApplicationService', 'saveAppApiAuthDetail', 'api关联三方系统保存接口', '0', 92, '1', '2024-04-09 15:49:19', '1', '2023-08-22 15:00:06', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('93', '查询api所有数据', 'sysApplicationService', 'queryAppAll', '查询api所有数据', '0', 93, '1', '2024-04-09 15:56:40', '1', '2023-08-16 16:56:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('94', '插件查询接口', 'sysApplicationService', 'queryAppPlugin', '插件查询接口', '0', 94, '1', '2024-04-09 16:04:01', '1', '2023-08-10 18:53:48', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('95', '插件修改接口', 'sysApplicationService', 'saveAppPlugin', '插件修改接口', '0', 95, '1', '2024-04-09 16:11:22', '1', '2023-08-04 20:50:39', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('96', '插件修改接口', 'sysApplicationService', 'updateAppPlugin', '插件修改接口', '0', 96, '1', '2024-04-09 16:18:43', '1', '2023-07-29 22:47:30', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('97', '插件删除接口', 'sysApplicationService', 'deleteAppPlugin', '插件删除接口', '0', 97, '1', '2024-04-09 16:26:04', '1', '2023-07-24 00:44:21', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('98', '获取插件接口', 'sysApplicationService', 'getAppPlugin', '获取插件接口', '0', 98, '1', '2024-04-09 16:33:25', '1', '2023-07-18 02:41:12', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('99', '插件启用停用接口', 'sysApplicationService', 'enableOrDisableAppPlugin', '插件启用停用接口', '0', 99, '1', '2024-04-09 16:40:46', '1', '2023-07-12 04:38:03', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('100', '应用接口启用停用接口', 'sysApplicationService', 'enableOrDisableAppApi', '应用接口启用停用接口', '0', 100, '1', '2024-04-09 16:48:07', '1', '2023-07-06 06:34:54', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('101', '应用数据源启用停用接口', 'sysApplicationService', 'enableOrDisableAppDatasource', '应用数据源启用停用接口', '0', 101, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('102', '调试接口', 'appApiService', 'debugApi', '调试接口', '0', 102, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('103', '获取用户模版数据', 'optionService', 'queryUserTemplate', '获取用户模版数据', '0', 103, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('104', '获取所有模版数据', 'optionService', 'queryAllTemplate', '获取所有模版数据', '0', 104, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('105', '获取模版所有字段', 'optionService', 'queryAllTemplateFields', '获取模版所有字段', '0', 105, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('106', '获取用户模版字段', 'optionService', 'queryUserTemplateFields', '获取用户模版字段', '0', 106, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('107', '获取用户模版按钮', 'optionService', 'queryUserTemplateButtons', '获取用户模版按钮', '0', 107, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('108', '获取模版下的数据(不分页)', 'optionService', 'queryAllData', '获取模版下的数据(不分页)', '0', 108, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('109', '获取模版下的数据(分页)', 'optionService', 'queryPageData', '获取模版下的数据(分页)', '0', 109, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('110', '添加模版以及模版类型数据结构', 'optionService', 'addTemplateAll', '添加模版以及模版类型数据结构', '0', 110, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('111', '获取模版对应service的某条数据', 'optionService', 'queryTemplateServiceData', '获取模版对应service的某条数据', '0', 111, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('112', '新增对应service的数据', 'optionService', 'addTemplateServiceData', '新增对应service的数据', '0', 112, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('113', '修改对应service的数据', 'optionService', 'updateTemplateServiceData', '修改对应service的数据', '0', 113, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('114', '删除对应service的数据', 'optionService', 'deleteTemplateServiceData', '删除对应service的数据', '0', 114, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('115', '查询数据list 或者 分页)', 'optionService', 'queryTemplateData', '查询数据list 或者 分页)', '0', 115, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('116', '查询数据(树结构)', 'optionService', 'queryTemplateTreeData', '查询数据(树结构)', '0', 116, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('117', '新增数据', 'optionService', 'addMasterData', '新增数据', '0', 117, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('118', '新增多数据', 'optionService', 'addMasterDataList', '新增多数据', '0', 118, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('119', '添加模版以及模版类型数据结构', 'optionService', 'testTemplateAll', '添加模版以及模版类型数据结构', '0', 119, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('120', '对照', 'optionService', 'controlData', '对照', '0', 120, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('121', '主数据列表查询接口分页', 'mdmService', 'queryMdmPage', '主数据列表查询接口分页', '0', 121, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('2989c8bb9714400a9e3a395f33edf691', '小程序应用表查询', 'AppService', 'getWrapper', '测试mybatis', '0', 121, '1', '2024-04-25 09:57:04', '1', '2024-04-25 09:57:04', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('122', '主数据列表查询接口列表', 'mdmService', 'queryMdmList', '主数据列表查询接口列表', '0', 122, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('5df72202229d4bf69b7974a8ec9b03bf', '查询应用', 'appServiceImpl', 'queryDemo', NULL, '0', 122, '1', '2024-04-29 15:45:00', '1', '2024-04-29 16:06:15', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('123', '主数据基本信息', 'mdmService', 'queryMdmModule', '主数据基本信息', '0', 123, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('9dc3d6efdc114aa99a7e29cd9cd5fc15', '查询应用列表', 'sysApplicationService', 'queryEntity', '查询应用列表', '0', 123, '1', '2024-05-06 16:11:55', '1', '2024-05-06 16:11:55', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('124', '主数据基本信息保存', 'mdmService', 'doSaveMdmModule', '主数据基本信息保存', '0', 124, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('969dcbd163d0489998a6aed93fbf9d6a', '查询应用插件列表', 'sysApplicationPluginService', 'queryEntity', '查询应用插件列表', '0', 124, '1', '2024-05-06 16:12:15', '1', '2024-05-06 16:12:15', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('125', '主数据设置查询数据源', 'mdmService', 'queryMdmModuleDb', '主数据设置查询数据源', '0', 125, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('bb3de6cbb36f433ea67e41af02360a8a', '查询任务列表分页', 'integrationTaskService', 'queryEntityPage', '查询任务列表分页', '0', 125, '1', '2024-05-07 09:48:20', '1', '2024-05-07 09:48:20', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('126', '主数据设置查询数据源的服务', 'mdmService', 'queryMdmModuleServer', '主数据设置查询数据源的服务', '0', 126, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('19a723f1c0574ea6a2ed4b4f3f05b96e', '查询任务列表', 'integrationTaskService', 'queryEntity', '查询任务列表', '0', 126, '1', '2024-05-07 09:48:45', '1', '2024-05-07 09:48:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('127', '主数据设置查询数据源字段的服务', 'mdmService', 'queryMdmModuleServerFiled', '主数据设置查询数据源字段的服务', '0', 127, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('e6136d49423a4ff2bcc73e225de06922', '保存任务', 'integrationTaskService', 'saveEntity', '保存任务', '0', 127, '1', '2024-05-07 09:49:01', '1', '2024-05-07 09:49:01', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('128', '主数据设置查询主表字段', 'mdmService', 'queryMdmModuleServerMainFiled', '主数据设置查询主表字段', '0', 128, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('144d72d02ac4407aaba287cc2b4e9c94', '获取任务', 'integrationTaskService', 'getEntity', '获取任务', '0', 128, '1', '2024-05-07 09:49:18', '1', '2024-05-07 09:49:18', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('129', '主数据设置保存数据源', 'mdmService', 'saveMdmModuleDb', '主数据设置保存数据源', '0', 129, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('851c4f03412f454d9d1f85cd6c6c2259', '修改任务', 'integrationTaskService', 'updateEntity', '修改任务', '0', 129, '1', '2024-05-07 09:49:34', '1', '2024-05-07 09:49:34', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('130', '主数据设置查询显示信息', 'mdmService', 'queryMdmModuleView', '主数据设置查询显示信息', '0', 130, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('9a86aae825a6476c836ae013d1ca139b', '删除任务', 'integrationTaskService', 'deleteEntity', '删除任务', '0', 130, '1', '2024-05-07 09:49:48', '1', '2024-05-07 09:49:48', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('131', '主数据设置修改显示信息', 'mdmService', 'doSaveMdmModuleView', '主数据设置修改显示信息', '0', 131, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('8137afb97e6848b59c3a7a482eed02d0', '启用停用任务', 'integrationTaskService', 'enableDisableEntity', '启用停用任务', '0', 131, '1', '2024-05-07 09:50:05', '1', '2024-05-07 09:50:05', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('132', '主数据设置查询权限配置', 'mdmService', 'queryMdmModuleRule', '主数据设置查询权限配置', '0', 132, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('8b83433c54ad4ab88caacfed08e48c4f', '查询任务实例列表分页', 'integrationTaskLivingService', 'queryEntityPage', '查询任务实例列表分页', '0', 132, '1', '2024-05-07 10:57:41', '1', '2024-05-07 10:57:41', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('133', '主数据设置保存权限配置', 'mdmService', 'doSaveMdmModuleRule', '主数据设置保存权限配置', '0', 133, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('451c63d99ed144cea18878a6539379e4', '查询任务日志列表分页', 'integrationTaskLogService', 'queryEntityPage', '查询任务日志列表分页', '0', 133, '1', '2024-05-07 10:58:00', '1', '2024-05-15 10:14:35', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('134', '主数据设置查询分发设置', 'mdmService', 'queryMdmModuleDistribute', '主数据设置查询分发设置', '0', 134, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('34c0191710334ba896989d8f6af41d52', '获取任务日志', 'integrationTaskLogService', 'getEntity', '获取任务日志', '0', 134, '1', '2024-05-08 16:20:49', '1', '2024-05-15 10:15:03', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('135', '主数据设置保存分发设置', 'mdmService', 'doSaveMdmModuleDistribute', '主数据设置保存分发设置', '0', 135, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('f2b0c44895ba40cca0dd0f85a8ee96a0', '获取任务实例', 'integrationTaskLivingService', 'getEntity', '获取任务实例', '0', 135, '1', '2024-05-08 16:21:08', '1', '2024-05-08 16:21:08', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('136', '主数据列表显示 树、查询条件、列表字段、按钮', 'mdmService', 'queryMdmShow', '主数据列表显示 树、查询条件、列表字段、按钮', '0', 136, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('137', '主数据查询所有字段', 'mdmService', 'queryMdmShowAll', '主数据查询所有字段', '0', 137, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('138', '查询模版数据', 'mdmService', 'queryTemplateData', '查询模版数据', '0', 138, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('139', '主数据列表显示 业务数据', 'mdmService', 'queryMdmShowData', '主数据列表显示 业务数据', '0', 139, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('140', '主数据业务数据', 'mdmService', 'queryMdmShowDistribute', '主数据业务数据', '0', 140, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('141', '主数据业务数据树结构', 'mdmService', 'queryMdmShowTreeData', '主数据业务数据树结构', '0', 141, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('142', '主数据业务数据树数据', 'mdmService', 'queryMdmOptionData', '主数据业务数据树数据', '0', 142, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('143', '主数据详情 区分类型 新增、修改、查看', 'mdmService', 'queryMdmShowDetails', '主数据详情 区分类型 新增、修改、查看', '0', 143, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('144', '主数据详情数据 区分类型 新增、修改、查看', 'mdmService', 'queryMdmShowDetailsData', '主数据详情数据 区分类型 新增、修改、查看', '0', 144, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('145', '主数据详情数据修改', 'mdmService', 'updateMdmShowDetailsData', '主数据详情数据修改', '0', 145, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('146', '主数据详情数据新增', 'mdmService', 'saveMdmShowDetailsData', '主数据详情数据新增', '0', 146, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('147', '主数据删除业务数据', 'mdmService', 'deleteMdmShowDetailsData', '主数据删除业务数据', '0', 147, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('148', '主数据处理分发数据', 'mdmService', 'doMdmDistribute', '主数据处理分发数据', '0', 148, '1', '2024-04-09 16:55:28', '1', '2023-06-30 08:31:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('8362f166ae9948beafd16c63768972a4', '数据源查询', 'sysDataSourceService', 'queryPage', '数据源查询', '0', 149, '1', '2024-05-13 11:17:01', '1', '2024-05-13 11:17:01', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('167e8870f7b84b5d94555f10014d8b8e', '数据源新增', 'sysDataSourceService', 'addEntity', '数据源新增', '0', 150, '1', '2024-05-13 11:25:33', '1', '2024-05-13 11:25:33', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('1c30ec9075ed4d71af86333c00b795bb', '修改数据源', 'sysDataSourceService', 'editEntity', '修改数据源', '0', 151, '1', '2024-05-13 11:28:14', '1', '2024-05-13 11:28:14', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('13e10620a6574addbd8e07e2af088684', '删除数据源', 'sysDataSourceService', 'deleteEntity', '删除数据源', '0', 152, '1', '2024-05-13 11:28:45', '1', '2024-05-13 11:28:45', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('67f3bafa57d94afa92bb56bffadc946f', '获取数据源', 'sysDataSourceService', 'queryEntity', '获取数据源', '0', 153, '1', '2024-05-13 11:29:16', '1', '2024-05-13 11:29:16', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('49f5a859828648f18738ba08192bff01', '首页异常日志', 'homeService', 'appErrorNum', '首页异常日志', '0', 154, '1', '2024-05-13 16:14:05', '1', '2024-05-13 16:14:05', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('5f246aac13a746d7b90ff691b785d155', '首页接口运行情况', 'homeService', 'appApiNum', '首页接口运行情况', '0', 155, '1', '2024-05-13 16:14:30', '1', '2024-05-13 16:14:30', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('fa9084830bc648839455c04b1602f9e2', '首页任务运行情况', 'homeService', 'taskNum', '首页任务运行情况', '0', 156, '1', '2024-05-13 16:14:54', '1', '2024-05-13 16:14:54', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('0797fecc12614587bd87575eefe5c583', '首页数据接入', 'homeService', 'sevenNum', '首页数据接入', '0', 157, '1', '2024-05-13 16:15:14', '1', '2024-05-13 16:15:14', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('e768febaa23b4c7094bb595f4e5b9cb1', '查询应用api列表', 'sysApplicationApiService', 'queryEntity', '查询应用api列表', '0', 158, '1', '2024-05-14 16:58:30', '1', '2024-05-14 16:58:30', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('430c31e9d2ef44e790eaaefe3b29d999', '日志功能测试', 'integrationTaskLivingDetailsService', 'testLog', NULL, '0', 159, '1', '2024-05-15 15:02:52', '1', '2024-05-15 15:02:52', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('fc2d958b759a4dfea5a2522f7497aa9a', '分页查询集成任务日志明细', 'integrationTaskLivingDetailsService', 'queryPage', '分页查询集成任务日志明细', '0', 160, '1', '2024-05-16 11:18:46', '1', '2024-05-16 11:18:46', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('abba8f24fe4e461e90c407a777b7a3bf', '获取集成任务日志明细', 'integrationTaskLivingDetailsService', 'queryEntity', '获取集成任务日志明细', '0', 161, '1', '2024-05-16 11:19:09', '1', '2024-05-16 11:19:09', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('1ee6b37f4ab1486a8707a45180598615', '集成任务日志明细批量推送', 'integrationTaskLivingDetailsService', 'batchPush', '集成任务日志明细批量推送', '0', 162, '1', '2024-05-16 11:19:42', '1', '2024-05-16 11:19:42', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('6651bbe8919a46c4a7cc958f60a86f16', '集成任务日志明细重新推送', 'integrationTaskLivingDetailsService', 'repush', '集成任务日志明细重新推送', '0', 163, '1', '2024-05-16 11:20:08', '1', '2024-05-16 11:20:08', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('ee68d9a9df3d4f409a622cbc87185326', '集成任务日志明细手工处理', 'integrationTaskLivingDetailsService', 'manualProcessing', '集成任务日志明细手工处理', '0', 164, '1', '2024-05-16 11:20:33', '1', '2024-05-16 11:20:33', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('dfe5389ad5b84a1c9ee43d4348ad29d3', '集成任务日志明细删除', 'integrationTaskLivingDetailsService', 'deleteEntity', '集成任务日志明细删除', '0', 165, '1', '2024-05-16 11:20:58', '1', '2024-05-16 11:20:58', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('a03ec723c8164286abd26b67e775715c', '获取用户菜单按钮', 'sysButtonConfigService', 'getUserButton', NULL, '0', 166, '1', '2024-05-16 14:13:19', '1', '2024-05-16 14:13:19', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('77f51f10041a4334b3ad4f2dbfc048d6', '查询应用插件列表和api', 'sysApplicationService', 'queryPlugAndApi', NULL, '0', 167, '1', '2024-05-16 14:13:53', '1', '2024-05-16 14:13:53', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('c1c12567d813423593a3523fdab7000d', 'groovy执行脚本', 'groovyIntegrationService', 'groovyScriptExecution', 'groovy执行脚本', '0', 168, '1', '2024-05-16 13:12:56', '1', '2024-05-16 13:12:56', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('f0c91a270bbd42b0bd2575eeba327f90', '查询报表分类树', 'reportClassifyService', 'queryEntityTree', '查询报表分类树', '0', 169, '1', '2024-05-21 16:40:07', '1', '2024-05-21 16:40:52', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('c4ab68b30321484ab1f710284c6e76fa', '保存报表分类', 'reportClassifyService', 'saveEntity', '保存报表分类', '0', 170, '1', '2024-05-21 16:40:39', '1', '2024-05-21 16:40:39', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('9681159fa0114c57b678907c4ac99894', '获取报表分类', 'reportClassifyService', 'getEntity', '获取报表分类', '0', 171, '1', '2024-05-21 16:42:10', '1', '2024-05-21 16:42:10', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('bb715450cbf247d990fdd8d74068277f', '修改报表分类', 'reportClassifyService', 'updateEntity', '修改报表分类', '0', 172, '1', '2024-05-21 16:42:37', '1', '2024-05-21 16:42:37', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('0ca7dc7ebab64407b045785c7fce2dc1', '删除报表分类', 'reportClassifyService', 'deleteEntity', '删除报表分类', '0', 173, '1', '2024-05-21 16:42:57', '1', '2024-05-21 16:42:57', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('67a3b788649249f0b567d0ba328700d7', '查询报表管理列表分页', 'reportManageService', 'queryEntityPage', '查询报表管理列表分页', '0', 174, '1', '2024-05-21 16:45:48', '1', '2024-05-21 16:45:48', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('fffd8a61e1cf4336bf157b5257e33978', '查询报表管理列表', 'reportManageService', 'queryEntity', '查询报表管理列表', '0', 175, '1', '2024-05-21 16:46:07', '1', '2024-05-21 16:46:07', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('d8152a56838f4cb99798d737ac0c8b66', '保存报表管理', 'reportManageService', 'saveEntity', '保存报表管理', '0', 176, '1', '2024-05-21 16:46:25', '1', '2024-05-21 16:46:25', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('04b56cf991114d06931a65f48f38cebc', '查询未配置的报表', 'reportManageService', 'queryReport', '查询未配置的报表', '0', 177, '1', '2024-05-21 16:46:40', '1', '2024-05-21 16:46:40', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('f9a3503bfbc04910a9087a884607c85c', '查询单个报表', 'reportManageService', 'queryReportEntity', '查询单个报表', '0', 178, '1', '2024-05-21 16:46:54', '1', '2024-05-21 16:46:54', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('d5b636e1fa99449fae1c2b53747ebd11', '获取报表管理', 'reportManageService', 'getEntity', '获取报表管理', '0', 179, '1', '2024-05-21 16:47:08', '1', '2024-05-21 16:47:08', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('946ecfec68ac4668906410013c65b6cc', '修改报表管理', 'reportManageService', 'updateEntity', '修改报表管理', '0', 180, '1', '2024-05-21 16:47:22', '1', '2024-05-21 16:47:22', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('00e0a6e632674d6db2d92aca31ff4f41', '删除报表管理', 'reportManageService', 'deleteEntity', '删除报表管理', '0', 181, '1', '2024-05-21 16:47:35', '1', '2024-05-21 16:47:35', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('f839a76ac2964901b5b2327bb59d51d2', '启用停用报表管理', 'reportManageService', 'enableDisableEntity', '启用停用报表管理', '0', 182, '1', '2024-05-21 16:47:50', '1', '2024-05-21 16:47:50', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('9aaf70c8a3c048d882c83a1a0f2efc08', '报表管理权限查询', 'reportManageService', 'jurisdiction', '报表管理权限查询', '0', 183, '1', '2024-05-21 16:48:04', '1', '2024-05-21 16:48:04', 'Y', '0', '0');
INSERT INTO sys_interface (id, name, bean_name, interface_name, remark, state, sorts, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id) VALUES ('b025b0059ae842f18ba11a88cbbaa817', '保存报表管理权限查询', 'reportManageService', 'saveJurisdiction', '保存报表管理权限查询', '0', 184, '1', '2024-05-21 16:48:18', '1', '2024-05-21 16:48:18', 'Y', '0', '0');
commit;

View File

@ -0,0 +1,176 @@
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-9028591701143699270, '微信图片_20230711162235.png', '-1716870149000049659', 'image/png', 2042683, '附件备注', '/application/2024-05-20/-1716870149000049659', '1', '2024-05-20 10:24:37', '1', '2024-05-20 10:24:37', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8963657365933964266, 'WX20231104-111803.png', '-3725885543519271992', 'image/png', 670741, '附件备注', '/application/2023-11-13/-3725885543519271992', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-11-13 10:22:41', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-11-13 10:22:41', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8916277899496502779, '用户信息.png', '-2774151408323049069', 'image/png', 18646, '附件备注', '/application/2024-07-04/-2774151408323049069', '1', '2024-07-04 15:18:22', '1', '2024-07-04 15:18:22', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8900206555643821885, '用户.png', '-6418779846063341546', 'image/png', 16864, '附件备注', '/application/2024-07-04/-6418779846063341546', '1', '2024-07-04 10:08:41', '1', '2024-07-04 10:08:41', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8889765684097759906, '测.png', '5475249368892589950', 'image/png', 1075043, '附件备注', '/application/2024-05-20/5475249368892589950', '1', '2024-05-20 10:25:55', '1', '2024-05-20 10:25:55', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8756235826150290747, 'pexels-eberhard-grossgasteiger-2310713.jpg', '2014412763827030442', 'image/jpeg', 5144923, '附件备注', '/application/2024-07-01/2014412763827030442', '1', '2024-07-01 11:00:44', '1', '2024-07-01 11:00:44', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8553083975233485954, '集成任务日志明细.png', '-2364009076014690548', 'image/png', 15862, '附件备注', '/application/2024-07-04/-2364009076014690548', '1', '2024-07-04 13:37:58', '1', '2024-07-04 13:37:58', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8431973904171840168, 'tx.jpeg', '-1914210030975759885', 'image/jpeg', 104597, '附件备注', '/application/2023-10-10/-1914210030975759885', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:29:31', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:29:31', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8312733178249851794, '角色管理.png', '2100416206383891796', 'image/png', 26813, '附件备注', '/application/2024-07-04/2100416206383891796', '1', '2024-07-04 09:53:32', '1', '2024-07-04 09:53:32', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8066173198245605756, '测.png', '-427709981150330669', 'image/png', 1075043, '附件备注', '/application/2024-05-20/-427709981150330669', '1', '2024-05-20 10:25:44', '1', '2024-05-20 10:25:44', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8012295301722192918, 'letTopBirthday.png', '-8472250700410960934', 'image/png', 31541, '附件备注', '/application/2024-07-01/-8472250700410960934', '1', '2024-07-01 17:10:50', '1', '2024-07-01 17:10:50', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-8011365417535846898, '1697783154483.jpg', '-296442655966605720', 'image/jpeg', 11566, '附件备注', '/application/2023-10-20/-296442655966605720', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 14:28:24', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 14:28:24', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-7777602241705521719, '人员管理.png', '-1451414582448599151', 'image/png', 21607, '附件备注', '/application/2024-07-04/-1451414582448599151', '1', '2024-07-04 15:18:09', '1', '2024-07-04 15:18:09', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-7421991978796695038, '数智中台.png', '3828144160056557733', 'image/png', 14687, '附件备注', '/application/2024-05-17/3828144160056557733', '1', '2024-05-17 09:16:59', '1', '2024-05-17 09:16:59', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-7394899086042182241, '测.png', '-4165217650929611535', 'image/png', 1075043, '附件备注', '/application/2024-05-20/-4165217650929611535', '1', '2024-05-20 10:26:46', '1', '2024-05-20 10:26:46', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-7320046872123126758, '角色权限.png', '-52160981938060209', 'image/png', 24757, '附件备注', '/application/2024-07-04/-52160981938060209', '1', '2024-07-04 09:53:16', '1', '2024-07-04 09:53:16', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-7067687854120678697, '人员管理.png', '3012910374587154744', 'image/png', 21156, '附件备注', '/application/2024-07-04/3012910374587154744', '1', '2024-07-04 09:54:03', '1', '2024-07-04 09:54:03', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6728207138358804350, '项目.png', '8145367269517640483', 'image/png', 15064, '附件备注', '/application/2024-07-04/8145367269517640483', '1', '2024-07-04 14:52:53', '1', '2024-07-04 14:52:53', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6607636247925469458, '客户.png', '2795693969328197275', 'image/png', 22203, '附件备注', '/application/2024-07-04/2795693969328197275', '1', '2024-07-04 10:08:33', '1', '2024-07-04 10:08:33', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6595842760771877276, 'WX20231104-111803.png', '-970824487384693464', 'image/png', 670741, '附件备注', '/application/2023-11-13/-970824487384693464', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-11-13 10:22:04', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-11-13 10:22:04', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6582407112425845183, '1717571713476.jpg', '7028702057226059936', 'image/jpeg', 310875, '附件备注', '/application/2024-06-05/7028702057226059936', '1', '2024-06-05 15:15:20', '1', '2024-06-05 15:15:20', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6507264941533674649, 'tx.jpeg', '-5712054625108407266', 'image/jpeg', 104597, '附件备注', '/application/2023-10-11/-5712054625108407266', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:08', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:08', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6466003369385636582, 'Snipaste_2024-07-09_15-10-51.png', '-8581923183000072403', 'image/png', 6467, '附件备注', '/application/2024-07-09/-8581923183000072403', '1', '2024-07-09 15:16:07', '1', '2024-07-09 15:16:07', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6373865527333796779, 'u=2438281177,2644384516&fm=253&fmt=auto&app=138&f=JPEG.webp', '-5628704025443218317', 'image/webp', 4672, '附件备注', '/application/2024-06-26/-5628704025443218317', '1', '2024-06-26 10:32:12', '1', '2024-06-26 10:32:12', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6278215835028403882, '人员.png', '-640210498345284795', 'image/png', 15719, '附件备注', '/application/2024-07-04/-640210498345284795', '1', '2024-07-04 14:52:44', '1', '2024-07-04 14:52:44', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6129791830182441528, '按钮管理.png', '8115743323225670013', 'image/png', 19656, '附件备注', '/application/2024-07-04/8115743323225670013', '1', '2024-07-04 09:52:00', '1', '2024-07-04 09:52:00', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-6034541283670537998, '集成任务部署.png', '-8426188338952584688', 'image/png', 15741, '附件备注', '/application/2024-07-04/-8426188338952584688', '1', '2024-07-04 15:25:49', '1', '2024-07-04 15:25:49', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5974215045453627195, 'pexels-fabian-wiktor-994605.jpg', '-668056775135639306', 'image/jpeg', 1316625, '附件备注', '/application/2024-07-01/-668056775135639306', '1', '2024-07-01 11:01:34', '1', '2024-07-01 11:01:34', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5887282136279333393, '1697783154483.jpg', '-3943840455457160993', 'image/jpeg', 11566, '附件备注', '/application/2023-10-20/-3943840455457160993', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 14:29:10', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 14:29:10', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5757129693515397700, '语雀.png', '-4440574505564680542', 'image/png', 1608, '附件备注', '/application/2023-10-10/-4440574505564680542', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:41:54', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:41:54', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5527727900472816367, '任务设置.png', '-8355486178452354475', 'image/png', 19825, '附件备注', '/application/2024-07-04/-8355486178452354475', '1', '2024-07-04 13:38:56', '1', '2024-07-04 13:38:56', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5478656885444426000, '测.png', '9216496142087900603', 'image/png', 1075043, '附件备注', '/application/2024-05-20/9216496142087900603', '1', '2024-05-20 10:30:15', '1', '2024-05-20 10:30:15', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5456979310443085760, '1.png', '-5629423210967973314', 'image/png', 29, '附件备注', '/application/2024-03-27/-5629423210967973314', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2024-03-27 10:33:18', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2024-03-27 10:33:18', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5343279879697907238, '接口日志.png', '-4644571152424745044', 'image/png', 13037, '附件备注', '/application/2024-07-04/-4644571152424745044', '1', '2024-07-04 10:28:44', '1', '2024-07-04 10:28:44', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5299758930842399762, 'pexels-fabian-wiktor-994605.jpg', '1940059209781167304', 'image/jpeg', 1316625, '附件备注', '/application/2024-07-01/1940059209781167304', '1', '2024-07-01 11:13:52', '1', '2024-07-01 11:13:52', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5166190851147346438, '纷享销客.png', '-7156947303782136161', 'image/png', 34866, '附件备注', '/application/2024-05-17/-7156947303782136161', '1', '2024-05-17 09:17:38', '1', '2024-05-17 09:17:38', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-5137982092052510973, 'pexels-roberto-nickson-2775196.jpg', '-669305003264161029', 'image/jpeg', 1727046, '附件备注', '/application/2024-07-01/-669305003264161029', '1', '2024-07-01 11:12:25', '1', '2024-07-01 11:12:25', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-4989079828753399804, '角色管理.png', '8419739852180245021', 'image/png', 20694, '附件备注', '/application/2024-07-04/8419739852180245021', '1', '2024-07-04 15:18:01', '1', '2024-07-04 15:18:01', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-4756804544105066674, '分贝通.jpg', '8814351165973218085', 'image/jpeg', 78328, '附件备注', '/application/2024-05-17/8814351165973218085', '1', '2024-05-17 09:38:24', '1', '2024-05-17 09:38:24', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-4732483675668853459, '供应商.png', '-3785761746158793332', 'image/png', 12518, '附件备注', '/application/2024-07-10/-3785761746158793332', '1', '2024-07-10 14:31:15', '1', '2024-07-10 14:31:15', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-4566907239285701244, '组织机构.png', '-1122033172705621084', 'image/png', 13778, '附件备注', '/application/2024-07-04/-1122033172705621084', '1', '2024-07-04 09:54:53', '1', '2024-07-04 09:54:53', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-4458116979128777160, 'pexels-eberhard-grossgasteiger-844297.jpg', '-7272840290138766214', 'image/jpeg', 298662, '附件备注', '/application/2024-07-01/-7272840290138766214', '1', '2024-07-01 11:59:14', '1', '2024-07-01 11:59:14', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-4330406226434243593, '旺店通.png', '3230899200607290', 'image/png', 142583, '附件备注', '/application/2024-05-17/3230899200607290', '1', '2024-05-17 09:17:11', '1', '2024-05-17 09:17:11', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-4201216971048270045, '新建文本文档.txt', '-7497692394140712841', 'text/plain', 10, '附件备注', '/application/2024-05-20/-7497692394140712841', '1', '2024-05-20 10:32:08', '1', '2024-05-20 10:32:08', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-4113861618581551165, '测试主数据流程.png', '5246194158391411612', 'image/png', 17126, '附件备注', '/application/2024-07-04/5246194158391411612', '1', '2024-07-04 14:53:21', '1', '2024-07-04 14:53:21', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-3913227078508002174, '1697783463064.jpg', '726403430987089148', 'image/jpeg', 7608, '附件备注', '/application/2023-10-20/726403430987089148', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 14:31:14', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 14:31:14', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-3835611835756755777, '菜单管理.png', '1092920638884826314', 'image/png', 25797, '附件备注', '/application/2024-07-04/1092920638884826314', '1', '2024-07-04 09:52:09', '1', '2024-07-04 09:52:09', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-3682007984364762734, '易快报.png', '-1687821855290013893', 'image/png', 9316, '附件备注', '/application/2023-10-10/-1687821855290013893', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:27:33', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:27:33', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-3653692370669975482, 'u9c.png', '5074599907065088244', 'image/png', 26517, '附件备注', '/application/2024-05-17/5074599907065088244', '1', '2024-05-17 09:16:41', '1', '2024-05-17 09:16:41', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-3625825383614953252, '默认.png', '5419375121386523660', 'image/png', 20465, '附件备注', '/application/2024-07-10/5419375121386523660', '1', '2024-07-10 14:36:41', '1', '2024-07-10 14:36:41', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-3496079048736816178, '用户信息.png', '3472585969436215272', 'image/png', 21446, '附件备注', '/application/2024-07-04/3472585969436215272', '1', '2024-07-04 09:54:33', '1', '2024-07-04 09:54:33', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-3263750539482020551, '1717571657986.jpg', '-8005932721886834908', 'image/jpeg', 503652, '附件备注', '/application/2024-06-05/-8005932721886834908', '1', '2024-06-05 15:14:34', '1', '2024-06-05 15:14:34', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-2892170219507726319, '应用设置.png', '2283810935985881862', 'image/png', 21691, '附件备注', '/application/2024-07-04/2283810935985881862', '1', '2024-07-04 10:28:32', '1', '2024-07-04 10:28:32', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-2791696793814544641, '睿本云.png', '4476877312536300547', 'image/png', 39326, '附件备注', '/application/2024-05-17/4476877312536300547', '1', '2024-05-17 09:17:26', '1', '2024-05-17 09:17:26', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-2770901934018247648, 'u8c.png', '-6592553237622337728', 'image/png', 11896, '附件备注', '/application/2024-05-17/-6592553237622337728', '1', '2024-05-17 09:16:01', '1', '2024-05-17 09:16:01', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-2556750216458186827, '测.png', '-6714644604595976629', 'image/png', 1075043, '附件备注', '/application/2024-06-26/-6714644604595976629', '1', '2024-06-26 10:07:57', '1', '2024-06-26 10:07:57', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-2436451624467804496, '客商.jpg', '-119471733111697860', 'image/jpeg', 12915, '附件备注', '/application/2024-05-24/-119471733111697860', '1', '2024-05-24 16:09:47', '1', '2024-05-24 16:09:47', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-2088125651074531013, 'BIP.png', '-1594220300384581522', 'image/png', 21917, '附件备注', '/application/2024-05-17/-1594220300384581522', '1', '2024-05-17 09:18:06', '1', '2024-05-17 09:18:06', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-1928639021275134342, '集成任务日志明细.png', '-4005225956238079331', 'image/png', 15268, '附件备注', '/application/2024-07-04/-4005225956238079331', '1', '2024-07-04 15:26:24', '1', '2024-07-04 15:26:24', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-1770258138146518279, '嵌入式测试.png', '-88050533563873915', 'image/png', 14357, '附件备注', '/application/2024-07-04/-88050533563873915', '1', '2024-07-04 14:22:54', '1', '2024-07-04 14:22:54', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-1324082385383109713, '嵌入式测试.png', '-3845715421485052852', 'image/png', 14357, '附件备注', '/application/2024-07-11/-3845715421485052852', '1', '2024-07-11 10:53:43', '1', '2024-07-11 10:53:43', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-1139483645151067587, '主数据添加.png', '-2085606626465659504', 'image/png', 23919, '附件备注', '/application/2024-07-04/-2085606626465659504', '1', '2024-07-04 14:14:24', '1', '2024-07-04 14:14:24', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-1118673166822191856, '物料.png', '-207844348485220630', 'image/png', 22080, '附件备注', '/application/2024-07-10/-207844348485220630', '1', '2024-07-10 14:32:26', '1', '2024-07-10 14:32:26', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-1076010215913273792, 'pexels-roberto-nickson-2775196.jpg', '4987091290111886933', 'image/jpeg', 1727046, '附件备注', '/application/2024-07-01/4987091290111886933', '1', '2024-07-01 11:03:01', '1', '2024-07-01 11:03:01', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-787759178487086889, '按钮管理.png', '-6175055388505324178', 'image/png', 21006, '附件备注', '/application/2024-07-04/-6175055388505324178', '1', '2024-07-04 15:19:44', '1', '2024-07-04 15:19:44', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-654050188193413581, '用户权限.png', '7926771025882270793', 'image/png', 23329, '附件备注', '/application/2024-07-04/7926771025882270793', '1', '2024-07-04 15:18:42', '1', '2024-07-04 15:18:42', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-605338786563866516, 'u8c.png', '6088569020579138832', 'image/png', 11896, '附件备注', '/application/2024-05-17/6088569020579138832', '1', '2024-05-17 09:15:49', '1', '2024-05-17 09:15:49', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-592021584887266284, '编组 8@3x.png', '206877511978143434', 'image/png', 283378, '附件备注', '/application/2024-07-02/206877511978143434', '1', '2024-07-02 08:52:52', '1', '2024-07-02 08:52:52', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-586432939425052127, 'pexels-eberhard-grossgasteiger-1287145.jpg', '-7268134389189688655', 'image/jpeg', 953481, '附件备注', '/application/2024-07-01/-7268134389189688655', '1', '2024-07-01 11:14:58', '1', '2024-07-01 11:14:58', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-496039402364975700, '组织.png', '-6639378294277779487', 'image/png', 14317, '附件备注', '/application/2024-07-10/-6639378294277779487', '1', '2024-07-10 14:33:35', '1', '2024-07-10 14:33:35', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-452046766420308580, 'pexels-eberhard-grossgasteiger-2310713.jpg', '-3342528751098838316', 'image/jpeg', 5144923, '附件备注', '/application/2024-07-01/-3342528751098838316', '1', '2024-07-01 13:35:03', '1', '2024-07-01 13:35:03', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-396865107734346228, '测.png', '-5841977586663537412', 'image/png', 1075043, '附件备注', '/application/2024-06-28/-5841977586663537412', '1', '2024-06-28 08:46:45', '1', '2024-06-28 08:46:45', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-311440057193706651, 'u8c.png', '-175837317162318917', 'image/png', 11896, '附件备注', '/application/2024-05-17/-175837317162318917', '1', '2024-05-17 09:16:27', '1', '2024-05-17 09:16:27', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-256048490069013451, '客户.png', '-1413356341772926549', 'image/png', 22203, '附件备注', '/application/2024-07-10/-1413356341772926549', '1', '2024-07-10 14:36:07', '1', '2024-07-10 14:36:07', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-218852364998393496, '档案对照.png', '-5239416137150086877', 'image/png', 17074, '附件备注', '/application/2024-07-04/-5239416137150086877', '1', '2024-07-04 14:35:19', '1', '2024-07-04 14:35:19', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-217601803969409117, '组织架构.png', '2615087964314355790', 'image/png', 14859, '附件备注', '/application/2024-07-04/2615087964314355790', '1', '2024-07-04 15:21:04', '1', '2024-07-04 15:21:04', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-130710338222210555, '集成任务监控.png', '-642100284308175949', 'image/png', 17311, '附件备注', '/application/2024-07-04/-642100284308175949', '1', '2024-07-04 15:26:13', '1', '2024-07-04 15:26:13', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-104895094851416098, 'pexels-roberto-nickson-2486168.jpg', '-6528710020401378692', 'image/jpeg', 2228699, '附件备注', '/application/2024-07-01/-6528710020401378692', '1', '2024-07-01 11:17:14', '1', '2024-07-01 11:17:14', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (-23762477068892867, 'pexels-eberhard-grossgasteiger-2310713.jpg', '1887691187866390295', 'image/jpeg', 5144923, '附件备注', '/application/2024-07-01/1887691187866390295', '1', '2024-07-01 11:16:49', '1', '2024-07-01 11:16:49', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (51421024809862282, '新建文本文档.txt', '-3559500444872913435', 'text/plain', 10, '附件备注', '/application/2024-05-20/-3559500444872913435', '1', '2024-05-20 10:32:14', '1', '2024-05-20 10:32:14', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (80494007427286948, '组织.png', '-3855787336361358079', 'image/png', 16469, '附件备注', '/application/2024-07-04/-3855787336361358079', '1', '2024-07-04 10:08:25', '1', '2024-07-04 10:08:25', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (113065279343643259, 'pexels-eberhard-grossgasteiger-1287145.jpg', '-8007064973513571327', 'image/jpeg', 953481, '附件备注', '/application/2024-07-01/-8007064973513571327', '1', '2024-07-01 13:37:02', '1', '2024-07-01 13:37:02', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (316171623001442208, 'u8.png', '51758439817233568', 'image/png', 37617, '附件备注', '/application/2024-05-17/51758439817233568', '1', '2024-05-17 09:15:31', '1', '2024-05-17 09:15:31', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (384099124612581402, 'u8.png', '1157177815754557805', 'image/png', 37617, '附件备注', '/application/2024-05-17/1157177815754557805', '1', '2024-05-17 09:18:59', '1', '2024-05-17 09:18:59', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (483094675965299036, '组织架构.png', '-4868482990672296199', 'image/png', 14706, '附件备注', '/application/2024-07-04/-4868482990672296199', '1', '2024-07-04 15:18:32', '1', '2024-07-04 15:18:32', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (585183321051058164, '下载.jpg', '-7426058657191015796', 'image/jpeg', 14357, '附件备注', '/application/2024-07-11/-7426058657191015796', '1', '2024-07-11 11:47:35', '1', '2024-07-11 11:47:35', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (790653339325384787, '测.png', '7150824231487686427', 'image/png', 1075043, '附件备注', '/application/2024-06-26/7150824231487686427', '1', '2024-06-26 10:05:28', '1', '2024-06-26 10:05:28', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (851194943910595937, '测试.png', '-8373000739556342523', 'image/png', 435, '附件备注', '/application/2024-05-20/-8373000739556342523', '1', '2024-05-20 10:24:31', '1', '2024-05-20 10:24:31', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (935306198684419921, 'pexels-eberhard-grossgasteiger-2310713.jpg', '-7053889315781587330', 'image/jpeg', 5144923, '附件备注', '/application/2024-07-01/-7053889315781587330', '1', '2024-07-01 14:06:40', '1', '2024-07-01 14:06:40', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1038311790626883068, '用2023.3安.jpg', '-5273136513605416681', 'image/jpeg', 5608, '附件备注', '/application/2023-10-10/-5273136513605416681', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:32:19', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:32:19', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1190466157960907823, '接口管理.png', '4310063781161028584', 'image/png', 20661, '附件备注', '/application/2024-07-04/4310063781161028584', '1', '2024-07-04 15:19:02', '1', '2024-07-04 15:19:02', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1211613279442322103, '编组 12.png', '8263462477668240702', 'image/png', 1150, '附件备注', '/application/2024-07-01/8263462477668240702', '1', '2024-07-01 10:49:14', '1', '2024-07-01 10:49:14', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1268606159526445274, '项目.png', '-3983599542944116961', 'image/png', 13453, '附件备注', '/application/2024-07-10/-3983599542944116961', '1', '2024-07-10 14:24:05', '1', '2024-07-10 14:24:05', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1344702842992873024, '泛微.png', '2609175243117053637', 'image/png', 9497, '附件备注', '/application/2024-05-17/2609175243117053637', '1', '2024-05-17 09:28:17', '1', '2024-05-17 09:28:17', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1416839922333927770, '应用中心.png', '8827306738818894509', 'image/png', 20041, '附件备注', '/application/2024-07-04/8827306738818894509', '1', '2024-07-04 10:27:40', '1', '2024-07-04 10:27:40', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1433178867571509494, 'pexels-eberhard-grossgasteiger-844297.jpg', '1372886289454155944', 'image/jpeg', 298662, '附件备注', '/application/2024-07-01/1372886289454155944', '1', '2024-07-01 10:55:05', '1', '2024-07-01 10:55:05', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1489911612727182633, '应用新增.png', '-6352244617326411397', 'image/png', 14515, '附件备注', '/application/2024-07-04/-6352244617326411397', '1', '2024-07-04 10:28:38', '1', '2024-07-04 10:28:38', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1520611631173028937, 'sprites.png', '-8714158213481413665', 'image/png', 1176, '附件备注', '/application/2023-10-23/-8714158213481413665', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-23 08:53:50', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-23 08:53:50', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1653664976964371217, '插件参数设置.png', '3984910514252630080', 'image/png', 17091, '附件备注', '/application/2024-07-04/3984910514252630080', '1', '2024-07-04 13:48:11', '1', '2024-07-04 13:48:11', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1656714501669669824, '回归测试.png', '5156596843063889431', 'image/png', 23274, '附件备注', '/application/2024-07-04/5156596843063889431', '1', '2024-07-04 14:52:16', '1', '2024-07-04 14:52:16', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1873053712371958801, '编组 12.png', '5259351102608131414', 'image/png', 1150, '附件备注', '/application/2024-07-01/5259351102608131414', '1', '2024-07-01 11:24:38', '1', '2024-07-01 11:24:38', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1919757549827541330, '编组 12.png', '-7969723862143712802', 'image/png', 1150, '附件备注', '/application/2024-07-01/-7969723862143712802', '1', '2024-07-01 10:45:19', '1', '2024-07-01 10:45:19', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (1984791001939854535, '集成前台任务.png', '999994740825935034', 'image/png', 15488, '附件备注', '/application/2024-07-04/999994740825935034', '1', '2024-07-04 13:48:25', '1', '2024-07-04 13:48:25', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2014494600032504324, '测.png', '5128861755641449876', 'image/png', 1075043, '附件备注', '/application/2024-06-29/5128861755641449876', '1', '2024-06-29 15:31:36', '1', '2024-06-29 15:31:36', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2026229842966498083, '1a19f51133a8a1b394936b08d895bba.png', '-3706180044146390552', 'image/png', 15191, '附件备注', '/application/2023-10-19/-3706180044146390552', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-19 10:58:08', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-19 10:58:08', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2043867787885429109, '日志查看.png', '-4480854615516100533', 'image/png', 14841, '附件备注', '/application/2024-07-04/-4480854615516100533', '1', '2024-07-04 13:38:06', '1', '2024-07-04 13:38:06', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2074980835702424704, '猪猪.png', '-7754546600097726212', 'image/png', 27764, '附件备注', '/application/2024-07-08/-7754546600097726212', '1', '2024-07-08 11:13:42', '1', '2024-07-08 11:13:42', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2319256122443123916, '数据源管理.png', '2150687353120114936', 'image/png', 22337, '附件备注', '/application/2024-07-04/2150687353120114936', '1', '2024-07-04 15:26:00', '1', '2024-07-04 15:26:00', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2456335005338717571, '测.png', '-6664218145329298783', 'image/png', 1075043, '附件备注', '/application/2024-06-26/-6664218145329298783', '1', '2024-06-26 10:04:15', '1', '2024-06-26 10:04:15', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2619305377956185190, '致远OA.jpg', '7630964215511075727', 'image/jpeg', 8988, '附件备注', '/application/2024-05-17/7630964215511075727', '1', '2024-05-17 09:36:02', '1', '2024-05-17 09:36:02', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2796025808914499623, '日志查看.png', '7098797396712440266', 'image/png', 14550, '附件备注', '/application/2024-07-04/7098797396712440266', '1', '2024-07-04 15:26:41', '1', '2024-07-04 15:26:41', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2854025192590689151, 'ff4b7f9f8b016c23ea3129b94f904e7.png', '5978752186723224101', 'image/png', 4551, '附件备注', '/application/2023-10-19/5978752186723224101', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-19 16:58:03', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-19 16:58:03', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (2960241180358232576, 'tx.jpeg', '-1482495030406919475', 'image/jpeg', 104597, '附件备注', '/application/2023-10-11/-1482495030406919475', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:12', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:12', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (3031902632443857509, 'tx.jpeg', '5626192002274903919', 'image/jpeg', 104597, '附件备注', '/application/2023-10-11/5626192002274903919', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:14', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:14', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (3305719400944912240, 'tx.jpeg', '3725999151632566879', 'image/jpeg', 104597, '附件备注', '/application/2023-10-11/3725999151632566879', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:16', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:16', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (3352266141073952132, 'pexels-eberhard-grossgasteiger-1287145.jpg', '6199167536969829466', 'image/jpeg', 953481, '附件备注', '/application/2024-07-01/6199167536969829466', '1', '2024-07-01 11:23:01', '1', '2024-07-01 11:23:01', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (3355665211076595348, 'Mac_book_pro_retina057.jpg', '-5664172055087267082', 'image/jpeg', 283014, '附件备注', '/application/2024-04-16/-5664172055087267082', '1', '2024-04-16 16:11:56', '1', '2024-04-16 16:11:56', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (3386068725253425374, '人员类别.png', '7043191546178322567', 'image/png', 14945, '附件备注', '/application/2024-07-10/7043191546178322567', '1', '2024-07-10 14:31:01', '1', '2024-07-10 14:31:01', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (3704207675478198964, '用户.png', '7336824837028069956', 'image/png', 15312, '附件备注', '/application/2024-07-10/7336824837028069956', '1', '2024-07-10 14:25:45', '1', '2024-07-10 14:25:45', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (3776529331652349515, '用户权限.png', '-5173005685258237815', 'image/png', 22218, '附件备注', '/application/2024-07-04/-5173005685258237815', '1', '2024-07-04 09:52:52', '1', '2024-07-04 09:52:52', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4004423913990212002, 'fileUpload.jpg', '2494477193097530312', 'image/jpeg', 15191, '附件备注', '/application/2023-10-20/2494477193097530312', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 09:12:42', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 09:12:42', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4037219818581150989, '致远OA.jpg', '-3061200708149097767', 'image/jpeg', 8988, '附件备注', '/application/2024-06-05/-3061200708149097767', '1', '2024-06-05 08:38:30', '1', '2024-06-05 08:38:30', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4263122186875913919, '默认.png', '1102900828067742638', 'image/png', 20465, '附件备注', '/application/2024-07-10/1102900828067742638', '1', '2024-07-10 10:14:17', '1', '2024-07-10 10:14:17', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4522505755255719521, '接口日志.png', '5371770180671653471', 'image/png', 13037, '附件备注', '/application/2024-07-04/5371770180671653471', '1', '2024-07-04 14:35:47', '1', '2024-07-04 14:35:47', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4530106129966909860, '用户信息.png', '2357481932805851692', 'image/png', 21446, '附件备注', '/application/2024-07-04/2357481932805851692', '1', '2024-07-04 09:54:13', '1', '2024-07-04 09:54:13', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4532749125029939003, 'pexels-eberhard-grossgasteiger-844297.jpg', '-8756343341826553075', 'image/jpeg', 298662, '附件备注', '/application/2024-07-01/-8756343341826553075', '1', '2024-07-01 10:46:55', '1', '2024-07-01 10:46:55', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4574520644566598568, '易快报.png', '6575908398763363032', 'image/png', 9316, '附件备注', '/application/2023-10-10/6575908398763363032', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:42:10', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:42:10', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4592551509526331675, '主数据配置.png', '-5502398679874452149', 'image/png', 28363, '附件备注', '/application/2024-07-04/-5502398679874452149', '1', '2024-07-04 10:08:14', '1', '2024-07-04 10:08:14', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4634259854812987666, '三沟玉.jpg', '-7145038435772117347', 'image/jpeg', 78880, '附件备注', '/application/2024-07-06/-7145038435772117347', '1', '2024-07-06 10:26:16', '1', '2024-07-06 10:26:16', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4668961960201636147, '角色权限.png', '1149850936933567312', 'image/png', 26067, '附件备注', '/application/2024-07-04/1149850936933567312', '1', '2024-07-04 15:18:50', '1', '2024-07-04 15:18:50', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4669607202011956490, '实例设置.png', '7680088709163599504', 'image/png', 13517, '附件备注', '/application/2024-07-04/7680088709163599504', '1', '2024-07-04 13:38:25', '1', '2024-07-04 13:38:25', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4762289394461459349, '集成任务日志.png', '-2878813149287724413', 'image/png', 13266, '附件备注', '/application/2024-07-04/-2878813149287724413', '1', '2024-07-04 15:26:31', '1', '2024-07-04 15:26:31', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4803849883327348906, '猪猪.png', '7755279661180341268', 'image/png', 27764, '附件备注', '/application/2024-07-09/7755279661180341268', '1', '2024-07-09 13:55:32', '1', '2024-07-09 13:55:32', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (4976674742449292373, '报表管理.png', '8476663753019901558', 'image/png', 21472, '附件备注', '/application/2024-07-04/8476663753019901558', '1', '2024-07-04 14:35:11', '1', '2024-07-04 14:35:11', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5027950255690039374, '测试数据.png', '-3753313862787841185', 'image/png', 25656, '附件备注', '/application/2024-07-04/-3753313862787841185', '1', '2024-07-04 14:52:28', '1', '2024-07-04 14:52:28', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5047882909174286574, '集成任务监控.png', '-3095722558781438612', 'image/png', 18035, '附件备注', '/application/2024-07-04/-3095722558781438612', '1', '2024-07-04 13:37:47', '1', '2024-07-04 13:37:47', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5050451005206776890, '菜单管理.png', '7306688232075447264', 'image/png', 17503, '附件备注', '/application/2024-07-04/7306688232075447264', '1', '2024-07-04 15:19:39', '1', '2024-07-04 15:19:39', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5074544054751215762, 'pexels-fabian-wiktor-994605.jpg', '841918374953634973', 'image/jpeg', 1316625, '附件备注', '/application/2024-07-01/841918374953634973', '1', '2024-07-01 10:55:37', '1', '2024-07-01 10:55:37', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5129879884394350576, '测.png', '-6509779234786226955', 'image/png', 1075043, '附件备注', '/application/2024-06-26/-6509779234786226955', '1', '2024-06-26 10:05:19', '1', '2024-06-26 10:05:19', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5142338633471905620, 'NC.png', '-5289204886154950250', 'image/png', 7668, '附件备注', '/application/2024-05-17/-5289204886154950250', '1', '2024-05-17 09:27:37', '1', '2024-05-17 09:27:37', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5195426072247356303, '报表设计.png', '3677499744533106646', 'image/png', 20047, '附件备注', '/application/2024-07-04/3677499744533106646', '1', '2024-07-04 14:35:04', '1', '2024-07-04 14:35:04', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5403510979233269121, '主数据设置.png', '6574029982317760230', 'image/png', 31264, '附件备注', '/application/2024-07-04/6574029982317760230', '1', '2024-07-04 14:14:31', '1', '2024-07-04 14:14:31', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5686392025372116661, 'pexels-roberto-nickson-2486168.jpg', '-4729522311480194410', 'image/jpeg', 2228699, '附件备注', '/application/2024-07-01/-4729522311480194410', '1', '2024-07-01 13:45:22', '1', '2024-07-01 13:45:22', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5751831597941672974, '实例设置.png', '-7127311104547533699', 'image/png', 13469, '附件备注', '/application/2024-07-04/-7127311104547533699', '1', '2024-07-04 15:26:55', '1', '2024-07-04 15:26:55', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5914803768364845971, 'u8c.png', '4331229442998815074', 'image/png', 11896, '附件备注', '/application/2024-05-17/4331229442998815074', '1', '2024-05-17 09:16:16', '1', '2024-05-17 09:16:16', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (5997255158250751685, '用2023.3安.jpg', '-5859446095843079623', 'image/jpeg', 5608, '附件备注', '/application/2023-10-10/-5859446095843079623', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:36:36', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-10 17:36:36', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (6094564824165073547, 'pexels-anna-shvets-4014919.jpg', '-1800526270189450335', 'image/jpeg', 7651403, '附件备注', '/application/2024-07-01/-1800526270189450335', '1', '2024-07-01 11:15:44', '1', '2024-07-01 11:15:44', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (6490136550576572206, '测.png', '6918491157023770463', 'image/png', 1075043, '附件备注', '/application/2024-05-20/6918491157023770463', '1', '2024-05-20 10:26:54', '1', '2024-05-20 10:26:54', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (6828266762709060720, 'wallhaven-zyyx1o.jpg', '-7857684712925803121', 'image/jpeg', 1983161, '附件备注', '/application/2024-06-26/-7857684712925803121', '1', '2024-06-26 10:32:23', '1', '2024-06-26 10:32:23', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (7071306410796534357, '编组 12.png', '1996438419554322214', 'image/png', 1150, '附件备注', '/application/2024-07-01/1996438419554322214', '1', '2024-07-01 10:48:52', '1', '2024-07-01 10:48:52', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (7142431720611400502, '测.png', '7952620694161214147', 'image/png', 1075043, '附件备注', '/application/2024-06-28/7952620694161214147', '1', '2024-06-28 08:46:04', '1', '2024-06-28 08:46:04', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (7357228942477903797, 'tx.jpeg', '-8693392110144044983', 'image/jpeg', 104597, '附件备注', '/application/2023-10-11/-8693392110144044983', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:19', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-11 08:54:19', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (7525879408276949278, 'u8.png', '-5382183502186459798', 'image/png', 37617, '附件备注', '/application/2024-05-24/-5382183502186459798', '1', '2024-05-24 15:52:56', '1', '2024-05-24 15:52:56', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (7529968682391846914, '集成任务日志.png', '6898957599079219276', 'image/png', 13478, '附件备注', '/application/2024-07-04/6898957599079219276', '1', '2024-07-04 13:37:23', '1', '2024-07-04 13:37:23', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (7534574221705429264, '测试数据.png', '-4514426643943832871', 'image/png', 25656, '附件备注', '/application/2024-07-04/-4514426643943832871', '1', '2024-07-04 14:52:36', '1', '2024-07-04 14:52:36', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (7571797593682821659, 'pexels-eberhard-grossgasteiger-2310713.jpg', '8110979977858402619', 'image/jpeg', 5144923, '附件备注', '/application/2024-07-01/8110979977858402619', '1', '2024-07-01 13:36:35', '1', '2024-07-01 13:36:35', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (7637327874047952172, 'pexels-ton-souza-18277105.jpg', '5815918067128682437', 'image/jpeg', 3617890, '附件备注', '/application/2024-07-01/5815918067128682437', '1', '2024-07-01 11:09:40', '1', '2024-07-01 11:09:40', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8301502017841088650, '编组 12.png', '-2300433603847172694', 'image/png', 1150, '附件备注', '/application/2024-07-01/-2300433603847172694', '1', '2024-07-01 11:24:52', '1', '2024-07-01 11:24:52', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8314701644286479302, 'Mac_book_pro_retina057.jpg', '-8854157616912970516', 'image/jpeg', 283014, '附件备注', '/application/2024-06-24/-8854157616912970516', '1', '2024-06-24 15:04:11', '1', '2024-06-24 15:04:11', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8346215197184182399, '测.png', '-2613091494048478646', 'image/png', 1075043, '附件备注', '/application/2024-06-26/-2613091494048478646', '1', '2024-06-26 10:05:38', '1', '2024-06-26 10:05:38', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8406482051474801134, 'pexels-fabian-wiktor-994605.jpg', '533002448480587288', 'image/jpeg', 1316625, '附件备注', '/application/2024-07-01/533002448480587288', '1', '2024-07-01 14:06:54', '1', '2024-07-01 14:06:54', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8480953296824125937, 'pexels-anna-shvets-4014919.jpg', '-3871336515871487105', 'image/jpeg', 7651403, '附件备注', '/application/2024-07-01/-3871336515871487105', '1', '2024-07-01 11:18:00', '1', '2024-07-01 11:18:00', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8524855161201509039, '任务设置.png', '6728387801157355295', 'image/png', 19023, '附件备注', '/application/2024-07-04/6728387801157355295', '1', '2024-07-04 15:26:48', '1', '2024-07-04 15:26:48', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8591890020185818789, '银行.png', '3834073199518436713', 'image/png', 18134, '附件备注', '/application/2024-07-10/3834073199518436713', '1', '2024-07-10 14:35:48', '1', '2024-07-10 14:35:48', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8673999735704338432, '银行.png', '-8004696806321401902', 'image/png', 18134, '附件备注', '/application/2024-07-04/-8004696806321401902', '1', '2024-07-04 14:53:05', '1', '2024-07-04 14:53:05', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8674400091786530616, '优时ERP.png', '5582075243135519568', 'image/png', 3199, '附件备注', '/application/2024-05-17/5582075243135519568', '1', '2024-05-17 09:34:56', '1', '2024-05-17 09:34:56', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8679675180105289490, '1697783572415.jpg', '-8512565471598262833', 'image/jpeg', 12102, '附件备注', '/application/2023-10-20/-8512565471598262833', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 14:32:55', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2023-10-20 14:32:55', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8758144563624233695, '主数据设置.png', '4814898301966567806', 'image/png', 33745, '附件备注', '/application/2024-07-04/4814898301966567806', '1', '2024-07-04 15:27:07', '1', '2024-07-04 15:27:07', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (8940942557077390274, '新建文本文档.txt', '-2145207996823287857', 'text/plain', 10, '附件备注', '/application/2024-05-20/-2145207996823287857', '1', '2024-05-20 10:33:37', '1', '2024-05-20 10:33:37', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (9152701453356778619, '1.png', '124846052502752657', 'image/png', 29, '附件备注', '/application/2024-03-27/124846052502752657', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2024-03-27 10:33:18', 'c796fd9ba4c9f5ff3cc2fa41a040e443', '2024-03-27 10:33:18', 'Y');
INSERT INTO sys_file (id, filename, filesavename, type, file_size, description, filepath, create_user_id, create_time, modify_user_id, modify_time, sts) VALUES (9217313764294738344, '集成任务部署.png', '-2471470808405620684', 'image/png', 16979, '附件备注', '/application/2024-07-04/-2471470808405620684', '1', '2024-07-04 13:37:15', '1', '2024-07-04 13:37:15', 'Y');
commit;

View File

@ -0,0 +1,694 @@
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for mdm_org
-- ----------------------------
DROP TABLE IF EXISTS `mdm_org`;
CREATE TABLE `mdm_org` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`document_rule` varchar(50) DEFAULT NULL COMMENT '单据规则',
`document_rule_num` bigint DEFAULT NULL COMMENT '单据规则流水号',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`add_status` varchar(1) DEFAULT NULL COMMENT '新增数据状态 0待下发 1已下发',
`update_status` varchar(1) DEFAULT NULL COMMENT '修改数据状态 0待下发 1已下发',
`delete_status` varchar(1) DEFAULT NULL COMMENT '删除数据状态 0待下发 1已下发',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`org_code` varchar(255) DEFAULT NULL COMMENT '组织编码',
`org_name` varchar(255) DEFAULT NULL COMMENT '组织名称',
`org_address` varchar(255) DEFAULT NULL COMMENT '地址',
`org_countryzone` varchar(255) DEFAULT NULL COMMENT '国家地区',
`org_innercode` varchar(255) DEFAULT NULL COMMENT '内部编码',
`org_memo` varchar(255) DEFAULT NULL COMMENT '说明',
`org_mnecode` varchar(255) DEFAULT NULL COMMENT '助记码',
`org_ncindustry` varchar(255) DEFAULT NULL COMMENT '所属行业',
`org_fatherorg` varchar(255) DEFAULT NULL COMMENT '上级业务单元',
`org_principal` varchar(255) DEFAULT NULL COMMENT '负责人',
`org_tel` varchar(255) DEFAULT NULL COMMENT '电话',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='组织';
-- ----------------------------
-- Table structure for mdm_org_option_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_org_option_log`;
CREATE TABLE `mdm_org_option_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`source_name` varchar(255) DEFAULT NULL COMMENT '来源名称',
`code` varchar(255) DEFAULT NULL COMMENT '编码',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`option_name` varchar(255) DEFAULT NULL COMMENT '操作人',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(255) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='组织操作日志';
-- ----------------------------
-- Table structure for mdm_org_send_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_org_send_log`;
CREATE TABLE `mdm_org_send_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`target_app` varchar(255) DEFAULT NULL COMMENT '目标应用',
`target_api` varchar(255) DEFAULT NULL COMMENT '目标api',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(50) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`api_id` varchar(50) DEFAULT NULL COMMENT 'apiid',
`app_id` varchar(50) DEFAULT NULL COMMENT 'app_id',
`distribute_id` varchar(50) DEFAULT NULL COMMENT 'distribute_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='组织下发日志';
-- ----------------------------
-- Table structure for mdm_project
-- ----------------------------
DROP TABLE IF EXISTS `mdm_project`;
CREATE TABLE `mdm_project` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`document_rule` varchar(50) DEFAULT NULL COMMENT '单据规则',
`document_rule_num` bigint DEFAULT NULL COMMENT '单据规则流水号',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`add_status` varchar(1) DEFAULT NULL COMMENT '新增数据状态 0待下发 1已下发',
`update_status` varchar(1) DEFAULT NULL COMMENT '修改数据状态 0待下发 1已下发',
`delete_status` varchar(1) DEFAULT NULL COMMENT '删除数据状态 0待下发 1已下发',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`project_code` varchar(255) DEFAULT NULL COMMENT '项目编码',
`project_name` varchar(255) DEFAULT NULL COMMENT '项目名称',
`project_bill_type` varchar(255) DEFAULT NULL COMMENT '单据类型',
`project_memo` varchar(255) DEFAULT NULL COMMENT '备注',
`project_currtype` varchar(255) DEFAULT NULL COMMENT '币种',
`project_dutier` varchar(255) DEFAULT NULL COMMENT '责任人',
`project_duty_dept` varchar(255) DEFAULT NULL COMMENT '责任部门',
`project_org` varchar(255) DEFAULT NULL COMMENT '管理组织',
`project_parentpro` varchar(255) DEFAULT NULL COMMENT '父项目',
`project_sh_name` varchar(255) DEFAULT NULL COMMENT '项目简称',
`data_id` varchar(125) DEFAULT NULL COMMENT '三方业务主键',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='项目档案';
-- ----------------------------
-- Table structure for mdm_project_option_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_project_option_log`;
CREATE TABLE `mdm_project_option_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`source_name` varchar(255) DEFAULT NULL COMMENT '来源名称',
`code` varchar(255) DEFAULT NULL COMMENT '编码',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`option_name` varchar(255) DEFAULT NULL COMMENT '操作人',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(255) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='项目档案操作日志';
-- ----------------------------
-- Table structure for mdm_project_send_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_project_send_log`;
CREATE TABLE `mdm_project_send_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`target_app` varchar(255) DEFAULT NULL COMMENT '目标应用',
`target_api` varchar(255) DEFAULT NULL COMMENT '目标api',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(50) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`api_id` varchar(50) DEFAULT NULL COMMENT 'apiid',
`app_id` varchar(50) DEFAULT NULL COMMENT 'app_id',
`distribute_id` varchar(50) DEFAULT NULL COMMENT 'distribute_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='项目档案下发日志';
-- ----------------------------
-- Table structure for mdm_user
-- ----------------------------
DROP TABLE IF EXISTS `mdm_user`;
CREATE TABLE `mdm_user` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`document_rule` varchar(50) DEFAULT NULL COMMENT '单据规则',
`document_rule_num` bigint DEFAULT NULL COMMENT '单据规则流水号',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`add_status` varchar(1) DEFAULT NULL COMMENT '新增数据状态 0待下发 1已下发',
`update_status` varchar(1) DEFAULT NULL COMMENT '修改数据状态 0待下发 1已下发',
`delete_status` varchar(1) DEFAULT NULL COMMENT '删除数据状态 0待下发 1已下发',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`user_name` varchar(255) DEFAULT NULL COMMENT '用户名称',
`user_code` varchar(255) DEFAULT NULL COMMENT '用户编码',
`user_password` varchar(255) DEFAULT NULL COMMENT '用户密码',
`pwdlevelcode` varchar(255) DEFAULT NULL COMMENT '密码安全级别',
`pwdparam` varchar(255) DEFAULT NULL COMMENT '密码参数',
`user_note` varchar(255) DEFAULT NULL COMMENT '备注',
`abledate` varchar(255) DEFAULT NULL COMMENT '生效日期',
`disabledate` varchar(255) DEFAULT NULL COMMENT '失效日期',
`islocked` varchar(255) DEFAULT NULL COMMENT '锁定',
`user_type` varchar(255) DEFAULT NULL COMMENT '用户类型',
`base_doc_type` varchar(255) DEFAULT NULL COMMENT '身份类型',
`pk_base_doc` varchar(255) DEFAULT NULL COMMENT '身份',
`identityverifycode` varchar(255) DEFAULT NULL COMMENT '认证类型',
`pk_org` varchar(255) DEFAULT NULL COMMENT '所属组织',
`format` varchar(255) DEFAULT NULL COMMENT '数据格式',
`isca` varchar(255) DEFAULT NULL COMMENT 'CA用户',
`enablestate` varchar(255) DEFAULT NULL COMMENT '启用状态',
`contentlang` varchar(255) DEFAULT NULL COMMENT '内容语种',
`user_code_q` varchar(255) DEFAULT NULL COMMENT '用户编码',
`data_id` varchar(100) DEFAULT NULL COMMENT 'data_id',
`mobile` varchar(255) DEFAULT NULL COMMENT '电话',
`gender` varchar(255) DEFAULT NULL COMMENT '性别',
`login_name` varchar(255) DEFAULT NULL COMMENT '登录名',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户档案';
-- ----------------------------
-- Table structure for mdm_user_option_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_user_option_log`;
CREATE TABLE `mdm_user_option_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`source_name` varchar(255) DEFAULT NULL COMMENT '来源名称',
`code` varchar(255) DEFAULT NULL COMMENT '编码',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`option_name` varchar(255) DEFAULT NULL COMMENT '操作人',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(255) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户档案操作日志';
-- ----------------------------
-- Table structure for mdm_user_send_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_user_send_log`;
CREATE TABLE `mdm_user_send_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`target_app` varchar(255) DEFAULT NULL COMMENT '目标应用',
`target_api` varchar(255) DEFAULT NULL COMMENT '目标api',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(50) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`api_id` varchar(50) DEFAULT NULL COMMENT 'apiid',
`app_id` varchar(50) DEFAULT NULL COMMENT 'app_id',
`distribute_id` varchar(50) DEFAULT NULL COMMENT 'distribute_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户档案下发日志';
-- ----------------------------
-- Table structure for mdm_customer
-- ----------------------------
DROP TABLE IF EXISTS `mdm_customer`;
CREATE TABLE `mdm_customer` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`document_rule` varchar(50) DEFAULT NULL COMMENT '单据规则',
`document_rule_num` bigint DEFAULT NULL COMMENT '单据规则流水号',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`add_status` varchar(1) DEFAULT NULL COMMENT '新增数据状态 0待下发 1已下发',
`update_status` varchar(1) DEFAULT NULL COMMENT '修改数据状态 0待下发 1已下发',
`delete_status` varchar(1) DEFAULT NULL COMMENT '删除数据状态 0待下发 1已下发',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`code` varchar(255) DEFAULT NULL COMMENT '客户编码',
`custprop` varchar(255) DEFAULT NULL COMMENT '客户类型',
`custstate` varchar(255) DEFAULT NULL COMMENT '客户状态',
`enablestate` varchar(255) DEFAULT NULL COMMENT '启用状态',
`name` varchar(255) DEFAULT NULL COMMENT '客户名称',
`pk_country` varchar(255) DEFAULT NULL COMMENT '国家/地区',
`pk_custclass` varchar(255) DEFAULT NULL COMMENT '客户基本分类',
`pk_group` varchar(255) DEFAULT NULL COMMENT '所属集团',
`pk_org` varchar(255) DEFAULT NULL COMMENT '所属组织',
`taxpayerid` varchar(255) DEFAULT NULL COMMENT '纳税人登记号',
`custprop_type` varchar(122) DEFAULT NULL COMMENT '客户分类',
`data_id` varchar(100) DEFAULT NULL COMMENT 'data_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='客户档案';
-- ----------------------------
-- Table structure for mdm_customer_option_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_customer_option_log`;
CREATE TABLE `mdm_customer_option_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`source_name` varchar(255) DEFAULT NULL COMMENT '来源名称',
`code` varchar(255) DEFAULT NULL COMMENT '编码',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`option_name` varchar(255) DEFAULT NULL COMMENT '操作人',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(255) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='客户档案操作日志';
-- ----------------------------
-- Table structure for mdm_customer_send_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_customer_send_log`;
CREATE TABLE `mdm_customer_send_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`target_app` varchar(255) DEFAULT NULL COMMENT '目标应用',
`target_api` varchar(255) DEFAULT NULL COMMENT '目标api',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(50) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`api_id` varchar(50) DEFAULT NULL COMMENT 'apiid',
`app_id` varchar(50) DEFAULT NULL COMMENT 'app_id',
`distribute_id` varchar(50) DEFAULT NULL COMMENT 'distribute_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='客户档案下发日志';
-- ----------------------------
-- Table structure for mdm_bank
-- ----------------------------
DROP TABLE IF EXISTS `mdm_bank`;
CREATE TABLE `mdm_bank` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`document_rule` varchar(50) DEFAULT NULL COMMENT '单据规则',
`document_rule_num` bigint DEFAULT NULL COMMENT '单据规则流水号',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`add_status` varchar(1) DEFAULT NULL COMMENT '新增数据状态 0待下发 1已下发',
`update_status` varchar(1) DEFAULT NULL COMMENT '修改数据状态 0待下发 1已下发',
`delete_status` varchar(1) DEFAULT NULL COMMENT '删除数据状态 0待下发 1已下发',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`bank_name` varchar(255) DEFAULT NULL COMMENT '网点全称',
`correspondent_number` varchar(255) DEFAULT NULL COMMENT '联行号',
`bank_code` varchar(255) DEFAULT NULL COMMENT '银行行别代码',
`province` varchar(255) DEFAULT NULL COMMENT '所在省',
`province_code` varchar(255) DEFAULT NULL COMMENT '所在省编码',
`city` varchar(255) DEFAULT NULL COMMENT '所在市',
`city_code` varchar(255) DEFAULT NULL COMMENT '所在市编码',
`data_id` varchar(100) DEFAULT NULL COMMENT 'data_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='银行档案';
-- ----------------------------
-- Table structure for mdm_bank_option_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_bank_option_log`;
CREATE TABLE `mdm_bank_option_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`source_name` varchar(255) DEFAULT NULL COMMENT '来源名称',
`code` varchar(255) DEFAULT NULL COMMENT '编码',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`option_name` varchar(255) DEFAULT NULL COMMENT '操作人',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(255) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='银行档案操作日志';
-- ----------------------------
-- Table structure for mdm_bank_send_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_bank_send_log`;
CREATE TABLE `mdm_bank_send_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`target_app` varchar(255) DEFAULT NULL COMMENT '目标应用',
`target_api` varchar(255) DEFAULT NULL COMMENT '目标api',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(50) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`api_id` varchar(50) DEFAULT NULL COMMENT 'apiid',
`app_id` varchar(50) DEFAULT NULL COMMENT 'app_id',
`distribute_id` varchar(50) DEFAULT NULL COMMENT 'distribute_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='银行档案下发日志';
-- ----------------------------
-- Table structure for mdm_customer_bank
-- ----------------------------
DROP TABLE IF EXISTS `mdm_customer_bank`;
CREATE TABLE `mdm_customer_bank` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`bank` varchar(255) DEFAULT NULL COMMENT '银行',
`pk_bankdoc` varchar(100) DEFAULT NULL COMMENT '开户银行',
`accnum` varchar(100) DEFAULT NULL COMMENT '账号',
`combinenum` varchar(100) DEFAULT NULL COMMENT '联行号',
`data_id` varchar(100) DEFAULT NULL COMMENT 'data_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='客户银行';
-- ----------------------------
-- Table structure for mdm_supplier
-- ----------------------------
DROP TABLE IF EXISTS `mdm_supplier`;
CREATE TABLE `mdm_supplier` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`document_rule` varchar(50) DEFAULT NULL COMMENT '单据规则',
`document_rule_num` bigint DEFAULT NULL COMMENT '单据规则流水号',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`add_status` varchar(1) DEFAULT NULL COMMENT '新增数据状态 0待下发 1已下发',
`update_status` varchar(1) DEFAULT NULL COMMENT '修改数据状态 0待下发 1已下发',
`delete_status` varchar(1) DEFAULT NULL COMMENT '删除数据状态 0待下发 1已下发',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`code` varchar(255) DEFAULT NULL COMMENT '供应商编码',
`custprop` varchar(255) DEFAULT NULL COMMENT '供应商类型',
`custstate` varchar(255) DEFAULT NULL COMMENT '供应商状态',
`enablestate` varchar(255) DEFAULT NULL COMMENT '启用状态',
`name` varchar(255) DEFAULT NULL COMMENT '供应商名称',
`pk_country` varchar(255) DEFAULT NULL COMMENT '国家/地区',
`pk_custclass` varchar(255) DEFAULT NULL COMMENT '供应商基本分类',
`pk_group` varchar(255) DEFAULT NULL COMMENT '所属集团',
`pk_org` varchar(255) DEFAULT NULL COMMENT '所属组织',
`taxpayerid` varchar(255) DEFAULT NULL COMMENT '纳税人登记号',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='供应商档案';
-- ----------------------------
-- Table structure for mdm_supplier_option_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_supplier_option_log`;
CREATE TABLE `mdm_supplier_option_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`source_name` varchar(255) DEFAULT NULL COMMENT '来源名称',
`code` varchar(255) DEFAULT NULL COMMENT '编码',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`option_name` varchar(255) DEFAULT NULL COMMENT '操作人',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(255) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='供应商档案操作日志';
-- ----------------------------
-- Table structure for mdm_supplier_send_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_supplier_send_log`;
CREATE TABLE `mdm_supplier_send_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`target_app` varchar(255) DEFAULT NULL COMMENT '目标应用',
`target_api` varchar(255) DEFAULT NULL COMMENT '目标api',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(50) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`api_id` varchar(50) DEFAULT NULL COMMENT 'apiid',
`app_id` varchar(50) DEFAULT NULL COMMENT 'app_id',
`distribute_id` varchar(50) DEFAULT NULL COMMENT 'distribute_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='供应商档案下发日志';
-- Table structure for mdm_supplier_bank
-- ----------------------------
DROP TABLE IF EXISTS `mdm_supplier_bank`;
CREATE TABLE `mdm_supplier_bank` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`bank` varchar(255) DEFAULT NULL COMMENT '银行',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='供应商银行';
-- ----------------------------
-- Table structure for mdm_psndoc
-- ----------------------------
DROP TABLE IF EXISTS `mdm_psndoc`;
CREATE TABLE `mdm_psndoc` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`document_rule` varchar(50) DEFAULT NULL COMMENT '单据规则',
`document_rule_num` bigint DEFAULT NULL COMMENT '单据规则流水号',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`add_status` varchar(1) DEFAULT NULL COMMENT '新增数据状态 0待下发 1已下发',
`update_status` varchar(1) DEFAULT NULL COMMENT '修改数据状态 0待下发 1已下发',
`delete_status` varchar(1) DEFAULT NULL COMMENT '删除数据状态 0待下发 1已下发',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`birthdate` varchar(255) DEFAULT NULL COMMENT '出生日期',
`code` varchar(255) DEFAULT NULL COMMENT '人员编码',
`enablestate` varchar(255) DEFAULT NULL COMMENT '启用状态',
`idcard` varchar(255) DEFAULT NULL COMMENT '证件号',
`idtype` varchar(255) DEFAULT NULL COMMENT '证件类型',
`joinworkdate` varchar(255) DEFAULT NULL COMMENT '参加工作日期',
`lastname` varchar(255) DEFAULT NULL COMMENT '',
`mnecode` varchar(255) DEFAULT NULL COMMENT '助记码',
`mobile` varchar(255) DEFAULT NULL COMMENT '手机',
`name` varchar(255) DEFAULT NULL COMMENT '姓名',
`nickname` varchar(255) DEFAULT NULL COMMENT '昵称',
`pk_group` varchar(255) DEFAULT NULL COMMENT '所属集团',
`pk_org` varchar(255) DEFAULT NULL COMMENT '所属业务单元',
`sex` varchar(255) DEFAULT NULL COMMENT '性别',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='人员档案';
-- ----------------------------
-- Table structure for mdm_psndoc_option_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_psndoc_option_log`;
CREATE TABLE `mdm_psndoc_option_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`source_name` varchar(255) DEFAULT NULL COMMENT '来源名称',
`code` varchar(255) DEFAULT NULL COMMENT '编码',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`option_name` varchar(255) DEFAULT NULL COMMENT '操作人',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(255) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='人员档案操作日志';
-- ----------------------------
-- Table structure for mdm_psndoc_send_log
-- ----------------------------
DROP TABLE IF EXISTS `mdm_psndoc_send_log`;
CREATE TABLE `mdm_psndoc_send_log` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`target_app` varchar(255) DEFAULT NULL COMMENT '目标应用',
`target_api` varchar(255) DEFAULT NULL COMMENT '目标api',
`source_data` text COMMENT '源数据',
`option_type` varchar(255) DEFAULT NULL COMMENT '操作类型',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`data_type` varchar(50) DEFAULT NULL COMMENT '状态 1、成功2、失败',
`remark` varchar(255) DEFAULT NULL COMMENT '备注',
`api_id` varchar(50) DEFAULT NULL COMMENT 'apiid',
`app_id` varchar(50) DEFAULT NULL COMMENT 'app_id',
`distribute_id` varchar(50) DEFAULT NULL COMMENT 'distribute_id',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='人员档案下发日志';
-- ----------------------------
-- Table structure for mdm_psnjobs
-- ----------------------------
DROP TABLE IF EXISTS `mdm_psnjobs`;
CREATE TABLE `mdm_psnjobs` (
`id` varchar(50) NOT NULL COMMENT '唯一标识码',
`formmain_id` varchar(50) DEFAULT NULL COMMENT 'formmain_id',
`data_status` varchar(1) DEFAULT NULL COMMENT '数据状态 Y正常 N删除 F修改',
`sorts` bigint NOT NULL AUTO_INCREMENT COMMENT '排序',
`create_user_id` varchar(50) DEFAULT NULL COMMENT '创建人id',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`modify_user_id` varchar(50) DEFAULT NULL COMMENT '修改人id',
`modify_time` datetime DEFAULT NULL COMMENT '修改时间',
`sts` varchar(1) DEFAULT NULL COMMENT '状态(Y正常N删除)',
`org_id` varchar(50) DEFAULT NULL COMMENT '组织机构ID',
`company_id` varchar(50) DEFAULT NULL COMMENT '公司id',
`enddutydate` varchar(255) DEFAULT NULL COMMENT '任职结束日期',
`indutydate` varchar(255) DEFAULT NULL COMMENT '任职开始日期',
`ismainjob` varchar(255) DEFAULT NULL COMMENT '主职',
`pk_dept` varchar(255) DEFAULT NULL COMMENT '所在部门',
`pk_group` varchar(255) DEFAULT NULL COMMENT '所属集团',
`pk_org` varchar(255) DEFAULT NULL COMMENT '任职业务单元',
`pk_post` varchar(255) DEFAULT NULL COMMENT '岗位',
`pk_psncl` varchar(255) DEFAULT NULL COMMENT '人员类别',
`psncode` varchar(255) DEFAULT NULL COMMENT '员工编号',
PRIMARY KEY (`sorts`,`id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='工作信息';
SET FOREIGN_KEY_CHECKS = 1;

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,9 @@
INSERT INTO integration_task (id,task_code,task_name,task_cron,task_status,task_app,task_plugin,fun_info,remark,create_user_id,create_time,modify_user_id,modify_time,sts,org_id,company_id) VALUES ('175935a432b648e586c4f0ff1a234a07','Task-20240621-0001','主数据下发','0 0/2 * * * ?','2','82bd4293fda94d6896217509f11b6c4c','e3a61bdf20b34126927fe1285fd80793','主数据下发','主数据下发','1','2024-06-21 16:11:37','1','2024-06-21 16:26:58','Y','0','0');
INSERT INTO integration_task (id,task_code,task_name,task_cron,task_status,task_app,task_plugin,fun_info,remark,create_user_id,create_time,modify_user_id,modify_time,sts,org_id,company_id) VALUES ('2ab139b06a504b548bca1f90243c57cc','Task-20240625-0001','主数据抽取','0 0/1 * * * ?','2','82bd4293fda94d6896217509f11b6c4c','b7e0020d9ff7435196862bfa62d9ff40','主数据统一数据抽取','MdmCustomerPlugin','1','2024-06-25 14:46:37','1','2024-07-10 11:20:35','Y','0','0');
INSERT INTO integration_task_living (id,task_id,task_code,task_name,task_status,old_start_time,start_time,end_time,diff_time,run_num,create_user_id,create_time,modify_user_id,modify_time,sts,org_id,company_id) VALUES ('571725e79bfc4a9090e921487dbf421f','175935a432b648e586c4f0ff1a234a07','Task-20240621-0001','主数据下发','2','2024-06-21 16:52:00','2024-06-21 16:52:00','2024-06-21 16:52:01','0',0,'1','2024-06-21 16:11:37','1','2024-06-21 16:52:01','Y','0','0');
INSERT INTO integration_task_living (id,task_id,task_code,task_name,task_status,old_start_time,start_time,end_time,diff_time,run_num,create_user_id,create_time,modify_user_id,modify_time,sts,org_id,company_id) VALUES ('3fe53b5a6e814ed98a7a29c0478d9fbb','2ab139b06a504b548bca1f90243c57cc','Task-20240625-0001','主数据抽取','2','2024-07-10 11:57:00','2024-07-10 11:57:00','2024-07-10 11:57:00','0',0,'1','2024-06-25 14:46:37','1','2024-07-10 11:57:00','Y','0','0');
commit;

View File

@ -14,8 +14,7 @@
<conversionRule conversionWord="wEx"
converterClass="org.springframework.boot.logging.logback.ExtendedWhitespaceThrowableProxyConverter"/>
<!-- 彩色日志格式 -->
<property name="CONSOLE_LOG_PATTERN"
value="${CONSOLE_LOG_PATTERN:-%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(${LOG_LEVEL_PATTERN:-%1p}) %clr(${PID:- }){magenta} %clr(--){faint} %clr([%1.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}}"/>
<property name="CONSOLE_LOG_PATTERN" value="${CONSOLE_LOG_PATTERN:-%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(${LOG_LEVEL_PATTERN:-%1p}) %clr(${PID:- }){magenta} %clr(--){faint} %clr([%1.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}}"/>
<springProperty scope="context" name="logPath" source="logging.file.path" defaultValue="logdir"/>
<springProperty scope="context" name="encodings" source="logging.encodings" defaultValue="UTF-8"/>
<!--定义日志文档的存储地址 勿在 LogBack 的配置中使用相对路径-->
@ -24,7 +23,14 @@
<property name="MAX_FILE_SIZE" value="50MB"/>
<!-- 控制台输出 -->
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<!-- <encoder>-->
<!-- <Pattern>${CONSOLE_LOG_PATTERN}</Pattern>-->
<!-- &lt;!&ndash; 设置字符集 &ndash;&gt;-->
<!-- <charset>${encodings}</charset>-->
<!-- </encoder>-->
<!--这里替换成AspectLogbackEncoder-->
<encoder class="com.yomahub.tlog.core.enhance.logback.AspectLogbackEncoder">
<Pattern>${CONSOLE_LOG_PATTERN}</Pattern>
<!-- 设置字符集 -->
<charset>${encodings}</charset>
@ -52,8 +58,12 @@
</rollingPolicy>
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger{50} - %msg%n</pattern>
<!-- <encoder>-->
<!-- <pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger{50} - %msg%n</pattern>-->
<!-- </encoder>-->
<!--这里替换成AspectLogbackEncoder-->
<encoder class="com.yomahub.tlog.core.enhance.logback.AspectLogbackEncoder">
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
</encoder>
</appender>
@ -77,8 +87,12 @@
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger{50} - %msg%n</pattern>
<!-- <encoder>-->
<!-- <pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger{50} - %msg%n</pattern>-->
<!-- </encoder>-->
<!--这里替换成AspectLogbackEncoder-->
<encoder class="com.yomahub.tlog.core.enhance.logback.AspectLogbackEncoder">
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
</encoder>
</appender>
@ -102,8 +116,12 @@
<onMatch>ACCEPT</onMatch>
<onMismatch>DENY</onMismatch>
</filter>
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger{50} - %msg%n</pattern>
<!-- <encoder>-->
<!-- <pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger{50} - %msg%n</pattern>-->
<!-- </encoder>-->
<!--这里替换成AspectLogbackEncoder-->
<encoder class="com.yomahub.tlog.core.enhance.logback.AspectLogbackEncoder">
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
</encoder>
</appender>
@ -125,8 +143,12 @@
</timeBasedFileNamingAndTriggeringPolicy>
</rollingPolicy>
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger{50} - %msg%n</pattern>
<!-- <encoder>-->
<!-- <pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level [%thread] %logger{50} - %msg%n</pattern>-->
<!-- </encoder>-->
<!--这里替换成AspectLogbackEncoder-->
<encoder class="com.yomahub.tlog.core.enhance.logback.AspectLogbackEncoder">
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
</encoder>
</appender>

View File

@ -0,0 +1,57 @@
package com.hzya.frame;
import org.springframework.data.annotation.Id;
import java.io.Serializable;
public class TestUser implements Serializable {
private static final long serialVersionUID = -3258839839160856614L;
@Id
private String id;
private String name;
private String code;
@Override
public String toString() {
return "TestUser{" +
"id='" + id + '\'' +
", name='" + name + '\'' +
", code='" + code + '\'' +
'}';
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public TestUser() {
}
public TestUser(String id, String name, String code) {
this.id = id;
this.name = name;
this.code = code;
}
}

View File

@ -1,11 +1,45 @@
package com.hzya.frame;
import cn.hutool.core.convert.Convert;
import cn.hutool.http.HttpRequest;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.hzya.frame.cbs8.dto.req.PayRequestDTO;
import com.hzya.frame.cbs8.dto.req.PayResultRequestDTO;
import com.hzya.frame.cbs8.dto.res.PayResultResDTO;
import com.hzya.frame.cbs8.service.ICbs8ExtService;
import com.hzya.frame.cbs8.service.ICbs8Service;
import com.hzya.frame.cbs8.util.CBSUtil;
import com.hzya.frame.cbs8.util.CbsAccessToken;
import com.hzya.frame.plugin.cbs8.plugin.PayApplyPluginInitializer;
import com.hzya.frame.plugin.cbs8.plugin.PayResultPluginInitializer;
import com.hzya.frame.plugin.cbs8.plugin.TransactionDetailPluginInitializer;
import com.hzya.frame.plugin.seeyonExt.plugin.SeeyonExtPluginInitializer;
import com.hzya.frame.seeyon.cbs8.entity.PaymentEntity;
import com.hzya.frame.seeyon.cbs8.service.IPaymentService;
import com.hzya.frame.stringutil.StringUtil;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
import com.hzya.frame.util.AESUtil;
import com.mongodb.client.result.UpdateResult;
import org.apache.http.protocol.HTTP;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.annotation.Id;
import org.springframework.data.domain.Sort;
import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.query.Criteria;
import org.springframework.data.mongodb.core.query.Query;
import org.springframework.data.mongodb.core.query.Update;
import org.springframework.test.context.junit4.SpringRunner;
import javax.annotation.Resource;
import java.io.Serializable;
import java.util.*;
/**
* @ClassName dsasas
* @Description
@ -16,14 +50,243 @@ import org.springframework.test.context.junit4.SpringRunner;
@SpringBootTest(classes = {WebappApplication.class})
public class temButtom {
@Resource
SeeyonExtPluginInitializer seeyonExtPluginInitializer;
@Resource
ICbs8Service cs8Service;
@Resource
ICbs8ExtService cbs8ExtService;
@Autowired
private IPaymentService paymentService;
@Autowired
private PayApplyPluginInitializer payApplyPluginInitializer;
@Autowired
private TransactionDetailPluginInitializer transactionDetailPluginInitializer;
@Autowired
private PayResultPluginInitializer payResultPluginInitializer;
@Test
public void cbs8PluginTest(){
try {
//支付申请 测试通过
//payApplyPluginInitializer.executeBusiness(new JSONObject());
//查询交易明细 测试通过
//transactionDetailPluginInitializer.executeBusiness(new JSONObject());
//交易结果查询 未测试 OA没有日志底表无法测试
payResultPluginInitializer.executeBusiness(new JSONObject());
//电子回单测试 通过apipost测试过了可以取到cbs电子回单只是没法上传到OA
//
}catch (Exception e){
e.printStackTrace();
}
}
@Test
public void queryUnpaid(){
//查询待支付的列表
PaymentEntity paymentEntity = new PaymentEntity();
paymentEntity.setDataSourceCode("yc-test");
try {
List<PaymentEntity> paymentList = paymentService.queryUnpaid(paymentEntity);
System.out.println(paymentList);
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
System.out.println("1111");
}
@Test
public void queryResultTest(){
// SysExtensionApiEntity sysExt = new SysExtensionApiEntity();
// sysExt.setBodys("{\"referenceNum\":\"CL202406140002\"}");
// cbs8ExtService.payResult(sysExt);
// System.out.println("11111");
List<PayResultResDTO> cl202406140002 = cs8Service.queryPayResult(new PayResultRequestDTO("CL202406140002"));
System.out.println("111");
}
@Test
public void cbs8ExtTest(){
PaymentEntity paymentEntity = new PaymentEntity();
paymentEntity.setReferenceNum("CL202406140003");
paymentEntity.setPayAccount("655905707410000");
paymentEntity.setPayBankName("");
paymentEntity.setAmount("99.02");
paymentEntity.setRevAccount("123456778");
paymentEntity.setRevBankName("中国工商银行总行清算中心");
paymentEntity.setRevBankType("ICB");
paymentEntity.setRevAccountName("测试账户");
paymentEntity.setCnapsCode("102100099996");
paymentEntity.setPurpose("测试用途");
paymentEntity.setBusType("202");
paymentEntity.setCurrency("10");
if (null != paymentEntity){
PayRequestDTO payRequestDTO = new PayRequestDTO();
String ferenceNum = Convert.toStr(paymentEntity.getReferenceNumNew(),paymentEntity.getReferenceNum());
payRequestDTO.setReferenceNum(ferenceNum);
payRequestDTO.setBusType(paymentEntity.getBusType());
payRequestDTO.setAmount(paymentEntity.getAmount());
payRequestDTO.setCurrency(paymentEntity.getCurrency());
payRequestDTO.setPayAccount(StringUtil.replaceBlank(paymentEntity.getPayAccount()));
payRequestDTO.setRevAccount(StringUtil.replaceBlank(paymentEntity.getRevAccount()));
payRequestDTO.setRevAccountName(StringUtil.replaceBlank(paymentEntity.getRevAccountName()));
payRequestDTO.setRevBankType(StringUtil.replaceBlank((paymentEntity.getRevBankType())));
payRequestDTO.setRevBankName(StringUtil.replaceBlank(paymentEntity.getRevBankName()));
payRequestDTO.setCnapsCode(StringUtil.replaceBlank((paymentEntity.getCnapsCode())));
payRequestDTO.setPurpose(paymentEntity.getPurpose());
payRequestDTO.setErpExtend1(paymentEntity.getPayType());
//集中支付模式
if (CBSUtil.CENTRALIZED_PAYMENT_TYPE.equals(payRequestDTO.getBusType())){
payRequestDTO.setBusiStep("1");
payRequestDTO.setApplyUnitCode(paymentEntity.getPayCompanyCode());
payRequestDTO.setPayAccount(null);
}
List<PayRequestDTO> list = new ArrayList<>();
list.add(payRequestDTO);
String requestData = JSONObject.toJSONString(list);
System.out.println("明文参数:"+requestData);
//签名
long timestamp = System.currentTimeMillis();
String sign = CBSUtil.sign(requestData,timestamp);
//加密
byte[] encryptedData = CBSUtil.encrypt(requestData);
Map<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());
byte[] bodyByte = HttpRequest.post("https://cbs8-openapi-reprd.csuat.cmburl.cn/openapi/payment/openapi/v1/payment-apply-common").addHeaders(header).body(encryptedData).execute().bodyBytes();
String decrypt = CBSUtil.decrypt(bodyByte);
System.out.println(decrypt);
}
}
@Test
public void seeyonExtTest(){
JSONObject jsonStr = new JSONObject();
jsonStr.put("integration_task_living_details_id","4276973516873482804");
JSONObject requestJson = new JSONObject();
requestJson.put("jsonStr", JSON.toJSONString(jsonStr));
try {
seeyonExtPluginInitializer.executeBusiness(requestJson);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
@Test
public void test01() {
String a = AESUtil.encrypt("hzya@1314");
System.out.println(a);
//String sa= "{\n \\"status\\": \\"success\\",\n \\"data\\": \\"[{\\\\"pk_corp\\\\":\\\\"1001\\\\",\\\\"unitcode\\\\":\\\\"01\\\\",\\\\"unitname\\\\":\\\\"临安奥星电子股份有限公司\\\\",\\\\"createdate\\\\":\\\\"2024-04-24\\\\",\\\\"deptattr\\\\":\\\\"1\\\\",\\\\"deptname\\\\":\\\\"DEV测试一级部门\\\\",\\\\"deptcode\\\\":\\\\"99\\\\",\\\\"pk_deptdoc\\\\":\\\\"1001F1100000000067AS\\\\"}]\\",\n \\"taskNumber\\": \\"202404250041\\"\n}";
String b = AESUtil.decrypt("62e4295b615a30dbf3b8ee96f41c820b");
System.out.println(b);
}
@Resource
private MongoTemplate mongoTemplate;
@Test
public void mongodbTest() {
boolean flag = true;
TestUser testUser = new TestUser("1","张三","U001");
for (int i = 0; i < 20; i++) {
int a = i+4;
TestUser user = new TestUser(String.valueOf(a),"张三"+a,"U00"+a);
//mongoTemplate.insert(user,"user");
}
//新增数据
//mongoTemplate.insert(testUser,"user");
System.out.println(testUser.toString());
//新增或修改数据
testUser.setName("李四");
//mongoTemplate.save(testUser,"user");
System.out.println(testUser.toString());
//批量新增
TestUser testUser1 = new TestUser("2","王武","U002");
TestUser testUser2 = new TestUser("3","赵六","U003");
List<TestUser> testUsers = new ArrayList<>();
testUsers.add(testUser1);
testUsers.add(testUser2);
//mongoTemplate.insert(testUsers,"user");
//修改数据
Query query= new Query(Criteria.where("id").is(testUser1.getId()));
//更新值
Update update= new Update().set("name", testUser1.getName()+"up").set("code", testUser1.getCode());
//更新查询满足条件的文档数据全部
//UpdateResult result = mongoTemplate.updateMulti(query, update, TestUser.class,"user");
//if(result!=null){
// System.out.println("更新条数:" + result.getMatchedCount());
//}
//删除数据
Query query1 = new Query(Criteria.where("_id").is(testUser1.getId()));
//List<TestUser> result1= mongoTemplate.findAllAndRemove(query1, TestUser.class,"user");
//System.out.println("删除的文档数据:" + result1.toString());
//查询所有
//List<TestUser> list = mongoTemplate.findAll(TestUser.class, "user");
//System.out.println(list.toString());
//根据id查询注意是文档的id不是数据行的id
//TestUser result2 = mongoTemplate.findById("1", TestUser.class,"user");
//System.out.println("查询结果:" + result2.toString());
//查询一条数据
Query query2 = new Query(Criteria.where("name").is("赵六"));
TestUser result3 = mongoTemplate.findOne(query2, TestUser.class,"user");
System.out.println("查询结果:" + result3.toString());
//模糊查询
Query query9 = new Query(Criteria.where("name").regex("张三"));
List<TestUser> result9 = mongoTemplate.find(query9, TestUser.class,"user");
System.out.println("查询结果:" + result9.toString());
//查询列表单个查询条件
Query query4 = new Query(Criteria.where("name").is(testUser.getName()));
List<TestUser> result4 = mongoTemplate.find(query4, TestUser.class,"user");
System.out.println("查询结果:" + result4.toString());
// 查询列表多个查询条件
Criteria criteriaUserName = Criteria.where("name").is(testUser.getName());
Criteria criteriaPassWord = Criteria.where("code").is(testUser.getCode());
// 创建条件对象将上面条件进行 AND 关联
Criteria criteria = new Criteria().andOperator(criteriaUserName, criteriaPassWord);
// 创建查询对象然后将条件对象添加到其中
Query query5 = new Query(criteria);
List<TestUser> result5 = mongoTemplate.find(query5, TestUser.class,"user");
System.out.println("查询结果:" + result5.toString());
// 创建条件对象将上面条件进行 OR 关联
Criteria criteria1 = new Criteria().orOperator(criteriaUserName, criteriaPassWord);
// 创建查询对象然后将条件对象添加到其中
Query query6 = new Query(criteria1);
List<TestUser> result6 = mongoTemplate.find(query6, TestUser.class,"user");
System.out.println("查询结果:" + result6.toString());
// 创建条件对象条件进行 in 关联
List<String> ids = Arrays.asList("1", "2");
// 创建条件
Criteria criteria7 = Criteria.where("id").in(ids);
// 创建查询对象然后将条件对象添加到其中
Query query7 = new Query(criteria7);
List<TestUser> result7 = mongoTemplate.find(query7, TestUser.class,"user");
System.out.println("查询结果:" + result7.toString());
//从第一行开始查询2条数据返回
Query query8 = new Query(Criteria.where("name").is(testUser.getName())).with(Sort.by("code")).limit(2).skip(0);
List<TestUser> result8 = mongoTemplate.find(query8, TestUser.class,"user");
System.out.println("查询结果:" + result8.toString());
Query query10 = new Query(Criteria.where("name").is(testUser.getName()));
long count = mongoTemplate.count(query10,"user");
System.out.println("统计结果:" + count);
}
}

View File

@ -18,6 +18,7 @@
<configuration>
<mainClass>none</mainClass> <!-- 取消查找本项目下的Main方法为了解决Unable to find main class的问题 -->
<classifier>execute</classifier> <!-- 为了解决依赖模块找不到此模块中的类或属性 -->
<skip>true</skip>
</configuration>
<executions>
<execution>

View File

@ -73,7 +73,6 @@ public interface IBaseDao<E extends Serializable, PK extends Serializable> {
* @return
*/
int delete(String paramString, Object paramObject);
/**
* 修改
* @param paramString sqlMapperID
@ -178,6 +177,8 @@ public interface IBaseDao<E extends Serializable, PK extends Serializable> {
*/
Integer getCount(E paramE);
Integer getCount(String statement,Object baseEntity);
/**
* 分页查询
* @param paramString mapperID

View File

@ -276,6 +276,11 @@ public abstract class MybatisGenericDao<E extends Serializable, PK extends Seria
return list;
}
@Override
public Integer getCount(String statement,Object baseEntity) {
Integer totalCount = this.sqlSession.selectOne(statement, baseEntity);
return totalCount;
}
public List<E> query(Object baseEntity) {
Assert.notNull(baseEntity, "query baseEntity :不能为NULL");

View File

@ -11,6 +11,7 @@ import org.apache.ibatis.session.SqlSessionFactory;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Lazy;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.stereotype.Component;
@ -26,103 +27,10 @@ import java.util.Properties;
* @Date: 2020/3/31 10:25
* 数据源工具类
*/
//@Component
//@Lazy(value = false)
@Component
public class DataSourceUtil {
//DATASOURCECODE
public static final ThreadLocal<BaseEntity> myContextThreadLocal = new ThreadLocal<>();
private static final Logger logger = LoggerFactory.getLogger(DataSourceUtil.class);
//SqlSessionFactory容器
private static final Map<String, SqlSessionFactory> SQLSESSIONFACTORYMAP = new HashMap<>();
//dataSource容器
private final Map<String, DruidDataSource> DATASOURCEMAP = new HashMap<>();
// 通过依赖注入获取 DynamicRoutingDataSource 对象
@Resource
private DynamicRoutingDataSource ds;
/****
* 根据dataSourceKey 打开 SqlSession ,如果获取不到SqlSessionFactory 会抛出异常
* @content:
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2024-02-22 14:50
* @param
* @return org.apache.ibatis.session.SqlSession
**/
public synchronized static SqlSession getSqlSession() {
String dsKey = "master"; // 根据业务逻辑确定要使用的数据源名称
BaseEntity entity = DataSourceUtil.myContextThreadLocal.get();
if(null != entity ){
dsKey = entity.getDataSourceCode();
}
// 通过 DynamicRoutingDataSource 获取当前数据源
// ds.getDataSource(dsKey);
SqlSessionFactory factory = getSqlSessionFactoryByCache(dsKey);
if (null == factory) {
throw new BaseSystemException("根据dataSourceKey获取SqlSessionFactory 失败!请联系管理员");
} else {
return factory.openSession();
}
}
/****
* 根据dataSourceKey获取缓存内的SqlSessionFactory,如果获取不到会抛出异常信息
* @content:
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2024-02-22 14:44
* @param
* @return org.apache.ibatis.session.SqlSessionFactory
**/
public static SqlSessionFactory getSqlSessionFactoryByCache(String dataSourceKey) {
SqlSessionFactory sqlSessionFactory = SQLSESSIONFACTORYMAP.get(dataSourceKey);
if (null == sqlSessionFactory) {
throw new BaseSystemException("根据当前dataSourceKey获取SqlSessionFactory失败,请联系系统管理员dataSourceKey:" + dataSourceKey);
}
return sqlSessionFactory;
}
/****
* 根据 dataSource 创建SqlSessionFactory,并放入map缓存 dataSourceKey
* @content:
* @author 👻👻👻👻👻👻👻👻 gjh
* @date 2024-02-22 14:38
* @param
* @return org.apache.ibatis.session.SqlSessionFactory
**/
public static SqlSessionFactory createSqlSessionFactoryToCache(String dataSourceKey, DataSource dataSource) {
SqlSessionFactory sqlSessionFactory = createSqlSessionFactory(dataSource);
SQLSESSIONFACTORYMAP.put(dataSourceKey, sqlSessionFactory);
return sqlSessionFactory;
}
//创建sqlSessionFactory
public static SqlSessionFactory createSqlSessionFactory(DataSource dataSource) throws BaseSystemException {
try {
if (null != dataSource) {
SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
//数据源
sqlSessionFactoryBean.setDataSource(dataSource);
//mybatis的config文件
PathMatchingResourcePatternResolver configLocationResolver = new PathMatchingResourcePatternResolver();
sqlSessionFactoryBean.setConfigLocation(configLocationResolver.getResource("classpath:mybatis/mybatis-config.xml"));
//xml
PathMatchingResourcePatternResolver resourcePatternResolver = new PathMatchingResourcePatternResolver();
sqlSessionFactoryBean.setMapperLocations(resourcePatternResolver.getResources("classpath*:com/hzya/**/*.xml"));
sqlSessionFactoryBean.setDatabaseIdProvider(getDatabaseIdProvider());
return sqlSessionFactoryBean.getObject();
} else {
logger.info("======================创建sqlSessionFactory失败===========================");
throw new BaseSystemException("创建sqlSessionFactory失败");
}
} catch (Exception e) {
logger.info("======================创建sqlSessionFactory失败===========================");
throw new BaseSystemException("创建sqlSessionFactory失败" + e.getMessage());
}
}
public static DatabaseIdProvider getDatabaseIdProvider() {
@Bean
public DatabaseIdProvider getDatabaseIdProvider() {
//DBMS 后缀
//Oracle oracle
//DB2 db2
@ -144,9 +52,4 @@ public class DataSourceUtil {
dbProvider.setProperties(setPro);
return dbProvider;
}
public Map<String, DruidDataSource> getDataSourceMap() {
return DATASOURCEMAP;
}
}

View File

@ -12,7 +12,7 @@ public class DataSourceUtilProperties {
public static final String MYSQLDRIVER_6 = "com.mysql.jdbc.Driver"; // mysql数据库的驱动类
public static final String MYSQLDRIVER = "com.mysql.jdbc.Driver"; // mysql数据库的驱动类
public static final String ORACLEDRIVER = "oracle.jdbc.OracleDriver"; // oracles数据库的驱动类
public static final String SQL2005DRIVER = "net.sourceforge.jtds.jdbc.Driver"; // sqlserver数据库的驱动类
public static final String SQL2005DRIVER = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; // sqlserver数据库的驱动类
public static final String SQL2000DRIVER = "net.sourceforge.jtds.jdbc.Driver"; // sqlserver数据库的驱动类
public static final String dm = "dm.jdbc.driver.DmDriver"; // 达梦数据库的驱动类

View File

@ -53,7 +53,7 @@ public class ExecSqlServiceImpl implements IExecSqlService {
public List<HashMap<String, Object>> execSelectSql(ExecSqlEntity entity) throws RuntimeException {
List<HashMap<String, Object>> list = new ArrayList<>();
logger.info("=============进入execSelectSql方法============");
if (null != entity && ObjectUtils.isEmpty(entity.getSql())) {
if (null != entity && null!=entity.getSql()) {
//sqlsession
// SqlSession sqlSession = getSqlSession(entity.getDatasource_code());
// SqlSession sqlSession = new DataSourceUtil().getDefaultSqlSession();
@ -61,7 +61,7 @@ public class ExecSqlServiceImpl implements IExecSqlService {
logger.info("=============execSelectSql方法要执行的sql============" + select_sql);
if (!select_sql.contains("update") && !select_sql.contains("delete")
&& !select_sql.contains("insert") && !select_sql.contains("create")) {
list = sqlSession.selectList("com.hzya.frame.sysnew.execsql.entity.ExecSqlEntity.ExecSqlEntity_execsql", entity);
list = sqlSession.selectList("com.hzya.frame.execsql.entity.ExecSqlEntity.ExecSqlEntity_execsql", entity);
logger.info("===========execSelectSql方法返回的结果条数=============" + list.size());
}
//sqlSession.close();

View File

@ -0,0 +1,58 @@
package com.hzya.frame.util;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.web.exception.BaseSystemException;
import groovy.lang.GroovyClassLoader;
import groovy.lang.GroovyObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Groovy脚本执行工具类
* @author 👻👻👻👻👻👻👻👻👻👻 gjh
* @version 1.0
* @content
* @date 2024-05-16 13:44
*/
public class GroovyUtil {
private static final Logger logger = LoggerFactory.getLogger(GroovyUtil.class);
public static Object execute(JSONObject reqData) {
JSONObject jsonObject = JSON.parseObject(reqData.getString("jsonStr"));
//JSON参数
String parameterJson = jsonObject.getString("parameterJson");
String methodStr = jsonObject.getString("methodStr");
//TODO 后续根据存储的数据库编码拼接生成
String className = jsonObject.getString("className");
//组装GroovyClassScript
StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append(" class ");
stringBuffer.append(className);
stringBuffer.append(" {");
stringBuffer.append(" String execute (String jsonStr){");
stringBuffer.append(methodStr);
stringBuffer.append(" }");
stringBuffer.append(" }");
logger.info("Groovy Class 组装结果 "+ stringBuffer.toString());
// 创建GroovyClassLoader实例
GroovyClassLoader groovyClassLoader = new GroovyClassLoader();
// 动态编译和加载Groovy脚本
Class<?> groovyClass = groovyClassLoader.parseClass(stringBuffer.toString());
// 创建Groovy类的实例
GroovyObject groovyObject = null;
try {
groovyObject = (GroovyObject) groovyClass.newInstance();
}catch (Exception e){
logger.info("创建newInstance失败:"+ e);
throw new BaseSystemException(e);
}
Object returnObj = groovyObject.invokeMethod("execute",parameterJson);
logger.info("执行脚本结束:"+returnObj);
return returnObj;
}
}

View File

@ -26,6 +26,7 @@
<configuration>
<mainClass>none</mainClass> <!-- 取消查找本项目下的Main方法为了解决Unable to find main class的问题 -->
<classifier>execute</classifier> <!-- 为了解决依赖模块找不到此模块中的类或属性 -->
<skip>true</skip>
</configuration>
<executions>
<execution>

141
pom.xml
View File

@ -23,8 +23,8 @@
<maven.compiler.target>1.8</maven.compiler.target>
<junit.version>4.12</junit.version>
<fastjson.version>2.0.33</fastjson.version>
<spring-boot-starter-web.version>2.7.4</spring-boot-starter-web.version>
<spring-boot-starter-tomcat.version>2.7.4</spring-boot-starter-tomcat.version>
<spring-boot-starter-web.version>2.7.18</spring-boot-starter-web.version>
<spring-boot-starter-tomcat.version>2.7.18</spring-boot-starter-tomcat.version>
<p6spy.version>3.9.1</p6spy.version>
<gson.version>2.8.5</gson.version>
<zxing.version>3.3.0</zxing.version>
@ -35,7 +35,7 @@
<!-- <mysql-connector-j.version>8.0.33</mysql-connector-j.version>-->
<mysql-connector-java>5.1.49</mysql-connector-java>
<pagehelper-spring-boot-starter.version>1.4.6</pagehelper-spring-boot-starter.version>
<spring-boot-starter-cache.version>2.7.4</spring-boot-starter-cache.version>
<spring-boot-starter-cache.version>2.7.18</spring-boot-starter-cache.version>
<sa.token.version>1.30.0</sa.token.version>
<lang3.version>3.13.0</lang3.version>
<commons.io.version>2.6</commons.io.version>
@ -53,18 +53,23 @@
<ojdbc6.version>11.2.0.4</ojdbc6.version>
<dynamic-datasource-spring-boot-starter.version>3.5.2</dynamic-datasource-spring-boot-starter.version>
<druid-spring-boot-starter.version>1.2.18</druid-spring-boot-starter.version>
<spring-boot-starter-test.version>2.7.4</spring-boot-starter-test.version>
<spring-boot.version>2.7.4</spring-boot.version>
<spring-boot-starter-aop.version>2.7.4</spring-boot-starter-aop.version>
<spring-boot-starter-test.version>2.7.18</spring-boot-starter-test.version>
<spring-boot.version>2.7.18</spring-boot.version>
<spring-boot-starter-aop.version>2.7.18</spring-boot-starter-aop.version>
<unit.version>4.12</unit.version>
<quartz.version>2.3.0</quartz.version>
<org.springframework.version>5.3.23</org.springframework.version>
<minio.version>8.0.3</minio.version>
<postgresql.version>42.2.6</postgresql.version>
<jimureport.version>1.7.4</jimureport.version>
<dingtalk-stream-sdk.version>1.3.7</dingtalk-stream-sdk.version>
<dingtalk-sdk.version>2.1.46</dingtalk-sdk.version>
<!-- <groovy.version>4.0.15</groovy.version>-->
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.4</version>
<version>2.7.18</version>
<relativePath/>
<!-- lookup parent from repository -->
</parent>
@ -171,7 +176,10 @@
<artifactId>mysql-connector-java</artifactId>
<version>${mysql-connector-java}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
@ -268,6 +276,11 @@
<version>${lombok.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>6.4.0.jre8</version>
</dependency>
<!--sqlserver-->
<!-- <dependency>-->
<!-- <groupId>com.microsoft.sqlserver</groupId>-->
@ -331,6 +344,61 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<!-- postgresql驱动 -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
<scope>runtime</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.groovy/groovy-all -->
<dependency>
<groupId>org.apache.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>4.0.21</version>
<type>pom</type>
</dependency>
<!-- flyway依赖包 -->
<!-- <dependency>-->
<!-- <groupId>org.flywaydb</groupId>-->
<!-- <artifactId>flyway-core</artifactId>-->
<!-- <version>5.2.1</version>-->
<!-- </dependency>-->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
<version>8.5.13</version>
</dependency>
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mysql</artifactId>
<version>8.5.13</version>
</dependency>
<dependency>
<groupId>com.yomahub</groupId>
<artifactId>tlog-all-spring-boot-starter</artifactId>
<version>1.5.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>com.dingtalk.open</groupId>
<artifactId>app-stream-client</artifactId>
<version>${dingtalk-stream-sdk.version}</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>dingtalk</artifactId>
<version>${dingtalk-sdk.version}</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>alibaba-dingtalk-service-sdk</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
<build>
@ -359,14 +427,40 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.7.4</version>
<version>2.7.18</version>
<configuration>
<finalName>${project.artifactId}</finalName>
<mainClass>none</mainClass> <!-- 取消查找本项目下的Main方法为了解决Unable to find main class的问题 -->
<classifier>execute</classifier> <!-- 为了解决依赖模块找不到此模块中的类或属性 -->
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<!--设置maven-war-plugins插件否则外部依赖无法打进war包-->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<webResources>
<resource>
<directory>${basedir}/../service/src/main/resources/lib</directory>
<targetPath>WEB-INF/lib/</targetPath>
<filtering>false</filtering>
<includes>
<!-- 匹配所有jar包 -->
<include>**/*.jar</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
</plugins>
<!--加载src/main/java下的xml-->
<resources>
@ -388,6 +482,7 @@
<include>**/*.xdb</include>
<!-- <include>**/*.jpg</include>-->
<include>**/*.txt</include>
<include>**/*.sql</include>
</includes>
<filtering>true</filtering>
</resource>
@ -402,6 +497,7 @@
<include>**/*.json</include>
<include>**/*.txt</include>
<!-- <include>**/*.jpg</include>-->
<include>**/*.sql</include>
</includes>
<filtering>true</filtering>
@ -410,10 +506,27 @@
</build>
<!--阿里云仓库:仓库优先级为:本地仓库(localRepositories) > profile中的repositories仓库 > POM > mirrors全局仓库 -->
<repositories>
<!-- <repository>-->
<!-- <id>spring-milestones</id>-->
<!-- <name>Spring Milestones</name>-->
<!-- <url>https://repo.spring.io/libs-milestone</url>-->
<!-- <snapshots>-->
<!-- <enabled>false</enabled>-->
<!-- </snapshots>-->
<!-- </repository>-->
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<id>aliyun</id>
<name>aliyun Repository</name>
<url>https://maven.aliyun.com/repository/public</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>jeecg</id>
<name>jeecg Repository</name>
<url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
<snapshots>
<enabled>false</enabled>
</snapshots>

View File

@ -21,6 +21,43 @@
<artifactId>mysql-connector-java</artifactId>
<version>${mysql-connector-java}</version>
</dependency>
<dependency>
<groupId>com.hzya.bip</groupId>
<artifactId>pubbaseapp_nccloud_rtLevel</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/pubbaseapp_nccloud_rtLevel-1.jar</systemPath>
</dependency>
<dependency>
<groupId>com.hzya.bipyonyoulog</groupId>
<artifactId>yonyoulog</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/yonyoulog.jar</systemPath>
</dependency>
<dependency>
<groupId>com.hzya.bcprov</groupId>
<artifactId>bcprov</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/bcprov-jdk15on-1.70.jar</systemPath>
</dependency>
<dependency>
<groupId>com.hzya.DataApiSdk</groupId>
<artifactId>DataApiSdk</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/DataApiSdk-jar-with-dependencies.jar</systemPath>
</dependency>
<dependency>
<groupId>com.hzya.openBasicSDK</groupId>
<artifactId>openBasicSDK</artifactId>
<version>1</version>
<scope>system</scope>
<systemPath>${basedir}/src/main/resources/lib/openBasicSDK-2.1.230630.jar</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
@ -30,6 +67,7 @@
<configuration>
<mainClass>none</mainClass> <!-- 取消查找本项目下的Main方法为了解决Unable to find main class的问题 -->
<classifier>execute</classifier> <!-- 为了解决依赖模块找不到此模块中的类或属性 -->
<skip>true</skip>
</configuration>
<executions>
<execution>

View File

@ -0,0 +1,13 @@
package com.hzya.frame.bip.v3.v2207.entity;
import com.hzya.frame.web.entity.BaseEntity;
/**
* com.hzya.frame.bip.v3.v2207.entity
*
* @author makejava
* @date 2024-05 -27 11:24
*/
public class BipTokenVo extends BaseEntity {
}

View File

@ -0,0 +1,31 @@
package com.hzya.frame.bip.v3.v2207.service;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.bip.v3.v2207.entity.BipTokenVo;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
import com.hzya.frame.web.entity.JsonResultEntity;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
public interface IBipSsoService extends IBaseService<BipTokenVo,String>{
/**
*
* @content Bip单点统一认证接口
* @author laborer
* @date 2024/5/30 0030 13:45
*
*/
String erpSso( HttpServletRequest request,String ticket)throws Exception;
/**
*
* @content 此方法获取sso动态加密heade参数动态传入
* @author laborer
* @date 2024/5/27 0027 11:38
*
*/
SysExtensionApiEntity ssoEncrypt(SysExtensionApiEntity entity);
}

View File

@ -0,0 +1,18 @@
package com.hzya.frame.bip.v3.v2207.service;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.bip.v3.v2207.entity.BipTokenVo;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
public interface IBipV32207BillService extends IBaseService<BipTokenVo,String>{
/**
*
* @content 此方法获取BIPtokenheade参数动态传入
* @author laborer
* @date 2024/5/27 0027 11:38
*
*/
SysExtensionApiEntity getBipBill(SysExtensionApiEntity entity);
}

View File

@ -0,0 +1,22 @@
package com.hzya.frame.bip.v3.v2207.service;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.bip.v3.v2207.entity.BipSupplierEntity;
import com.hzya.frame.bip.v3.v2207.entity.BipTokenVo;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
import com.hzya.frame.web.entity.JsonResultEntity;
public interface IBipV32207TokenService extends IBaseService<BipTokenVo,String>{
/**
*
* @content 此方法获取BIPtokenheade参数动态传入
* @author laborer
* @date 2024/5/27 0027 11:38
*
*/
SysExtensionApiEntity getBipToken(SysExtensionApiEntity entity);
}

View File

@ -0,0 +1,119 @@
package com.hzya.frame.bip.v3.v2207.service.impl;
import cn.hutool.core.util.StrUtil;
import cn.hutool.http.HttpException;
import cn.hutool.http.HttpRequest;
import cn.hutool.http.HttpUtil;
import com.alibaba.fastjson.JSON;
import com.hzya.frame.basedao.service.impl.BaseService;
import com.hzya.frame.bip.v3.v2207.entity.BipTokenVo;
import com.hzya.frame.bip.v3.v2207.service.IBipSsoService;
import com.hzya.frame.iputil.IPUtil;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
import nccloud.security.impl.SignatureTookKit;
import org.apache.commons.codec.binary.Base64;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import javax.servlet.http.HttpServletRequest;
import java.net.*;
import java.util.Enumeration;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
@Service(value = "BipSsoServiceImpl")
public class BipSsoServiceImpl extends BaseService<BipTokenVo, String> implements IBipSsoService {
private final Logger logger = LoggerFactory.getLogger(this.getClass());
private final String BASEURL = "http://192.168.2.237:8099/seeyon/thirdpartyController.do?ticket=";
private final String ESBURL = "http://127.0.0.1:9081/kangarooDataCenterV3/entranceController/externalCallInterface";
/**
*
* @content Bip单点统一认证接口
* @author laborer
* @date 2024/5/30 0030 13:45
*
*/
@Override
public String erpSso(HttpServletRequest request,String userCode)throws Exception {
logger.info("当前IP地址为"+ JSON.toJSONString(IPUtil.getIpAddress(request)));
String result = "";
boolean flag = true;
// logger.info("接收到致远OA认证参数的ticket{}",ticket);
//通过ticket获取OA用户信息
// String userCode = HttpUtil.get(BASEURL+ticket);
logger.info("获取到的OA用户信息{}",userCode);
String dsname = "ycjf";
String client_id = "OAREST";//第三方系统id
StringBuffer sb = new StringBuffer();
if(StrUtil.isNotEmpty(userCode)){
try {
logger.info("开始加密");
String security = genKey(userCode,userCode + (System.currentTimeMillis() + "").substring(0, 6));
logger.info("加密结束:{}",security);
sb.append("type=type_security&dsname="+dsname+"&usercode="+userCode+"&client_id="+client_id+"&security="+security);
String baseUrl = "http://10.75.51.78:8899/service/genThirdPartyAccessToken?"+sb.toString();
logger.info("请求BIPtokenbaseUrl{}",baseUrl);
result = HttpRequest.post(baseUrl)
.header("Content-Type", "application/x-www-form-urlencoded")//头信息多个头信息多次调用此方法即可
.header("Content-Length", "10000")//头信息多个头信息多次调用此方法即可
.header("userid", "admin")//头信息多个头信息多次调用此方法即可
.body("{}")//表单内容
.timeout(20000)//超时毫秒
.execute().body();
logger.info("获取到的BIPtoken信息{}",result);
} catch (HttpException e) {
flag=false;
e.printStackTrace();
}
}
if(flag){
String indexUR = "http://10.75.51.78:8899/nccloud/resources/uap/rbac/thirdpartylogin/main/index.html?accesstoken="+result+"&redirect_uri=http://10.75.51.78:8899/nccloud/resources/workbench/public/common/main/index.html#";
logger.info(indexUR);
return indexUR;
}else{
return "http://10.75.51.78:8899/nccloud/resources/uap/rbac/login/main/index.html";
}
}
/**
*
* @content 此方法获取sso动态加密heade参数动态传入
* @author laborer
* @date 2024/5/27 0027 11:38
*
*/
@Override
public SysExtensionApiEntity ssoEncrypt(SysExtensionApiEntity entity) {
try {
Map<String, String> headers = entity.getHeaders();
String userCode = headers.get("usercode");//用户编码
String dsname = headers.get("dsname");//数据源
String client_id = headers.get("client_id");//第三方系统id
StringBuffer sb = new StringBuffer();
String security = genKey(userCode,userCode + (System.currentTimeMillis() + "").substring(0, 6));
StringBuffer querys = new StringBuffer();
querys.append("type=type_security");
querys.append("&dsname="+dsname);
querys.append("&usercode="+userCode);
querys.append("&client_id="+client_id);
querys.append("&security="+security);
entity.setQuerys(querys.toString());
headers.put("Content-Type", "application/x-www-form-urlencoded");
headers.put("userid", "admin");
entity.setHeaders(headers);
} catch (Exception e) {
e.printStackTrace();
}
return entity;
}
/**获取NCC的key*/
private static String genKey(String userid, String key) throws Exception {
return new Base64().encodeToString(SignatureTookKit.digestSign(userid.getBytes(), key.getBytes()));
}
}

View File

@ -0,0 +1,62 @@
package com.hzya.frame.bip.v3.v2207.service.impl;
import com.hzya.frame.basedao.service.impl.BaseService;
import com.hzya.frame.bip.v3.v2207.entity.BipTokenVo;
import com.hzya.frame.bip.v3.v2207.service.IBipV32207BillService;
import com.hzya.frame.bip.v3.v2207.service.IBipV32207TokenService;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
import com.hzya.frame.util.bipV3.Encryption;
import com.hzya.frame.util.bipV3.SHA256Util;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import java.net.URLEncoder;
import java.util.HashMap;
import java.util.Map;
@Service(value = "BipV32207BillServiceImpl")
public class BipV32207BillServiceImpl extends BaseService<BipTokenVo, String> implements IBipV32207BillService {
private final Logger logger = LoggerFactory.getLogger(this.getClass());
/**
*
* @content 此方法获取拼接单据动态加密heade参数动态传入
* @author laborer
* @date 2024/5/27 0027 11:38
*
*/
@Override
public SysExtensionApiEntity getBipBill(SysExtensionApiEntity entity) {
try {
Map<String, String> headers = entity.getHeaders();
String client_id = headers.get("client_id");
//token信息
String access_token = headers.get("access_token");
//公钥
String pubKey = headers.get("pubKey");
StringBuffer sb = new StringBuffer();
sb.append(client_id);
String parm = entity.getBodys();
if (StringUtils.isNotBlank(parm)) {
sb.append(parm);
}
sb.append(pubKey);
// 签名
String sign = SHA256Util.getSHA256(sb.toString(), pubKey);
StringBuffer querys = new StringBuffer();
querys.append("access_token="+access_token);
querys.append("&signature="+sign);
querys.append("&client_id="+client_id);
entity.setQuerys(querys.toString());
headers.put("signature",sign);
// headers.put("content-type","application/x-www-form-urlencoded");
} catch (Exception e) {
e.printStackTrace();
}
return entity;
}
}

View File

@ -0,0 +1,92 @@
package com.hzya.frame.bip.v3.v2207.service.impl;
import cn.hutool.http.HttpRequest;
import cn.hutool.json.JSONUtil;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson2.JSON;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.basedao.service.impl.BaseService;
import com.hzya.frame.bip.v3.v2207.dao.IBipOrgsDao;
import com.hzya.frame.bip.v3.v2207.dao.IBipOrgsDetailsDao;
import com.hzya.frame.bip.v3.v2207.dao.IBipSupplierDao;
import com.hzya.frame.bip.v3.v2207.dao.IBipSupplierDetailsDao;
import com.hzya.frame.bip.v3.v2207.entity.*;
import com.hzya.frame.bip.v3.v2207.service.IBipV32207Service;
import com.hzya.frame.bip.v3.v2207.service.IBipV32207TokenService;
import com.hzya.frame.dateutil.DateUtil;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
import com.hzya.frame.util.PluginUtils;
import com.hzya.frame.util.bipV3.Encryption;
import com.hzya.frame.util.bipV3.SHA256Util;
import com.hzya.frame.util.oldNcc.CompressUtil;
import com.hzya.frame.util.oldNcc.Decryption;
import com.hzya.frame.web.entity.BaseResult;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.net.URLEncoder;
import java.util.*;
@Service(value = "bipV32207TokenService")
public class BipV32207TokenServiceImpl extends BaseService<BipTokenVo, String> implements IBipV32207TokenService {
private final Logger logger = LoggerFactory.getLogger(this.getClass());
/**
*
* @content 此方法获取BIPtokenheade参数动态传入
* @author laborer
* @date 2024/5/27 0027 11:38
*
*/
@Override
public SysExtensionApiEntity getBipToken(SysExtensionApiEntity entity) {
try {
Map<String, String> headers = entity.getHeaders();
String client_id = headers.get("client_id");
Map<String, String> paramMap = new HashMap<String, String>();
// 密码模式认证
paramMap.put("grant_type", "client_credentials");
// 第三方应用id
paramMap.put("client_id", client_id);
// 第三方应用secret]
String client_secret = headers.get("client_secret");
// 账套编码
String busi_center = headers.get("busi_center");
//用户编码
String usercode = headers.get("usercode");
//数据库编码
String dsname = headers.get("dsname");
String pubKey = headers.get("pubKey");
// 第三方应用secret 公钥加密]
paramMap.put("client_secret", URLEncoder.encode(Encryption.pubEncrypt(pubKey, client_secret), "utf-8"));
// 账套编码
paramMap.put("biz_center", busi_center);
// // TODO 传递数据源和ncc登录用户
paramMap.put("dsname", dsname);
paramMap.put("usercode", usercode);
// 签名
String sign = SHA256Util.getSHA256(client_id + client_secret + pubKey,pubKey);
paramMap.put("signature", sign);
StringBuffer querys = new StringBuffer();
querys.append("biz_center="+busi_center);
querys.append("&grant_type="+"client_credentials");
querys.append("&signature="+sign);
querys.append("&dsname="+dsname);
querys.append("&client_secret="+URLEncoder.encode(Encryption.pubEncrypt(pubKey, client_secret), "utf-8"));
querys.append("&usercode="+usercode);
querys.append("&client_id="+client_id);
entity.setQuerys(querys.toString());
headers.put("content-type","application/x-www-form-urlencoded");
} catch (Exception e) {
e.printStackTrace();
}
return entity;
}
}

View File

@ -0,0 +1,65 @@
package com.hzya.frame.bip.v3.v2207.util;
import cn.hutool.core.util.StrUtil;
import cn.hutool.http.HttpRequest;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
/**
* com.hzya.frame.bip.v3.v2207.util
*
* @author makejava
* @date 2024-05 -30 14:20
*/
public class BipUtil {
/**
*
* @content 发送单据到BIP系统
* @author laborer
* @date 2024/6/21 0021 10:51
*
*/
public static String sendU9cTOBipEsb(String parm, String apiCode,String token){
String baseUrl = "http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface";
System.out.println("推送参数"+parm);
String result = HttpRequest.post(baseUrl)
.header("appId", "800023")//头信息多个头信息多次调用此方法即可
.header("access_token", token)//头信息多个头信息多次调用此方法即可
.header("apiCode", apiCode)//头信息多个头信息多次调用此方法即可
.header("publicKey", "ZJYA1vBeY1ai53iNmbAEsw6DImjkXGBkdMailxcBdliFC85Ce7eDIk+3zDUT+v578prj")//头信息多个头信息多次调用此方法即可
.header("secretKey", "7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")//头信息多个头信息多次调用此方法即可
.body(parm)//表单内容
.timeout(20000)//超时毫秒
.execute().body();
System.out.println("返回参数"+result);
if(StrUtil.isNotEmpty(result)){
return analytic(result);
}
return null;
}
public static String getBipToken(String userCode, String apiCode){
String baseUrl = "http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface";
String result = HttpRequest.post(baseUrl)
.header("appId", "800023")//头信息多个头信息多次调用此方法即可
.header("apiCode", apiCode)//头信息多个头信息多次调用此方法即可
.header("usercode", userCode)//头信息多个头信息多次调用此方法即可
.header("publicKey", "ZJYA1vBeY1ai53iNmbAEsw6DImjkXGBkdMailxcBdliFC85Ce7eDIk+3zDUT+v578prj")//头信息多个头信息多次调用此方法即可
.header("secretKey", "7Gp6OjHrIaQ6R3tXGPrI4morjQyWL+qu4JJschQnkBRtv26VDgGFVYKOy5kMZfd/j3JzOP8MtA1LSGvL+2BWG8c/o7DKi92S4mr3zcGearA=")//头信息多个头信息多次调用此方法即可
.body("")//表单内容
.timeout(20000)//超时毫秒
.execute().body();
System.out.println("返回参数"+result);
if(StrUtil.isNotEmpty(result)){
JSONObject obj = JSON.parseObject( analytic(result));
JSONObject data = obj.getJSONObject("data");
return data.getString("access_token");
}
return null;
}
public static String analytic(String parm){
JSONObject main = JSON.parseObject(parm);
return main.getString("attribute");
}
}

View File

@ -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;
}
}

View File

@ -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;
}
}

View File

@ -0,0 +1,134 @@
package com.hzya.frame.cbs8.dto.req;
import java.util.List;
/**
* @Description 电子回单查询请求参数
* @Author xiangerlin
* @Date 2024/1/4 17:08
**/
public class ElecRequestDTO {
// 开始日期
private String startDate;
// 结束日期
private String endDate;
// 账号
private String accountNo;
// 币种列表
private List<String> currencyList;
// 银行类型列表
private List<String> bankTypeList;
// 回单文件状态 1-已取回 0-未取回
private String billStatus;
// 借贷 1- 2-
private String loanType;
// 单位编码列表
private List<String> unitCodeList;
// 对账码列表
private List<String> checkCodeList;
// ERP业务参考号
private String settleBusinessReferenceCode;
public ElecRequestDTO(String settleBusinessReferenceCode) {
this.settleBusinessReferenceCode = settleBusinessReferenceCode;
}
public ElecRequestDTO(String startDate, String endDate, String settleBusinessReferenceCode) {
this.startDate = startDate;
this.endDate = endDate;
this.settleBusinessReferenceCode = settleBusinessReferenceCode;
}
public ElecRequestDTO() {
}
public String getStartDate() {
return startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getAccountNo() {
return accountNo;
}
public void setAccountNo(String accountNo) {
this.accountNo = accountNo;
}
public List<String> getCurrencyList() {
return currencyList;
}
public void setCurrencyList(List<String> currencyList) {
this.currencyList = currencyList;
}
public List<String> getBankTypeList() {
return bankTypeList;
}
public void setBankTypeList(List<String> bankTypeList) {
this.bankTypeList = bankTypeList;
}
public String getBillStatus() {
return billStatus;
}
public void setBillStatus(String billStatus) {
this.billStatus = billStatus;
}
public String getLoanType() {
return loanType;
}
public void setLoanType(String loanType) {
this.loanType = loanType;
}
public List<String> getUnitCodeList() {
return unitCodeList;
}
public void setUnitCodeList(List<String> unitCodeList) {
this.unitCodeList = unitCodeList;
}
public List<String> getCheckCodeList() {
return checkCodeList;
}
public void setCheckCodeList(List<String> checkCodeList) {
this.checkCodeList = checkCodeList;
}
public String getSettleBusinessReferenceCode() {
return settleBusinessReferenceCode;
}
public void setSettleBusinessReferenceCode(String settleBusinessReferenceCode) {
this.settleBusinessReferenceCode = settleBusinessReferenceCode;
}
}

View File

@ -0,0 +1,272 @@
package com.hzya.frame.cbs8.dto.req;
/**
* @Description 经办支付请求DTO
* @Author xiangerlin
* @Date 2024/1/3 09:02
**/
public class PayRequestDTO {
private String referenceNum;//业务参考号必填
private String busType;//业务类型 必填
private String amount;//金额 必填
private String currency;//币种编码必填
private String payAccount;//付款账号非集中支付模式必填
private String revAccount;//收款账号 必填
private String revAccountName;//收款方户名 必填
private String revBankType;//收款银行类型编码必填
private String revBankName;//收款开户行名称
private String cnapsCode;//联行号 必填
private String purpose;//支付用途 必填
private String innerAccount;//内部账号
private String revBankArea;//收款银行地区名称
private String revProvince;//收款人省
private String revCity;//收款人市
private String bankNum;//收款地区码银行号
private String summary;//该笔支付备注
private String expectTime;//期望支付时间
private String personalFlag;//公私标记 1对私 0对公
private String urgentTag;//加急1加急0不加2特急
private String realTimeTag;//是否实时 1实时0落地
private String cityFlag;//同城标志 0同城1异地
private String payChannel;//支付渠道
private String busiStep;//业务步数 集中支付需要传1其他不用传
private String applyUnitCode;//申请人单位号集中支付必传
private String displayApplyUnitCode;//申请人单位号前端显示集中支付如果传了会将其转化为applyUnitCode
private String erpExtend1;//客户备用字段1
private String erpExtend2;//客户备用字段2
private String erpExtend3;//客户备用字段3
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 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 getRevBankType() {
return revBankType;
}
public void setRevBankType(String revBankType) {
this.revBankType = revBankType;
}
public String getRevBankName() {
return revBankName;
}
public void setRevBankName(String revBankName) {
this.revBankName = revBankName;
}
public String getCnapsCode() {
return cnapsCode;
}
public void setCnapsCode(String cnapsCode) {
this.cnapsCode = cnapsCode;
}
public String getPurpose() {
return purpose;
}
public void setPurpose(String purpose) {
this.purpose = purpose;
}
public String getInnerAccount() {
return innerAccount;
}
public void setInnerAccount(String innerAccount) {
this.innerAccount = innerAccount;
}
public String getRevBankArea() {
return revBankArea;
}
public void setRevBankArea(String revBankArea) {
this.revBankArea = revBankArea;
}
public String getRevProvince() {
return revProvince;
}
public void setRevProvince(String revProvince) {
this.revProvince = revProvince;
}
public String getRevCity() {
return revCity;
}
public void setRevCity(String revCity) {
this.revCity = revCity;
}
public String getBankNum() {
return bankNum;
}
public void setBankNum(String bankNum) {
this.bankNum = bankNum;
}
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 getPayChannel() {
return payChannel;
}
public void setPayChannel(String payChannel) {
this.payChannel = payChannel;
}
public String getBusiStep() {
return busiStep;
}
public void setBusiStep(String busiStep) {
this.busiStep = busiStep;
}
public String getApplyUnitCode() {
return applyUnitCode;
}
public void setApplyUnitCode(String applyUnitCode) {
this.applyUnitCode = applyUnitCode;
}
public String getDisplayApplyUnitCode() {
return displayApplyUnitCode;
}
public void setDisplayApplyUnitCode(String displayApplyUnitCode) {
this.displayApplyUnitCode = displayApplyUnitCode;
}
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;
}
}

View File

@ -0,0 +1,44 @@
package com.hzya.frame.cbs8.dto.req;
import java.util.List;
/**
* @Description 查询交易结果请求参数
* @Author xiangerlin
* @Date 2024/1/3 09:46
**/
public class PayResultRequestDTO {
public PayResultRequestDTO() {
}
public PayResultRequestDTO(String referenceNum) {
this.referenceNum = referenceNum;
}
private String referenceNum;//业务参考号必填
private List<String> statusList;//状态
private List<String> payStatusList;//支付状态
public String getReferenceNum() {
return referenceNum;
}
public void setReferenceNum(String referenceNum) {
this.referenceNum = referenceNum;
}
public List<String> getStatusList() {
return statusList;
}
public void setStatusList(List<String> statusList) {
this.statusList = statusList;
}
public List<String> getPayStatusList() {
return payStatusList;
}
public void setPayStatusList(List<String> payStatusList) {
this.payStatusList = payStatusList;
}
}

View File

@ -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;
}
}

View File

@ -0,0 +1,245 @@
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;
private String bankExtend2;
private String bankExtend3;
private String bankExtend4;
private String bankExtend5;
private String bankExtend6;
private String bankExtend7;
private String bankExtend8;
//客户备用字段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;
}
public String getBankExtend2() {
return bankExtend2;
}
public void setBankExtend2(String bankExtend2) {
this.bankExtend2 = bankExtend2;
}
public String getBankExtend3() {
return bankExtend3;
}
public void setBankExtend3(String bankExtend3) {
this.bankExtend3 = bankExtend3;
}
public String getBankExtend4() {
return bankExtend4;
}
public void setBankExtend4(String bankExtend4) {
this.bankExtend4 = bankExtend4;
}
public String getBankExtend5() {
return bankExtend5;
}
public void setBankExtend5(String bankExtend5) {
this.bankExtend5 = bankExtend5;
}
public String getBankExtend6() {
return bankExtend6;
}
public void setBankExtend6(String bankExtend6) {
this.bankExtend6 = bankExtend6;
}
public String getBankExtend7() {
return bankExtend7;
}
public void setBankExtend7(String bankExtend7) {
this.bankExtend7 = bankExtend7;
}
public String getBankExtend8() {
return bankExtend8;
}
public void setBankExtend8(String bankExtend8) {
this.bankExtend8 = bankExtend8;
}
}

View File

@ -0,0 +1,164 @@
package com.hzya.frame.cbs8.dto.req;
import java.util.List;
/**
* @Description 查询境内交易明细参数
* @Author xiangerlin
* @Date 2024/1/3 09:55
**/
public class TransactionDetailReqDTO {
private int currentPage;//当前页码 从1开始
private int pageSize;//本次查询的记录数最大1000条
private String startDate;//开始日期
private String endDate;//结束日期
private String dateType;//日期类型0交易日期1起息日期
private List<String> accountNoList;//账户列表
private List<String> bankTypeList;//银行类型列表
private List<String> currencyList;//币种列表
private String detailedSources;//明细来源
private String currentFlag;//明细类型
private String loanType;//借贷类型 1 2
private List<String> accountNatureList;//账户性质列表
private String bankSerialNumber;//银行流水号
private String transactionSerialNumber;//交易流水号
private List<String> unitCodeList ;//单位编码列表
private String erpSerialNumber ;//erp业务参考号
public TransactionDetailReqDTO() {
}
public TransactionDetailReqDTO(String startDate, String endDate) {
this.startDate = startDate;
this.endDate = endDate;
}
public String getStartDate() {
return startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getDateType() {
return dateType;
}
public void setDateType(String dateType) {
this.dateType = dateType;
}
public List<String> getAccountNoList() {
return accountNoList;
}
public void setAccountNoList(List<String> accountNoList) {
this.accountNoList = accountNoList;
}
public List<String> getBankTypeList() {
return bankTypeList;
}
public void setBankTypeList(List<String> bankTypeList) {
this.bankTypeList = bankTypeList;
}
public List<String> getCurrencyList() {
return currencyList;
}
public void setCurrencyList(List<String> currencyList) {
this.currencyList = currencyList;
}
public String getDetailedSources() {
return detailedSources;
}
public void setDetailedSources(String detailedSources) {
this.detailedSources = detailedSources;
}
public String getCurrentFlag() {
return currentFlag;
}
public void setCurrentFlag(String currentFlag) {
this.currentFlag = currentFlag;
}
public String getLoanType() {
return loanType;
}
public void setLoanType(String loanType) {
this.loanType = loanType;
}
public List<String> getAccountNatureList() {
return accountNatureList;
}
public void setAccountNatureList(List<String> accountNatureList) {
this.accountNatureList = accountNatureList;
}
public String getBankSerialNumber() {
return bankSerialNumber;
}
public void setBankSerialNumber(String bankSerialNumber) {
this.bankSerialNumber = bankSerialNumber;
}
public String getTransactionSerialNumber() {
return transactionSerialNumber;
}
public void setTransactionSerialNumber(String transactionSerialNumber) {
this.transactionSerialNumber = transactionSerialNumber;
}
public List<String> getUnitCodeList() {
return unitCodeList;
}
public void setUnitCodeList(List<String> unitCodeList) {
this.unitCodeList = unitCodeList;
}
public String getErpSerialNumber() {
return erpSerialNumber;
}
public void setErpSerialNumber(String erpSerialNumber) {
this.erpSerialNumber = erpSerialNumber;
}
public int getCurrentPage() {
return currentPage;
}
public void setCurrentPage(int currentPage) {
this.currentPage = currentPage;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
}

View File

@ -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;
}
}

View File

@ -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;
}
}

View File

@ -0,0 +1,458 @@
package com.hzya.frame.cbs8.dto.res;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.annotation.JSONField;
import java.util.List;
/**
* @Description data节点
* @Author xiangerlin
* @Date 2024/1/2 09:26
**/
public class CbsResDataDTO {
private List<JSONObject> list;//明细数据
//------- 交易明细字段-----
private int endRow;
private Boolean hasNextPage;//是否有下一页
private Boolean hasPreviousPage;//是否有前一页
@JSONField(name = "isFirstPage")
private Boolean hasFirstPage;
@JSONField(name = "isLastPage")
private Boolean hasLastPage;
private int navigateFirstPage;
private int navigateLastPage;
private int navigatePages;
private int nextPage;
private int pageNum;
private int pageSize;
private int pages;
private int prePage;
private int size;
private int startRow;
private int total;
//------- 交易明细字段-----
//------经办支付返回参数------
private String busNum;//申请单编号
private String errorCode;//错误编码
private String errorMsg;//错误信息
private String freezeFlowNum;//内部户冻结流水号
private String recordNum;//批量经办序号
private String referenceNum;//业务参考号
private Boolean successed;//是否成功
//------经办支付返回参数------
//------查询交易结果返回参数-------
private String busType;//支付业务类型
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 payChannel;//支付渠道
private String status;//支付申请单状态
private String payStatus;//支付状态
private String payDate;//支付时间
private String planNumber;//计划流水号
private String planItemCode;//资金预算编号
private String planItemName;//预算名称
private String erpExtend1;//客户备用字段1
private String erpExtend2;//客户备用字段1
private String erpExtend3;//客户备用字段1
//------查询交易结果返回参数-------
public List<JSONObject> getList() {
return list;
}
public void setList(List<JSONObject> list) {
this.list = list;
}
public int getEndRow() {
return endRow;
}
public void setEndRow(int endRow) {
this.endRow = endRow;
}
public Boolean getHasNextPage() {
return hasNextPage;
}
public void setHasNextPage(Boolean hasNextPage) {
this.hasNextPage = hasNextPage;
}
public Boolean getHasPreviousPage() {
return hasPreviousPage;
}
public void setHasPreviousPage(Boolean hasPreviousPage) {
this.hasPreviousPage = hasPreviousPage;
}
public Boolean getHasFirstPage() {
return hasFirstPage;
}
public void setHasFirstPage(Boolean hasFirstPage) {
this.hasFirstPage = hasFirstPage;
}
public Boolean getHasLastPage() {
return hasLastPage;
}
public void setHasLastPage(Boolean hasLastPage) {
this.hasLastPage = hasLastPage;
}
public int getNavigateFirstPage() {
return navigateFirstPage;
}
public void setNavigateFirstPage(int navigateFirstPage) {
this.navigateFirstPage = navigateFirstPage;
}
public int getNavigateLastPage() {
return navigateLastPage;
}
public void setNavigateLastPage(int navigateLastPage) {
this.navigateLastPage = navigateLastPage;
}
public int getNavigatePages() {
return navigatePages;
}
public void setNavigatePages(int navigatePages) {
this.navigatePages = navigatePages;
}
public int getNextPage() {
return nextPage;
}
public void setNextPage(int nextPage) {
this.nextPage = nextPage;
}
public int getPageNum() {
return pageNum;
}
public void setPageNum(int pageNum) {
this.pageNum = pageNum;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPages() {
return pages;
}
public void setPages(int pages) {
this.pages = pages;
}
public int getPrePage() {
return prePage;
}
public void setPrePage(int prePage) {
this.prePage = prePage;
}
public int getSize() {
return size;
}
public void setSize(int size) {
this.size = size;
}
public int getStartRow() {
return startRow;
}
public void setStartRow(int startRow) {
this.startRow = startRow;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public String getBusNum() {
return busNum;
}
public void setBusNum(String busNum) {
this.busNum = busNum;
}
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
public String getFreezeFlowNum() {
return freezeFlowNum;
}
public void setFreezeFlowNum(String freezeFlowNum) {
this.freezeFlowNum = freezeFlowNum;
}
public String getRecordNum() {
return recordNum;
}
public void setRecordNum(String recordNum) {
this.recordNum = recordNum;
}
public String getReferenceNum() {
return referenceNum;
}
public void setReferenceNum(String referenceNum) {
this.referenceNum = referenceNum;
}
public Boolean getSuccessed() {
return successed;
}
public void setSuccessed(Boolean successed) {
this.successed = successed;
}
public String getBusType() {
return busType;
}
public void setBusType(String busType) {
this.busType = busType;
}
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 getPayChannel() {
return payChannel;
}
public void setPayChannel(String payChannel) {
this.payChannel = payChannel;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getPayStatus() {
return payStatus;
}
public void setPayStatus(String payStatus) {
this.payStatus = payStatus;
}
public String getPayDate() {
return payDate;
}
public void setPayDate(String payDate) {
this.payDate = payDate;
}
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 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;
}
/**
* 把json字符串转换成指定范型的list
* @param json
* @param list
* @param clazz
* @param <T>
*/
private static <T> void adaptAndAddToList(String json, List<Object> list, Class<T> clazz) {
JSONObject jsonObject = JSON.parseObject(json);
if (jsonObject.containsKey("list")) {
JSONArray listArray = jsonObject.getJSONArray("list");
for (Object item : listArray) {
JSONObject itemObject = (JSONObject) item;
// 适配不同类型的节点
list.add(JSON.toJavaObject(itemObject, clazz));
}
}
}
}

Some files were not shown because too many files have changed in this diff Show More