Compare commits

..

3 Commits

1599 changed files with 55006 additions and 23682 deletions

8
.gitignore vendored
View File

@ -52,7 +52,7 @@ $RECYCLE.BIN/
# Windows shortcuts # Windows shortcuts
*.lnk *.lnk
./idea/
/buildpackage/src/main/resources/banner.txt /buildpackage/src/main/resources/banner.txt
/webapp/target/ /webapp/target/
/service/target/ /service/target/
@ -60,9 +60,3 @@ $RECYCLE.BIN/
/common/target/ /common/target/
/buildpackage/target/ /buildpackage/target/
/webapp/target/ /webapp/target/
/base-buildpackage/target/
/base-common/target/
/base-core/target/
/base-webapp/target/classes/com/hzya/frame/
/fw-weixin/target/
/E:/yongansystem/log/2024-10-15/

View File

@ -41,11 +41,3 @@ R__TRUNCATE_bd_app.sql 这个文件会执行多次但是会校验是否checks
表flyway_schema_history会记录sql执行的情况 表flyway_schema_history会记录sql执行的情况
本项目需要的sql统一放置到resources/flyway下 本项目需要的sql统一放置到resources/flyway下
# 系统初始化
| 名称 | 备注 |
|------|------|
| V3.0.1__sys_init_table.sql | 系统初始化建表语句 |
| 李四 | 32 |
| 王五 | 24 |

View File

@ -1,59 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>kangarooDataCenterV3</artifactId>
<groupId>com.hzya.frame</groupId>
<version>${revision}</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>base-buildpackage</artifactId>
<packaging>war</packaging>
<version>${revision}</version>
<!-- 统一管理依赖版本-->
<dependencies>
<dependency>
<groupId>com.hzya.frame</groupId>
<artifactId>base-webapp</artifactId>
<version>${revision}</version>
</dependency>
</dependencies>
<profiles>
<profile>
<id>dev</id> <!--开发环境-->
<properties>
<profile.active>dev</profile.active>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<profile>
<id>llg</id> <!--吕磊钢-->
<properties>
<profile.active>llg</profile.active>
</properties>
</profile>
<profile>
<id>xel</id> <!--xel-->
<properties>
<profile.active>xel</profile.active>
</properties>
</profile>
<profile>
<id>zqtlocal</id> <!--曾庆拓-->
<properties>
<profile.active>zqtlocal</profile.active>
</properties>
</profile>
</profiles>
<build>
<finalName>kangarooDataCenterV3</finalName>
</build>
</project>

View File

@ -1,386 +0,0 @@
package com.hzya.frame.plugin.BackUpDatabase.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.web.entity.BaseResult;
import com.hzya.frame.web.entity.JsonResultEntity;
import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelSftp;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;
import com.jcraft.jsch.SftpATTRS;
import com.jcraft.jsch.SftpException;
import org.apache.commons.net.ftp.FTPClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.nio.file.Files;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Properties;
/**
* 主数据模版(MdmModule)表服务接口
*
* @author makejava
* @since 2024-06-18 10:33:32
*/
public class BackUpDatabaseInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(BackUpDatabaseInitializer.class);
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
@Override
public String getPluginId() {
return "BackUpDatabasePlugin";
}
@Override
public String getPluginName() {
return "数据库备份下发";
}
@Override
public String getPluginLabel() {
return "BackUpDatabasePlugin";
}
@Override
public String getPluginType() {
return "1";
}
@Value("${database.filePase:}")
private String filePase;//文件保存路径
@Value("${database.fileName:data.sql}")
private String fileName;//文件保存名称
@Value("${database.databaseName:}")
private String databaseName;//库名
@Value("${database.host:}")
private String host;//地址
@Value("${database.port:}")
private String port;//端口
@Value("${database.username:}")
private String username;//用户名
@Value("${database.password:}")
private String password;//密码
@Value("${sftp.host:}")
private String sftpHost;
@Value("${sftp.port:}")
private Integer sftpPort;
@Value("${sftp.username:}")
private String sftpUsername;
@Value("${sftp.password:}")
private String sftpPassword;
@Value("${sftp.filePase:}")
private String sftpFilePase;
private ChannelSftp sftp = null;
private Session sshSession = null;
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) {
try {
if(filePase == null || "".equals(filePase)
|| databaseName == null || "".equals(databaseName)
|| fileName == null || "".equals(fileName)
|| host == null || "".equals(host)
|| port == null || "".equals(port)
|| username == null || "".equals(username)
|| password == null || "".equals(password)
){
return BaseResult.getSuccessMessageEntity("系统参数未配置不执行,数据库备份");
}
//查找是否存在当天数据库
//格式化日期
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String data = sdf.format(new Date());
//当天路径
String nowDatabasePase = filePase + File.separator + data;
//不判断文件是否存在直接执行
if(!backFile(nowDatabasePase)){
return BaseResult.getFailureMessageEntity("备份失败");
}
//判断是否有sftp配置有的备份没有的不备份
if(sftpHost != null && !"".equals(sftpHost)
&& sftpPort != null && !"".equals(sftpPort)
&& sftpUsername != null && !"".equals(sftpUsername)
&& sftpPassword != null && !"".equals(sftpPassword)
&& sftpFilePase != null && !"".equals(sftpFilePase)
){
String sftpnowDatabasePase = sftpFilePase + File.separator + data;
if(!sendFile(nowDatabasePase,sftpnowDatabasePase)){
return BaseResult.getFailureMessageEntity("备份失败");
}
}
logger.info("执行成功");
return BaseResult.getSuccessMessageEntity("执行成功");
} catch (Exception e) {
logger.error("执行失败{}", e.getMessage());
return BaseResult.getFailureMessageEntity("备份失败");
}
}
private boolean backFile(String nowDatabasePase) {
try {
// 构建 mysqldump 命令
ProcessBuilder processBuilder = new ProcessBuilder(
"mysqldump",
"--ssl-mode=DISABLED",
"-h", host,
"-u", username,
"-p" + password,
"-P" + port,
databaseName);
// 启动进程并获取输入流
Process process = processBuilder.start();
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
File f = creatFile(nowDatabasePase,fileName);
// 将备份内容写入文件
FileWriter writer = new FileWriter(f);
String line;
while ((line = reader.readLine())!= null) {
writer.write(line + "\n");
}
// 关闭资源
reader.close();
writer.close();
process.waitFor();
logger.info("文件备份成功路径:"+nowDatabasePase+ File.separator +fileName);
return true;
} catch (IOException | InterruptedException e) {
logger.info("文件备份失败:"+e.getMessage());
return false;
}
}
/**
* @Author lvleigang
* @Description 创建目录及文件
* @Date 8:59 上午 2024/10/22
* @param filePath
* @param fileName
* @return java.io.File
**/
public File creatFile(String filePath, String fileName) {
File folder = new File(filePath);
//文件夹路径不存在
if (!folder.exists()) {
boolean mkdirs = folder.mkdirs();
}
// 如果文件不存在就创建
File file = new File(filePath + File.separator + fileName);
if (!file.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
logger.error("创建备份文件失败:"+e.getMessage());
}
}
return file;
}
private boolean sendFile(String localFilePath,String remoteFileName) {
try {
connect();
uploadFile(remoteFileName,fileName,localFilePath,fileName);
disconnect();
return true;
} catch (Exception e) {
logger.error("sftp文件上传失败:"+e.getMessage());
return false;
}
}
public void connect() {
try {
JSch jsch = new JSch();
jsch.getSession(sftpUsername, sftpHost, sftpPort);
sshSession = jsch.getSession(sftpUsername, sftpHost, sftpPort);
if (logger.isInfoEnabled()) {
logger.info("Session created.");
}
sshSession.setPassword(sftpPassword);
Properties sshConfig = new Properties();
sshConfig.put("StrictHostKeyChecking", "no");
sshSession.setConfig(sshConfig);
sshSession.connect();
if (logger.isInfoEnabled()) {
logger.info("Session connected.");
}
Channel channel = sshSession.openChannel("sftp");
channel.connect();
if (logger.isInfoEnabled()) {
logger.info("Opening Channel.");
}
sftp = (ChannelSftp) channel;
if (logger.isInfoEnabled()) {
logger.info("Connected to " + host + ".");
}
} catch (Exception e) {
}
}
/**
* 关闭连接
*/
public void disconnect() {
if (this.sftp != null) {
if (this.sftp.isConnected()) {
this.sftp.disconnect();
if (logger.isInfoEnabled()) {
logger.info("sftp is closed already");
}
}
}
if (this.sshSession != null) {
if (this.sshSession.isConnected()) {
this.sshSession.disconnect();
if (logger.isInfoEnabled()) {
logger.info("sshSession is closed already");
}
}
}
}
/**
* 上传单个文件
*
* @param remotePath远程保存目录
* @param remoteFileName保存文件名
* @param localPath本地上传目录(以路径符号结束)
* @param localFileName上传的文件名
* @return
*/
public boolean uploadFile(String remotePath, String remoteFileName, String localPath, String localFileName) {
FileInputStream in = null;
try {
createDir(remotePath);
File file = new File(localPath + File.separator + localFileName);
in = new FileInputStream(file);
sftp.put(in, remoteFileName, 65536);
return true;
} catch (FileNotFoundException e) {
} catch (SftpException e) {
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
}
}
}
return false;
}
/**
* 创建目录
*
* @param createpath
* @return
*/
public boolean createDir(String createpath) {
try {
if (isDirExist(createpath)) {
this.sftp.cd(createpath);
return true;
}
String pathArry[] = createpath.split("/");
StringBuffer filePath = new StringBuffer("/");
for (String path : pathArry) {
if (path.equals("")) {
continue;
}
filePath.append(path + "/");
if (isDirExist(filePath.toString())) {
sftp.cd(filePath.toString());
} else {
// 建立目录
sftp.mkdir(filePath.toString());
// 进入并设置为当前目录
sftp.cd(filePath.toString());
}
}
this.sftp.cd(createpath);
return true;
} catch (SftpException e) {
}
return false;
}
/**
* 判断目录是否存在
*
* @param directory
* @return
*/
public boolean isDirExist(String directory) {
boolean isDirExistFlag = false;
try {
SftpATTRS sftpATTRS = sftp.lstat(directory);
isDirExistFlag = true;
return sftpATTRS.isDir();
} catch (Exception e) {
if (e.getMessage().toLowerCase().equals("no such file")) {
isDirExistFlag = false;
}
}
return isDirExistFlag;
}
/**
* 如果目录不存在就创建目录
*
* @param path
*/
public void mkdirs(String path) {
File f = new File(path);
String fs = f.getParent();
f = new File(fs);
if (!f.exists()) {
f.mkdirs();
}
}
}

View File

@ -1,7 +0,0 @@
package com.hzya.frame.plugin.pushMessage.dao;
import com.hzya.frame.basedao.dao.IBaseDao;
import com.hzya.frame.plugin.pushMessage.entity.PushMessageEntity;
public interface IPushMessageDao extends IBaseDao<PushMessageEntity, String> {
}

View File

@ -1,8 +0,0 @@
package com.hzya.frame.plugin.pushMessage.dao.impl;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
import com.hzya.frame.plugin.pushMessage.dao.IPushMessageDao;
import com.hzya.frame.plugin.pushMessage.entity.PushMessageEntity;
public class PushMessageDaoImpl extends MybatisGenericDao<PushMessageEntity, String> implements IPushMessageDao {
}

View File

@ -1,106 +0,0 @@
package com.hzya.frame.plugin.pushMessage.entity;
import com.hzya.frame.web.entity.BaseEntity;
public class PushMessageEntity extends BaseEntity {
private String pushMethod;
private String warningAppCode;
private String warningApiCode;
private String recipientIdList;
private String warningAppType;
private String sendAppName;
private String receiveAppName;
private String receiveApiName;
private String returnData;
private String receiveApiCode;
private String status;
public String getPushMethod() {
return pushMethod;
}
public void setPushMethod(String pushMethod) {
this.pushMethod = pushMethod;
}
public String getWarningAppCode() {
return warningAppCode;
}
public void setWarningAppCode(String warningAppCode) {
this.warningAppCode = warningAppCode;
}
public String getWarningApiCode() {
return warningApiCode;
}
public void setWarningApiCode(String warningApiCode) {
this.warningApiCode = warningApiCode;
}
public String getRecipientIdList() {
return recipientIdList;
}
public void setRecipientIdList(String recipientIdList) {
this.recipientIdList = recipientIdList;
}
public String getWarningAppType() {
return warningAppType;
}
public void setWarningAppType(String warningAppType) {
this.warningAppType = warningAppType;
}
public String getSendAppName() {
return sendAppName;
}
public void setSendAppName(String sendAppName) {
this.sendAppName = sendAppName;
}
public String getReceiveAppName() {
return receiveAppName;
}
public void setReceiveAppName(String receiveAppName) {
this.receiveAppName = receiveAppName;
}
public String getReceiveApiName() {
return receiveApiName;
}
public void setReceiveApiName(String receiveApiName) {
this.receiveApiName = receiveApiName;
}
public String getReturnData() {
return returnData;
}
public void setReturnData(String returnData) {
this.returnData = returnData;
}
public String getReceiveApiCode() {
return receiveApiCode;
}
public void setReceiveApiCode(String receiveApiCode) {
this.receiveApiCode = receiveApiCode;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}

View File

@ -1,43 +0,0 @@
<?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.pushMessage.dao.impl.PushMessageDaoImpl">
<resultMap id="get-PushMessageEntity-result" type="com.hzya.frame.plugin.pushMessage.entity.PushMessageEntity" >
<result property="pushMessage" column="push_message" jdbcType="VARCHAR"/>
<result property="warningAppCode" column="warning_app_code" jdbcType="VARCHAR"/>
<result property="warningApiCode" column="warning_api_code" jdbcType="VARCHAR"/>
<result property="appType" column="app_type" jdbcType="VARCHAR"/>
<result property="recipientIdList" column="recipient_id_list" jdbcType="VARCHAR"/>
<result property="sendAppName" column="send_app_name" jdbcType="VARCHAR"/>
<result property="receiveAppName" column="receive_app_name" jdbcType="VARCHAR"/>
<result property="receiveApiName" column="receive_api_name" jdbcType="VARCHAR"/>
<result property="receiveApiCode" column="receive_api_code" jdbcType="VARCHAR"/>
<result property="returnData" column="return_data" jdbcType="VARCHAR"/>
<result property="status" column="status" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-PushMessageEntity-result" parameterType = "com.hzya.frame.plugin.pushMessage.entity.PushMessageEntity">
SELECT
warning_config.push_method,
warning_config.sendAppid AS warning_app_code,
warning_config.endApiCode AS warning_api_code,
warning_config.app_type,
warning_config.recipient_id AS recipient_id_list,
log.send_app_name,
log.receive_app_name,
receive_api_name,
log.receive_api_code,
log.return_data,
log.STATUS
FROM
v_hzya_sys_warning warning_config
LEFT JOIN v_hzya_sys_send_message_log log ON warning_config.api_code = log.receive_api_code
WHERE
log.STATUS = '4'
AND warning_config.push_method = '定时'
</select>
</mapper>

View File

@ -1,78 +0,0 @@
package com.hzya.frame.plugin.pushMessage.plugin;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.base.PluginBaseEntity;
import com.hzya.frame.plugin.pushMessage.dao.IPushMessageDao;
import com.hzya.frame.plugin.pushMessage.entity.PushMessageEntity;
import com.hzya.frame.sysnew.comparison.masterData.service.IMasterDataService;
import com.hzya.frame.sysnew.pushMessage.dao.ISysPushMessageDao;
import com.hzya.frame.sysnew.pushMessage.entity.SysPushMessageEntity;
import com.hzya.frame.sysnew.pushMessage.service.ISysPushMessageService;
import com.hzya.frame.sysnew.sendMessageLog.service.ISysSendMessageLogService;
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 org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.List;
@Service("PushMessagePluginInitializer")
public class PushMessagePluginInitializer extends PluginBaseEntity {
Logger logger = LoggerFactory.getLogger(PushMessagePluginInitializer.class);
@Autowired
private ISysPushMessageDao sysPushMessageDao;
@Resource
public ISysSendMessageLogService sysSendMessageLogService;
@Override
public void initialize() {
logger.info(getPluginLabel() + "執行初始化方法initialize()");
}
@Override
public void destroy() {
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
}
@Override
public String getPluginId() {
return "PushMessagePlugin";
}
@Override
public String getPluginName() {
return "PushMessagePlugin插件";
}
@Override
public String getPluginLabel() {
return "PushMessagePlugin";
}
@Override
public String getPluginType() {
return "1";
}
@Override
public JsonResultEntity executeBusiness(JSONObject requestJson) {
try {
logger.info("======开始执行定时消息推送========");
//目前只查询一周内的异常日志进行消息推送
List<SysPushMessageEntity> list = sysPushMessageDao.getAll();
for(SysPushMessageEntity entity : list){
sysSendMessageLogService.sendMessage(entity);
}
return BaseResult.getSuccessMessageEntity("定时推送消息成功");
}catch (Exception e){
logger.info("======执行定时消息推送失败:{}========",e.getMessage());
e.printStackTrace();
}
return null;
}
}

View File

@ -1,10 +0,0 @@
package com.hzya.frame.plugin.pushMessage.service;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.plugin.pushMessage.entity.PushMessageEntity;
import com.hzya.frame.web.entity.JsonResultEntity;
public interface IPushMessageService extends IBaseService<PushMessageEntity, String> {
}

View File

@ -1,25 +0,0 @@
package com.hzya.frame.plugin.pushMessage.service.impl;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.basedao.service.impl.BaseService;
import com.hzya.frame.plugin.pushMessage.dao.IPushMessageDao;
import com.hzya.frame.plugin.pushMessage.entity.PushMessageEntity;
import com.hzya.frame.plugin.pushMessage.service.IPushMessageService;
import com.hzya.frame.web.entity.BaseResult;
import com.hzya.frame.web.entity.JsonResultEntity;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
public class PushMessageServiceImpl extends BaseService<PushMessageEntity, String> implements IPushMessageService {
private IPushMessageDao pushMessageDao;
@Autowired
public void setPushMessageDao(IPushMessageDao dao) {
this.pushMessageDao = dao;
this.dao = dao;
}
}

View File

@ -1,42 +0,0 @@
#######################dev环境#######################
logging:
#日志级别 指定目录级别
level:
root: warn
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
# 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

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

View File

@ -1,112 +0,0 @@
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

@ -1,117 +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 ('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

@ -1,205 +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 ('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

@ -1,176 +0,0 @@
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

@ -1,694 +0,0 @@
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 one or more lines are too long

View File

@ -1,9 +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 ('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

@ -1,146 +0,0 @@
package com.hzya.frame;
import cn.hutool.json.JSONUtil;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.util.AESUtil;
import org.apache.http.HttpEntity;
import org.apache.http.client.config.RequestConfig;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPut;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @ClassName dsasas
* @Description
* @Author llg
* Date 2023/7/16 8:18 上午
*/
//@RunWith(SpringRunner.class)
//@SpringBootTest(classes = {WebappApplication.class})
public class temButtom {
@Test
public void test01() {
String a = AESUtil.encrypt("hzya@1314");
System.out.println(a);
String b = AESUtil.decrypt("62e4295b615a30dbf3b8ee96f41c820b");
System.out.println(b);
}
@Test
public void test02() {
// 1056162015172640840 -7858803986346327947 3178176833471791293 合同评审-待办测试(bdmanager 2024-10-22 16:45) 7743552636545550897 bdmanager 18058147870 pending start success 新增成功!
// success 更新待办为已办成功
// task7803207f54ff047d6008dcce31c2628f 新增成功!
// 2024-10-24 2024-10-24
String phone ="19357235324";
String taskid ="task8b0c7ca72439bc9b0c1c89e8866c8275";
//token
Map<String, String> headers = new HashMap<>();
String token ="https://oapi.dingtalk.com/gettoken?appkey=dingxewtjaserj292ggu&appsecret=DuRw6EEEvhGXfr6Q8wN_x4025qKjrffIGCXF9KeCKKIID-LVSsR6_8KWMei6sug1";
String body = sendGet(token,headers);
JSONObject tokenobject = JSONObject.parseObject(body);
//钉钉id
headers = new HashMap<>();
//https://oapi.dingtalk.com/user/get_by_mobile?access_token=9abd3996cb103ba48dd8c69fea5473e7&mobile=15700100840
String ddid ="https://oapi.dingtalk.com/user/get_by_mobile?access_token="+tokenobject.get("access_token")+"&mobile="+phone;
String ddidbody = sendGet(ddid,headers);
JSONObject ddidobject = JSONObject.parseObject(ddidbody);
//人员id
headers = new HashMap<>();
//https://oapi.dingtalk.com/user/get?userid=111336474727636213&access_token=3d21a6614fb037a98542a537336e8149
String userid ="https://oapi.dingtalk.com/user/get?userid="+ddidobject.get("userid")+"&access_token="+tokenobject.get("access_token");
String useridbody = sendGet(userid,headers);
JSONObject useridobject = JSONObject.parseObject(useridbody);
CloseableHttpClient httpClient = HttpClients.createDefault();
HttpPut httpPut = new HttpPut("https://api.dingtalk.com/v1.0/todo/users/"+useridobject.get("unionid")+"/tasks/"+taskid);
RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(35000).setConnectionRequestTimeout(35000).setSocketTimeout(60000).build();
httpPut.setConfig(requestConfig);
httpPut.setHeader("Content-type", "application/json");
httpPut.setHeader("x-acs-dingtalk-access-token", tokenobject.getString("access_token"));
Map<String, Object> dataMap = new HashMap();
dataMap.put("done", true);
CloseableHttpResponse httpResponse = null;
try {
httpPut.setEntity(new StringEntity("{\"done\": true}"));
httpResponse = httpClient.execute(httpPut);
HttpEntity entity = httpResponse.getEntity();
String results = EntityUtils.toString(entity);
System.out.println(results);
} catch (Exception var15) {
} finally {
try {
httpResponse.close();
httpClient.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
private String sendGet(String url, Map<String, String> headers) {
HttpClientBuilder httpClientBuilder = HttpClientBuilder.create();
// HttpClient
CloseableHttpClient closeableHttpClient = httpClientBuilder.disableCookieManagement().build();
HttpGet get = new HttpGet(url.toString());
CloseableHttpResponse response = null;
RequestConfig requestConfig = RequestConfig.custom().setConnectTimeout(60000).build();
get.setConfig(requestConfig);//设置请求参数超时时间
if (headers != null && headers.size() > 0) {
for (String key : headers.keySet()) {
get.setHeader(key, headers.get(key));
}
}
StringBuilder body = new StringBuilder();
try {
response = closeableHttpClient.execute(get);
HttpEntity entity = response.getEntity();
body.append(EntityUtils.toString(entity,"UTF-8"));
} catch (Exception e) {
body.append(e.getMessage());
} finally {
try {
// 关闭响应对象
if (response != null) {
response.close();
}
// 关闭响应对象
if (closeableHttpClient != null) {
closeableHttpClient.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
return body.toString();
}
}

View File

@ -1,48 +0,0 @@
package com.hzya.frame.dingtalk.enums;
/**
* @Description 通讯录事件类型
* @Author xiangerlin
* @Date 2024/8/27 15:58
**/
public enum OrgEventEnum {
USER_ADD_ORG("user_add_org","通讯录用户新增"),
USER_MODIFY_ORG("user_modify_org","通讯录用户更改"),
USER_LEAVE_ORG("user_leave_org","通讯录用户离职"),
USER_ACTIVE_ORG("user_active_org","加入企业后用户激活"),
ORG_DEPT_CREATE("org_dept_create","通讯录企业部门创建"),
ORG_DEPT_MODIFY("org_dept_modify","通讯录企业部门更改"),
ORG_DEPT_REMOVE("org_dept_remove","通讯录企业部门删除"),
;
private String code;
private String explain;
OrgEventEnum(String code, String explain) {
this.code = code;
this.explain = explain;
}
public String getCode() {
return code;
}
public String getExplain() {
return explain;
}
/**
* 根据code获取事件类型
* @param code
* @return
*/
public static OrgEventEnum getByCode(String code){
for (OrgEventEnum org : OrgEventEnum.values()) {
if (org.getCode().equals(code)){
return org;
}
}
return null;
}
}

View File

@ -1,32 +0,0 @@
package com.hzya.frame.dingtalk.service;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.sysnew.application.entity.SysApplicationEntity;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
/**
* @Description 钉钉集成扩展类
* @Author xiangerlin
* @Date 2024/8/28 14:25
**/
public interface IDingTalkExtService {
/**
* 调用这个方法初始化钉钉参数
* @param entity
* @return
*/
SysExtensionApiEntity init(SysExtensionApiEntity entity);
/**
* 查询配置在应用上的钉钉参数
* @param sysApplication
* @return
*/
JSONObject getDingTalkConfig(SysApplicationEntity sysApplication);
/**
* 清空配置缓存
*/
void clearDingTalkConfigCatch();
}

View File

@ -1,66 +0,0 @@
package com.hzya.frame.dingtalk.service;
import com.dingtalk.api.request.OapiV2UserListRequest;
import com.dingtalk.api.response.OapiV2DepartmentGetResponse;
import com.dingtalk.api.response.OapiV2DepartmentListsubResponse;
import com.dingtalk.api.response.OapiV2UserGetResponse;
import com.dingtalk.api.response.OapiV2UserListResponse;
import java.util.List;
/**
* @Description 钉钉service
* @Author xiangerlin
* @Date 2024/8/27 16:17
**/
public interface IDingTalkService {
/**
* 根据userid获取用户详情
* @param userId 钉钉userid
* @param appKey
* @param appSecret
* @return
*/
OapiV2UserGetResponse.UserGetResponse getUserById(String userId, String appKey, String appSecret);
/**
* 根据userid获取用户详情
* @param userId
* @return
*/
OapiV2UserGetResponse.UserGetResponse getUserById(String userId);
/**
* 获取部门用户列表
* @param req 请求参数
* @param appKey
* @param appSecret
* @return
*/
OapiV2UserListResponse.PageResult getUserListByDeptId(OapiV2UserListRequest req, String appKey, String appSecret);
/**
* 根据部门id获取部门详情
* @param deptId 钉钉部门id
* @param appKey
* @param appSecret
* @return
*/
OapiV2DepartmentGetResponse.DeptGetResponse getDeptById(Long deptId, String appKey, String appSecret);
/**
* 根据部门id获取部门详情
* @param deptId
* @return
*/
OapiV2DepartmentGetResponse.DeptGetResponse getDeptById(Long deptId);
/**
* 获取部门列表此接口只会返回下一级部门信息
* @param deptId 部门id如果不传则查询一级部门
* @param appKey
* @param appSecret
* @return
*/
List<OapiV2DepartmentListsubResponse.DeptBaseResponse> getDeptList(Long deptId, String appKey, String appSecret);
}

View File

@ -1,100 +0,0 @@
package com.hzya.frame.dingtalk.service.impl;
import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.dingtalk.service.IDingTalkExtService;
import com.hzya.frame.dingtalk.util.DingTalkAccessToken;
import com.hzya.frame.sysnew.application.api.entity.SysApplicationApiEntity;
import com.hzya.frame.sysnew.application.apiPara.dao.ISysApplicationApiParaDao;
import com.hzya.frame.sysnew.application.apiPara.entity.SysApplicationApiParaEntity;
import com.hzya.frame.sysnew.application.apiPara.service.ISysApplicationApiParaService;
import com.hzya.frame.sysnew.application.entity.SysApplicationEntity;
import com.hzya.frame.sysnew.application.entity.SysExtensionApiEntity;
import org.apache.commons.collections.CollectionUtils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/**
* @Description 钉钉集成扩展类
* @Author xiangerlin
* @Date 2024/8/28 14:25
**/
@Service(value = "dingTalkExtService")
public class DingTalkExtServiceImpl implements IDingTalkExtService {
@Resource
private ISysApplicationApiParaDao sysApplicationApiParaDao;
private final ConcurrentHashMap<String, JSONObject> dingTalkMap = new ConcurrentHashMap<>();
/**
* 调用这个方法初始化钉钉参数
*
* @param entity
* @return
*/
@Override
public SysExtensionApiEntity init(SysExtensionApiEntity entity) {
Map<String, String> headers = entity.getHeaders();
if (null == headers){
headers = new HashMap<>();
}
SysApplicationEntity receiveApp = entity.getReceiveApp();
//查询应用上配置的参数
JSONObject dingTalkConfig = getDingTalkConfig(receiveApp);
//给token赋值
entity.setQuerys("access_token="+DingTalkAccessToken.getAccessToken(dingTalkConfig.getString("appKey"),dingTalkConfig.getString("appSecret")));
return entity;
}
/**
* 查询配置在应用上的钉钉参数
*
* @param sysApplication
* @return
*/
@Override
public JSONObject getDingTalkConfig(SysApplicationEntity sysApplication) {
if (null != sysApplication && StrUtil.isNotEmpty(sysApplication.getId()) && null != sysApplication.getAppId()){
JSONObject jsonObject = new JSONObject();
String key = sysApplication.getAppId()+"dingTalk";
if (null != dingTalkMap.get(key)){
return dingTalkMap.get(key);
}else {
//查询应用上配置的参数
SysApplicationApiParaEntity paraEntity = new SysApplicationApiParaEntity();
paraEntity.setAppId(sysApplication.getId());
List<SysApplicationApiParaEntity> paraList = sysApplicationApiParaDao.query(paraEntity);
if (CollectionUtils.isNotEmpty(paraList)) {
List<SysApplicationApiParaEntity> appKeyList = paraList.stream().filter(p -> p.getInterfaceKey().equals("appKey")).collect(Collectors.toList());
if (CollectionUtils.isNotEmpty(appKeyList)) {
jsonObject.put("appKey", appKeyList.get(0).getInterfaceValue());
}
List<SysApplicationApiParaEntity> appSecretList = paraList.stream().filter(p -> p.getInterfaceKey().equals("appSecret")).collect(Collectors.toList());
if (CollectionUtils.isNotEmpty(appSecretList)) {
jsonObject.put("appSecret", appSecretList.get(0).getInterfaceValue());
}
dingTalkMap.put(key,jsonObject);
return dingTalkMap.get(key);
}
}
}
return null;
}
/**
* 清空配置缓存
*/
@Override
public void clearDingTalkConfigCatch() {
dingTalkMap.clear();
}
}

View File

@ -1,164 +0,0 @@
package com.hzya.frame.dingtalk.service.impl;
import com.alibaba.fastjson.JSONObject;
import com.dingtalk.api.DefaultDingTalkClient;
import com.dingtalk.api.DingTalkClient;
import com.dingtalk.api.request.OapiV2DepartmentGetRequest;
import com.dingtalk.api.request.OapiV2DepartmentListsubRequest;
import com.dingtalk.api.request.OapiV2UserGetRequest;
import com.dingtalk.api.request.OapiV2UserListRequest;
import com.dingtalk.api.response.OapiV2DepartmentGetResponse;
import com.dingtalk.api.response.OapiV2DepartmentListsubResponse;
import com.dingtalk.api.response.OapiV2UserGetResponse;
import com.dingtalk.api.response.OapiV2UserListResponse;
import com.hzya.frame.dingtalk.service.IDingTalkService;
import com.hzya.frame.dingtalk.util.DingTalkAccessToken;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @Description 钉钉service
* @Author xiangerlin
* @Date 2024/8/27 16:17
**/
@Service(value = "dingTalkService")
public class DingTalkServiceImpl implements IDingTalkService {
Logger logger = LoggerFactory.getLogger(getClass());
@Value("${dingtalk.appKey:}")
private String dAppKey;
@Value("${dingtalk.appSecret:}")
private String dAppSecret;
/**
* 根据userid获取用户详情
*
* @param userId 钉钉userid
* @param appKey
* @param appSecret
* @return
*/
@Override
public OapiV2UserGetResponse.UserGetResponse getUserById(String userId, String appKey, String appSecret) {
DingTalkClient client = new DefaultDingTalkClient("https://oapi.dingtalk.com/topapi/v2/user/get");
OapiV2UserGetRequest req = new OapiV2UserGetRequest();
req.setUserid(userId);
req.setLanguage("zh_CN");
try {
OapiV2UserGetResponse rsp = client.execute(req, DingTalkAccessToken.getAccessToken(appKey,appSecret));
if (rsp.isSuccess()){
OapiV2UserGetResponse.UserGetResponse result = rsp.getResult();
String s = JSONObject.toJSONString(result);
logger.info("人员详情信息:{}",s);
return result;
}
}catch (Exception e){
logger.error("根据部门id获取钉钉用户详情出错{}",e);
}
return null;
}
/**
* 根据userid获取用户详情
*
* @param userId
* @return
*/
@Override
public OapiV2UserGetResponse.UserGetResponse getUserById(String userId) {
return getUserById(userId,dAppKey,dAppSecret);
}
/**
* 获取部门用户列表
*
* @param req 请求参数
* @param appKey
* @param appSecret
* @return
*/
@Override
public OapiV2UserListResponse.PageResult getUserListByDeptId(OapiV2UserListRequest req, String appKey, String appSecret) {
try {
DingTalkClient client = new DefaultDingTalkClient("https://oapi.dingtalk.com/topapi/v2/user/list");
req.setSize(100L);//每页最大只能查100条
req.setOrderField("modify_desc");
req.setContainAccessLimit(false);
req.setLanguage("zh_CN");
OapiV2UserListResponse rsp = client.execute(req, DingTalkAccessToken.getAccessToken(appKey,appSecret));
OapiV2UserListResponse.PageResult result = rsp.getResult();
return result;
}catch (Exception e){
e.printStackTrace();
}
return null;
}
/**
* 根据部门id获取部门详情
*
* @param deptId 钉钉部门id
* @param appKey
* @param appSecret
* @return
*/
@Override
public OapiV2DepartmentGetResponse.DeptGetResponse getDeptById(Long deptId, String appKey, String appSecret) {
DingTalkClient client = new DefaultDingTalkClient("https://oapi.dingtalk.com/topapi/v2/department/get");
OapiV2DepartmentGetRequest req = new OapiV2DepartmentGetRequest();
req.setDeptId(deptId);
req.setLanguage("zh_CN");
try {
OapiV2DepartmentGetResponse rsp = client.execute(req, DingTalkAccessToken.getAccessToken(appKey,appSecret));
if (rsp.isSuccess()){
OapiV2DepartmentGetResponse.DeptGetResponse result = rsp.getResult();
String s = JSONObject.toJSONString(result);
logger.info("部门详情信息:{}",s);
return result;
}
}catch(Exception e){
logger.error("根据部门id获取钉钉部门出错{}",e);
}
return null;
}
/**
* 根据部门id获取部门详情
*
* @param deptId
* @return
*/
@Override
public OapiV2DepartmentGetResponse.DeptGetResponse getDeptById(Long deptId) {
return getDeptById(deptId,dAppKey,dAppSecret);
}
/**
* 获取部门列表此接口只会返回下一级部门信息
* @param deptId 部门id如果不传则查询一级部门
* @param appKey
* @param appSecret
* @return
*/
@Override
public List<OapiV2DepartmentListsubResponse.DeptBaseResponse> getDeptList(Long deptId,String appKey,String appSecret) {
try {
DingTalkClient client = new DefaultDingTalkClient("https://oapi.dingtalk.com/topapi/v2/department/listsub");
OapiV2DepartmentListsubRequest req = new OapiV2DepartmentListsubRequest();
req.setDeptId(deptId);
req.setLanguage("zh_CN");
OapiV2DepartmentListsubResponse rsp = client.execute(req, DingTalkAccessToken.getAccessToken(appKey,appSecret));
if (rsp.isSuccess()){
List<OapiV2DepartmentListsubResponse.DeptBaseResponse> result = rsp.getResult();
return result;
}
}catch (Exception e){
logger.error("获取部门列表接口出错:{}",e);
}
return null;
}
}

View File

@ -1,103 +0,0 @@
package com.hzya.frame.dingtalk.util;
import cn.hutool.core.util.StrUtil;
import com.aliyun.dingtalkoauth2_1_0.models.GetAccessTokenResponse;
import com.aliyun.tea.TeaException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import java.time.Instant;
/**
* @Description 钉钉获取accessToken
* @Author xiangerlin
* @Date 2024/8/27 14:05
**/
public class DingTalkAccessToken {
static Logger logger = LoggerFactory.getLogger(DingTalkAccessToken.class);
//token
private static String accessToken;
//过期时间
private static Instant expireTime;
private static final Long CACHE_EXPIRY_TIME = 7000L; // 缓存有效时间
//应用key
private static String appKey;
//应用密钥
private static String appSecret;
@Value("${dingtalk.appKey:}")
public static void setAppKey(String appKey) {
DingTalkAccessToken.appKey = appKey;
}
@Value("${dingtalk.appSecret:}")
public static void setAppSecret(String appSecret) {
DingTalkAccessToken.appSecret = appSecret;
}
/**
* 获取token
* @return
*/
public static String getAccessToken(){
return getAccessToken(appKey,appSecret);
}
/**
* 获取accessToken
*
* @param appKey
* @param appSecret
* @return
*/
public static String getAccessToken(String appKey,String appSecret) {
//判断是否过期 如果没过期直接返回
if (null != accessToken && expireTime != null && Instant.now().isBefore(expireTime)) {
return accessToken;
}
//获取新的accessToken
accessToken = fetchNewAccessToken(appKey,appSecret);
//过期时间设置成当前事件+7000s预留200s的时间
expireTime = Instant.now().plusSeconds(CACHE_EXPIRY_TIME);
return accessToken;
}
/**
* 获取新的accessToken
*
* @return
*/
private static String fetchNewAccessToken(String appKey,String appSecret) {
try {
//查询应用上配置的钉钉信息
if (StrUtil.isNotEmpty(appKey) && StrUtil.isNotEmpty(appSecret)) {
//查询应用上的信息
com.aliyun.dingtalkoauth2_1_0.Client client = DingTalkAccessToken.createClient();
com.aliyun.dingtalkoauth2_1_0.models.GetAccessTokenRequest getAccessTokenRequest = new com.aliyun.dingtalkoauth2_1_0.models.GetAccessTokenRequest()
.setAppKey(appKey)
.setAppSecret(appSecret);
GetAccessTokenResponse accessToken = client.getAccessToken(getAccessTokenRequest);
String accessToken1 = accessToken.getBody().getAccessToken();
return accessToken1;
}
} catch (Exception _err) {
TeaException err = new TeaException(_err.getMessage(), _err);
if (!com.aliyun.teautil.Common.empty(err.code) && !com.aliyun.teautil.Common.empty(err.message)) {
// err 中含有 code message 属性可帮助开发定位问题
}
logger.error("获取钉钉token出错:{}", _err);
}
return null;
}
/**
* 使用 Token 初始化账号Client
*
* @return Client
* @throws Exception
*/
private static com.aliyun.dingtalkoauth2_1_0.Client createClient() throws Exception {
com.aliyun.teaopenapi.models.Config config = new com.aliyun.teaopenapi.models.Config();
config.protocol = "https";
config.regionId = "central";
return new com.aliyun.dingtalkoauth2_1_0.Client(config);
}
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.excel.template.dao;
import com.hzya.frame.excel.template.entity.ExcelTemplateEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* excel模版表(excel_template: table)表数据库访问层
*
* @author makejava
* @since 2024-08-12 16:42:49
*/
public interface IExcelTemplateDao extends IBaseDao<ExcelTemplateEntity, String> {
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.excel.template.dao.impl;
import com.hzya.frame.excel.template.entity.ExcelTemplateEntity;
import com.hzya.frame.excel.template.dao.IExcelTemplateDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* excel模版表(ExcelTemplate)表数据库访问层
*
* @author makejava
* @since 2024-08-12 16:42:50
*/
@Repository(value = "ExcelTemplateDaoImpl")
public class ExcelTemplateDaoImpl extends MybatisGenericDao<ExcelTemplateEntity, String> implements IExcelTemplateDao{
}

View File

@ -1,76 +0,0 @@
package com.hzya.frame.excel.template.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* excel模版表(ExcelTemplate)实体类
*
* @author makejava
* @since 2024-08-12 16:42:50
*/
public class ExcelTemplateEntity extends BaseEntity {
/** 模版名称 */
private String templateName;
/** 应用id */
private String appId;
/** 模版编码 */
private String templateCode;
/** 绑定菜单 */
private String menuBind;
/** 菜单按钮 */
private String menuButton;
/** 公司id */
private String companyId;
public String getTemplateName() {
return templateName;
}
public void setTemplateName(String templateName) {
this.templateName = templateName;
}
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getTemplateCode() {
return templateCode;
}
public void setTemplateCode(String templateCode) {
this.templateCode = templateCode;
}
public String getMenuBind() {
return menuBind;
}
public void setMenuBind(String menuBind) {
this.menuBind = menuBind;
}
public String getMenuButton() {
return menuButton;
}
public void setMenuButton(String menuButton) {
this.menuButton = menuButton;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
}

View File

@ -1,261 +0,0 @@
<?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.excel.template.dao.impl.ExcelTemplateDaoImpl">
<resultMap id="get-ExcelTemplateEntity-result" type="com.hzya.frame.excel.template.entity.ExcelTemplateEntity" >
<result property="templateName" column="template_name" jdbcType="VARCHAR"/>
<result property="appId" column="app_id" jdbcType="VARCHAR"/>
<result property="templateCode" column="template_code" jdbcType="VARCHAR"/>
<result property="menuBind" column="menu_bind" jdbcType="VARCHAR"/>
<result property="menuButton" column="menu_button" jdbcType="VARCHAR"/>
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
<result property="id" column="id" jdbcType="VARCHAR"/>
<result property="create_user_id" column="create_user_id" jdbcType="VARCHAR"/>
<result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
<result property="modify_time" column="modify_time" jdbcType="TIMESTAMP"/>
<result property="modify_user_id" column="modify_user_id" jdbcType="VARCHAR"/>
<result property="org_id" column="org_id" jdbcType="VARCHAR"/>
<result property="companyId" column="company_id" jdbcType="VARCHAR"/>
<result property="sts" column="sts" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "ExcelTemplateEntity_Base_Column_List">
template_name
,app_id
,template_code
,menu_bind
,menu_button
,sorts
,id
,create_user_id
,create_time
,modify_time
,modify_user_id
,org_id
,company_id
,sts
</sql>
<!--通过ID获取数据 -->
<select id="entity_get" resultMap="get-ExcelTemplateEntity-result">
select
<include refid="ExcelTemplateEntity_Base_Column_List" />
from excel_template where sts = 'Y' and id = #{id}
</select>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-ExcelTemplateEntity-result" parameterType = "com.hzya.frame.excel.template.entity.ExcelTemplateEntity">
select
<include refid="ExcelTemplateEntity_Base_Column_List" />
from excel_template
<trim prefix="where" prefixOverrides="and">
<if test="templateName != null and templateName != ''"> and template_name = #{templateName} </if>
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
<if test="templateCode != null and templateCode != ''"> and template_code = #{templateCode} </if>
<if test="menuBind != null and menuBind != ''"> and menu_bind = #{menuBind} </if>
<if test="menuButton != null and menuButton != ''"> and menu_button = #{menuButton} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </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_time != null"> and modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> and sts = #{sts} </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.excel.template.entity.ExcelTemplateEntity">
select count(1) from excel_template
<trim prefix="where" prefixOverrides="and">
<if test="templateName != null and templateName != ''"> and template_name = #{templateName} </if>
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
<if test="templateCode != null and templateCode != ''"> and template_code = #{templateCode} </if>
<if test="menuBind != null and menuBind != ''"> and menu_bind = #{menuBind} </if>
<if test="menuButton != null and menuButton != ''"> and menu_button = #{menuButton} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </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_time != null"> and modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> and sts = #{sts} </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-ExcelTemplateEntity-result" parameterType = "com.hzya.frame.excel.template.entity.ExcelTemplateEntity">
select
<include refid="ExcelTemplateEntity_Base_Column_List" />
from excel_template
<trim prefix="where" prefixOverrides="and">
<if test="templateName != null and templateName != ''"> and template_name like concat('%',#{templateName},'%') </if>
<if test="appId != null and appId != ''"> and app_id like concat('%',#{appId},'%') </if>
<if test="templateCode != null and templateCode != ''"> and template_code like concat('%',#{templateCode},'%') </if>
<if test="menuBind != null and menuBind != ''"> and menu_bind like concat('%',#{menuBind},'%') </if>
<if test="menuButton != null and menuButton != ''"> and menu_button like concat('%',#{menuButton},'%') </if>
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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_time != null"> and modify_time like concat('%',#{modify_time},'%') </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id like concat('%',#{modify_user_id},'%') </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="sts != null and sts != ''"> and sts like concat('%',#{sts},'%') </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="ExcelTemplateentity_list_or" resultMap="get-ExcelTemplateEntity-result" parameterType = "com.hzya.frame.excel.template.entity.ExcelTemplateEntity">
select
<include refid="ExcelTemplateEntity_Base_Column_List" />
from excel_template
<trim prefix="where" prefixOverrides="and">
<if test="templateName != null and templateName != ''"> or template_name = #{templateName} </if>
<if test="appId != null and appId != ''"> or app_id = #{appId} </if>
<if test="templateCode != null and templateCode != ''"> or template_code = #{templateCode} </if>
<if test="menuBind != null and menuBind != ''"> or menu_bind = #{menuBind} </if>
<if test="menuButton != null and menuButton != ''"> or menu_button = #{menuButton} </if>
<if test="sorts != null"> or sorts = #{sorts} </if>
<if test="id != null and id != ''"> or id = #{id} </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_time != null"> or modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> or modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> or sts = #{sts} </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.excel.template.entity.ExcelTemplateEntity" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template(
<trim suffix="" suffixOverrides=",">
<if test="templateName != null and templateName != ''"> template_name , </if>
<if test="appId != null and appId != ''"> app_id , </if>
<if test="templateCode != null and templateCode != ''"> template_code , </if>
<if test="menuBind != null and menuBind != ''"> menu_bind , </if>
<if test="menuButton != null and menuButton != ''"> menu_button , </if>
<if test="sorts != null"> sorts , </if>
<if test="id != null and id != ''"> id , </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_time != null"> modify_time , </if>
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id , </if>
<if test="org_id != null and org_id != ''"> org_id , </if>
<if test="companyId != null and companyId != ''"> company_id , </if>
<if test="sts != null and sts != ''"> sts , </if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="templateName != null and templateName != ''"> #{templateName} ,</if>
<if test="appId != null and appId != ''"> #{appId} ,</if>
<if test="templateCode != null and templateCode != ''"> #{templateCode} ,</if>
<if test="menuBind != null and menuBind != ''"> #{menuBind} ,</if>
<if test="menuButton != null and menuButton != ''"> #{menuButton} ,</if>
<if test="sorts != null"> #{sorts} ,</if>
<if test="id != null and id != ''"> #{id} ,</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_time != null"> #{modify_time} ,</if>
<if test="modify_user_id != null and modify_user_id != ''"> #{modify_user_id} ,</if>
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
<if test="sts != null and sts != ''"> #{sts} ,</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template(template_name, app_id, template_code, menu_bind, menu_button, create_user_id, create_time, modify_time, modify_user_id, org_id, company_id, sts, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.templateName},#{entity.appId},#{entity.templateCode},#{entity.menuBind},#{entity.menuButton},#{entity.create_user_id},#{entity.create_time},#{entity.modify_time},#{entity.modify_user_id},#{entity.org_id},#{entity.companyId},#{entity.sts}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template(template_name, app_id, template_code, menu_bind, menu_button, create_user_id, create_time, modify_time, modify_user_id, org_id, company_id, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.templateName},#{entity.appId},#{entity.templateCode},#{entity.menuBind},#{entity.menuButton},#{entity.create_user_id},#{entity.create_time},#{entity.modify_time},#{entity.modify_user_id},#{entity.org_id},#{entity.companyId},#{entity.sts})
</foreach>
on duplicate key update
template_name = values(template_name),
app_id = values(app_id),
template_code = values(template_code),
menu_bind = values(menu_bind),
menu_button = values(menu_button),
create_user_id = values(create_user_id),
create_time = values(create_time),
modify_time = values(modify_time),
modify_user_id = values(modify_user_id),
org_id = values(org_id),
company_id = values(company_id),
sts = values(sts)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.excel.template.entity.ExcelTemplateEntity" >
update excel_template set
<trim suffix="" suffixOverrides=",">
<if test="templateName != null and templateName != ''"> template_name = #{templateName},</if>
<if test="appId != null and appId != ''"> app_id = #{appId},</if>
<if test="templateCode != null and templateCode != ''"> template_code = #{templateCode},</if>
<if test="menuBind != null and menuBind != ''"> menu_bind = #{menuBind},</if>
<if test="menuButton != null and menuButton != ''"> menu_button = #{menuButton},</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_time != null"> modify_time = #{modify_time},</if>
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id = #{modify_user_id},</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="sts != null and sts != ''"> sts = #{sts},</if>
</trim>
where sorts = #{sorts}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.excel.template.entity.ExcelTemplateEntity" >
update excel_template set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
where sorts = #{sorts}
</update>
<!-- 多条件逻辑删除 -->
<update id="entity_logicDelete_Multi_Condition" parameterType = "com.hzya.frame.excel.template.entity.ExcelTemplateEntity" >
update excel_template set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
<trim prefix="where" prefixOverrides="and">
<if test="templateName != null and templateName != ''"> and template_name = #{templateName} </if>
<if test="appId != null and appId != ''"> and app_id = #{appId} </if>
<if test="templateCode != null and templateCode != ''"> and template_code = #{templateCode} </if>
<if test="menuBind != null and menuBind != ''"> and menu_bind = #{menuBind} </if>
<if test="menuButton != null and menuButton != ''"> and menu_button = #{menuButton} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </if>
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from excel_template where sorts = #{sorts}
</delete>
</mapper>

View File

@ -1,12 +0,0 @@
package com.hzya.frame.excel.template.service;
import com.hzya.frame.excel.template.entity.ExcelTemplateEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* excel模版表(ExcelTemplate)表服务接口
*
* @author makejava
* @since 2024-08-12 16:42:50
*/
public interface IExcelTemplateService extends IBaseService<ExcelTemplateEntity, String>{
}

View File

@ -1,26 +0,0 @@
package com.hzya.frame.excel.template.service.impl;
import com.hzya.frame.excel.template.entity.ExcelTemplateEntity;
import com.hzya.frame.excel.template.dao.IExcelTemplateDao;
import com.hzya.frame.excel.template.service.IExcelTemplateService;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import javax.annotation.Resource;
import com.hzya.frame.basedao.service.impl.BaseService;
/**
* excel模版表(ExcelTemplate)表服务实现类
*
* @author makejava
* @since 2024-08-12 16:42:50
*/
@Service(value = "excelTemplateService")
public class ExcelTemplateServiceImpl extends BaseService<ExcelTemplateEntity, String> implements IExcelTemplateService {
private IExcelTemplateDao excelTemplateDao;
@Autowired
public void setExcelTemplateDao(IExcelTemplateDao dao) {
this.excelTemplateDao = dao;
this.dao = dao;
}
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.excel.templateConfig.dao;
import com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* excel模版配置表(excel_template_config: table)表数据库访问层
*
* @author makejava
* @since 2024-08-12 16:43:38
*/
public interface IExcelTemplateConfigDao extends IBaseDao<ExcelTemplateConfigEntity, String> {
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.excel.templateConfig.dao.impl;
import com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity;
import com.hzya.frame.excel.templateConfig.dao.IExcelTemplateConfigDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* excel模版配置表(ExcelTemplateConfig)表数据库访问层
*
* @author makejava
* @since 2024-08-12 16:43:38
*/
@Repository(value = "ExcelTemplateConfigDaoImpl")
public class ExcelTemplateConfigDaoImpl extends MybatisGenericDao<ExcelTemplateConfigEntity, String> implements IExcelTemplateConfigDao{
}

View File

@ -1,66 +0,0 @@
package com.hzya.frame.excel.templateConfig.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* excel模版配置表(ExcelTemplateConfig)实体类
*
* @author makejava
* @since 2024-08-12 16:43:38
*/
public class ExcelTemplateConfigEntity extends BaseEntity {
/** 模版id */
private String templateId;
/** 类型(数据库表/语句) */
private String type;
/** 表类型(主表/明细) */
private String tableType;
/** 数据字典id */
private String dataDictionaryId;
/** 公司id */
private String companyId;
public String getTemplateId() {
return templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getTableType() {
return tableType;
}
public void setTableType(String tableType) {
this.tableType = tableType;
}
public String getDataDictionaryId() {
return dataDictionaryId;
}
public void setDataDictionaryId(String dataDictionaryId) {
this.dataDictionaryId = dataDictionaryId;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
}

View File

@ -1,243 +0,0 @@
<?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.excel.templateConfig.dao.impl.ExcelTemplateConfigDaoImpl">
<resultMap id="get-ExcelTemplateConfigEntity-result" type="com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity" >
<result property="templateId" column="template_id" jdbcType="VARCHAR"/>
<result property="type" column="type" jdbcType="VARCHAR"/>
<result property="tableType" column="table_type" jdbcType="VARCHAR"/>
<result property="dataDictionaryId" column="data_dictionary_id" jdbcType="VARCHAR"/>
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
<result property="id" column="id" jdbcType="VARCHAR"/>
<result property="create_user_id" column="create_user_id" jdbcType="VARCHAR"/>
<result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
<result property="modify_time" column="modify_time" jdbcType="TIMESTAMP"/>
<result property="modify_user_id" column="modify_user_id" jdbcType="VARCHAR"/>
<result property="org_id" column="org_id" jdbcType="VARCHAR"/>
<result property="companyId" column="company_id" jdbcType="VARCHAR"/>
<result property="sts" column="sts" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "ExcelTemplateConfigEntity_Base_Column_List">
template_id
,type
,table_type
,data_dictionary_id
,sorts
,id
,create_user_id
,create_time
,modify_time
,modify_user_id
,org_id
,company_id
,sts
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-ExcelTemplateConfigEntity-result" parameterType = "com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity">
select
<include refid="ExcelTemplateConfigEntity_Base_Column_List" />
from excel_template_config
<trim prefix="where" prefixOverrides="and">
<if test="templateId != null and templateId != ''"> and template_id = #{templateId} </if>
<if test="type != null and type != ''"> and type = #{type} </if>
<if test="tableType != null and tableType != ''"> and table_type = #{tableType} </if>
<if test="dataDictionaryId != null and dataDictionaryId != ''"> and data_dictionary_id = #{dataDictionaryId} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </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_time != null"> and modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> and sts = #{sts} </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.excel.templateConfig.entity.ExcelTemplateConfigEntity">
select count(1) from excel_template_config
<trim prefix="where" prefixOverrides="and">
<if test="templateId != null and templateId != ''"> and template_id = #{templateId} </if>
<if test="type != null and type != ''"> and type = #{type} </if>
<if test="tableType != null and tableType != ''"> and table_type = #{tableType} </if>
<if test="dataDictionaryId != null and dataDictionaryId != ''"> and data_dictionary_id = #{dataDictionaryId} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </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_time != null"> and modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> and sts = #{sts} </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-ExcelTemplateConfigEntity-result" parameterType = "com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity">
select
<include refid="ExcelTemplateConfigEntity_Base_Column_List" />
from excel_template_config
<trim prefix="where" prefixOverrides="and">
<if test="templateId != null and templateId != ''"> and template_id like concat('%',#{templateId},'%') </if>
<if test="type != null and type != ''"> and type like concat('%',#{type},'%') </if>
<if test="tableType != null and tableType != ''"> and table_type like concat('%',#{tableType},'%') </if>
<if test="dataDictionaryId != null and dataDictionaryId != ''"> and data_dictionary_id like concat('%',#{dataDictionaryId},'%') </if>
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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_time != null"> and modify_time like concat('%',#{modify_time},'%') </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id like concat('%',#{modify_user_id},'%') </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="sts != null and sts != ''"> and sts like concat('%',#{sts},'%') </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="ExcelTemplateConfigentity_list_or" resultMap="get-ExcelTemplateConfigEntity-result" parameterType = "com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity">
select
<include refid="ExcelTemplateConfigEntity_Base_Column_List" />
from excel_template_config
<trim prefix="where" prefixOverrides="and">
<if test="templateId != null and templateId != ''"> or template_id = #{templateId} </if>
<if test="type != null and type != ''"> or type = #{type} </if>
<if test="tableType != null and tableType != ''"> or table_type = #{tableType} </if>
<if test="dataDictionaryId != null and dataDictionaryId != ''"> or data_dictionary_id = #{dataDictionaryId} </if>
<if test="sorts != null"> or sorts = #{sorts} </if>
<if test="id != null and id != ''"> or id = #{id} </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_time != null"> or modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> or modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> or sts = #{sts} </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.excel.templateConfig.entity.ExcelTemplateConfigEntity" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template_config(
<trim suffix="" suffixOverrides=",">
<if test="templateId != null and templateId != ''"> template_id , </if>
<if test="type != null and type != ''"> type , </if>
<if test="tableType != null and tableType != ''"> table_type , </if>
<if test="dataDictionaryId != null and dataDictionaryId != ''"> data_dictionary_id , </if>
<if test="sorts != null"> sorts , </if>
<if test="id != null and id != ''"> id , </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_time != null"> modify_time , </if>
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id , </if>
<if test="org_id != null and org_id != ''"> org_id , </if>
<if test="companyId != null and companyId != ''"> company_id , </if>
<if test="sts != null and sts != ''"> sts , </if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="templateId != null and templateId != ''"> #{templateId} ,</if>
<if test="type != null and type != ''"> #{type} ,</if>
<if test="tableType != null and tableType != ''"> #{tableType} ,</if>
<if test="dataDictionaryId != null and dataDictionaryId != ''"> #{dataDictionaryId} ,</if>
<if test="sorts != null"> #{sorts} ,</if>
<if test="id != null and id != ''"> #{id} ,</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_time != null"> #{modify_time} ,</if>
<if test="modify_user_id != null and modify_user_id != ''"> #{modify_user_id} ,</if>
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
<if test="sts != null and sts != ''"> #{sts} ,</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template_config(template_id, type, table_type, data_dictionary_id, create_user_id, create_time, modify_time, modify_user_id, org_id, company_id, sts, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.templateId},#{entity.type},#{entity.tableType},#{entity.dataDictionaryId},#{entity.create_user_id},#{entity.create_time},#{entity.modify_time},#{entity.modify_user_id},#{entity.org_id},#{entity.companyId},#{entity.sts}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template_config(template_id, type, table_type, data_dictionary_id, create_user_id, create_time, modify_time, modify_user_id, org_id, company_id, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.templateId},#{entity.type},#{entity.tableType},#{entity.dataDictionaryId},#{entity.create_user_id},#{entity.create_time},#{entity.modify_time},#{entity.modify_user_id},#{entity.org_id},#{entity.companyId},#{entity.sts})
</foreach>
on duplicate key update
template_id = values(template_id),
type = values(type),
table_type = values(table_type),
data_dictionary_id = values(data_dictionary_id),
create_user_id = values(create_user_id),
create_time = values(create_time),
modify_time = values(modify_time),
modify_user_id = values(modify_user_id),
org_id = values(org_id),
company_id = values(company_id),
sts = values(sts)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity" >
update excel_template_config set
<trim suffix="" suffixOverrides=",">
<if test="templateId != null and templateId != ''"> template_id = #{templateId},</if>
<if test="type != null and type != ''"> type = #{type},</if>
<if test="tableType != null and tableType != ''"> table_type = #{tableType},</if>
<if test="dataDictionaryId != null and dataDictionaryId != ''"> data_dictionary_id = #{dataDictionaryId},</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_time != null"> modify_time = #{modify_time},</if>
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id = #{modify_user_id},</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="sts != null and sts != ''"> sts = #{sts},</if>
</trim>
where sorts = #{sorts}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity" >
update excel_template_config set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
where sorts = #{sorts}
</update>
<!-- 多条件逻辑删除 -->
<update id="entity_logicDelete_Multi_Condition" parameterType = "com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity" >
update excel_template_config set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
<trim prefix="where" prefixOverrides="and">
<if test="templateId != null and templateId != ''"> and template_id = #{templateId} </if>
<if test="type != null and type != ''"> and type = #{type} </if>
<if test="tableType != null and tableType != ''"> and table_type = #{tableType} </if>
<if test="dataDictionaryId != null and dataDictionaryId != ''"> and data_dictionary_id = #{dataDictionaryId} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </if>
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from excel_template_config where sorts = #{sorts}
</delete>
</mapper>

View File

@ -1,12 +0,0 @@
package com.hzya.frame.excel.templateConfig.service;
import com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* excel模版配置表(ExcelTemplateConfig)表服务接口
*
* @author makejava
* @since 2024-08-12 16:43:38
*/
public interface IExcelTemplateConfigService extends IBaseService<ExcelTemplateConfigEntity, String>{
}

View File

@ -1,26 +0,0 @@
package com.hzya.frame.excel.templateConfig.service.impl;
import com.hzya.frame.excel.templateConfig.entity.ExcelTemplateConfigEntity;
import com.hzya.frame.excel.templateConfig.dao.IExcelTemplateConfigDao;
import com.hzya.frame.excel.templateConfig.service.IExcelTemplateConfigService;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import javax.annotation.Resource;
import com.hzya.frame.basedao.service.impl.BaseService;
/**
* excel模版配置表(ExcelTemplateConfig)表服务实现类
*
* @author makejava
* @since 2024-08-12 16:43:38
*/
@Service(value = "excelTemplateConfigService")
public class ExcelTemplateConfigServiceImpl extends BaseService<ExcelTemplateConfigEntity, String> implements IExcelTemplateConfigService {
private IExcelTemplateConfigDao excelTemplateConfigDao;
@Autowired
public void setExcelTemplateConfigDao(IExcelTemplateConfigDao dao) {
this.excelTemplateConfigDao = dao;
this.dao = dao;
}
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.excel.templateConfigDetial.dao;
import com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* excel模版配置明细表(excel_template_config_detail: table)表数据库访问层
*
* @author makejava
* @since 2024-08-13 08:39:02
*/
public interface IExcelTemplateConfigDetailDao extends IBaseDao<ExcelTemplateConfigDetailEntity, String> {
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.excel.templateConfigDetial.dao.impl;
import com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity;
import com.hzya.frame.excel.templateConfigDetial.dao.IExcelTemplateConfigDetailDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* excel模版配置明细表(ExcelTemplateConfigDetail)表数据库访问层
*
* @author makejava
* @since 2024-08-13 08:39:02
*/
@Repository(value = "ExcelTemplateConfigDetailDaoImpl")
public class ExcelTemplateConfigDetailDaoImpl extends MybatisGenericDao<ExcelTemplateConfigDetailEntity, String> implements IExcelTemplateConfigDetailDao{
}

View File

@ -1,96 +0,0 @@
package com.hzya.frame.excel.templateConfigDetial.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* excel模版配置明细表(ExcelTemplateConfigDetail)实体类
*
* @author makejava
* @since 2024-08-13 08:39:02
*/
public class ExcelTemplateConfigDetailEntity extends BaseEntity {
/** 字段名称 */
private String fieldName;
/** 字段编码 */
private String fieldCode;
/** 字段类型 */
private String fieldType;
/** 应用数据字典明细表id */
private String dictionaryDetailId;
/** 显示名称 */
private String showName;
/** 序号 */
private Long templateSort;
/** 开关 */
private String templateSwitch;
/** 公司id */
private String companyId;
public String getFieldName() {
return fieldName;
}
public void setFieldName(String fieldName) {
this.fieldName = fieldName;
}
public String getFieldCode() {
return fieldCode;
}
public void setFieldCode(String fieldCode) {
this.fieldCode = fieldCode;
}
public String getFieldType() {
return fieldType;
}
public void setFieldType(String fieldType) {
this.fieldType = fieldType;
}
public String getDictionaryDetailId() {
return dictionaryDetailId;
}
public void setDictionaryDetailId(String dictionaryDetailId) {
this.dictionaryDetailId = dictionaryDetailId;
}
public String getShowName() {
return showName;
}
public void setShowName(String showName) {
this.showName = showName;
}
public Long getTemplateSort() {
return templateSort;
}
public void setTemplateSort(Long templateSort) {
this.templateSort = templateSort;
}
public String getTemplateSwitch() {
return templateSwitch;
}
public void setTemplateSwitch(String templateSwitch) {
this.templateSwitch = templateSwitch;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
}

View File

@ -1,278 +0,0 @@
<?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.excel.templateConfigDetial.dao.impl.ExcelTemplateConfigDetailDaoImpl">
<resultMap id="get-ExcelTemplateConfigDetailEntity-result" type="com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity" >
<result property="fieldName" column="field_name" jdbcType="VARCHAR"/>
<result property="fieldCode" column="field_code" jdbcType="VARCHAR"/>
<result property="fieldType" column="field_type" jdbcType="VARCHAR"/>
<result property="dictionaryDetailId" column="dictionary_detail_id" jdbcType="VARCHAR"/>
<result property="showName" column="show_name" jdbcType="VARCHAR"/>
<result property="templateSort" column="template_sort" jdbcType="INTEGER"/>
<result property="templateSwitch" column="template_switch" jdbcType="VARCHAR"/>
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
<result property="id" column="id" jdbcType="VARCHAR"/>
<result property="create_user_id" column="create_user_id" jdbcType="VARCHAR"/>
<result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
<result property="modify_time" column="modify_time" jdbcType="TIMESTAMP"/>
<result property="modify_user_id" column="modify_user_id" jdbcType="VARCHAR"/>
<result property="org_id" column="org_id" jdbcType="VARCHAR"/>
<result property="companyId" column="company_id" jdbcType="VARCHAR"/>
<result property="sts" column="sts" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "ExcelTemplateConfigDetailEntity_Base_Column_List">
field_name
,field_code
,field_type
,dictionary_detail_id
,show_name
,template_sort
,template_switch
,sorts
,id
,create_user_id
,create_time
,modify_time
,modify_user_id
,org_id
,company_id
,sts
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-ExcelTemplateConfigDetailEntity-result" parameterType = "com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity">
select
<include refid="ExcelTemplateConfigDetailEntity_Base_Column_List" />
from excel_template_config_detail
<trim prefix="where" prefixOverrides="and">
<if test="fieldName != null and fieldName != ''"> and field_name = #{fieldName} </if>
<if test="fieldCode != null and fieldCode != ''"> and field_code = #{fieldCode} </if>
<if test="fieldType != null and fieldType != ''"> and field_type = #{fieldType} </if>
<if test="dictionaryDetailId != null and dictionaryDetailId != ''"> and dictionary_detail_id = #{dictionaryDetailId} </if>
<if test="showName != null and showName != ''"> and show_name = #{showName} </if>
<if test="templateSort != null"> and template_sort = #{templateSort} </if>
<if test="templateSwitch != null and templateSwitch != ''"> and template_switch = #{templateSwitch} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </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_time != null"> and modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> and sts = #{sts} </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.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity">
select count(1) from excel_template_config_detail
<trim prefix="where" prefixOverrides="and">
<if test="fieldName != null and fieldName != ''"> and field_name = #{fieldName} </if>
<if test="fieldCode != null and fieldCode != ''"> and field_code = #{fieldCode} </if>
<if test="fieldType != null and fieldType != ''"> and field_type = #{fieldType} </if>
<if test="dictionaryDetailId != null and dictionaryDetailId != ''"> and dictionary_detail_id = #{dictionaryDetailId} </if>
<if test="showName != null and showName != ''"> and show_name = #{showName} </if>
<if test="templateSort != null"> and template_sort = #{templateSort} </if>
<if test="templateSwitch != null and templateSwitch != ''"> and template_switch = #{templateSwitch} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </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_time != null"> and modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> and sts = #{sts} </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-ExcelTemplateConfigDetailEntity-result" parameterType = "com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity">
select
<include refid="ExcelTemplateConfigDetailEntity_Base_Column_List" />
from excel_template_config_detail
<trim prefix="where" prefixOverrides="and">
<if test="fieldName != null and fieldName != ''"> and field_name like concat('%',#{fieldName},'%') </if>
<if test="fieldCode != null and fieldCode != ''"> and field_code like concat('%',#{fieldCode},'%') </if>
<if test="fieldType != null and fieldType != ''"> and field_type like concat('%',#{fieldType},'%') </if>
<if test="dictionaryDetailId != null and dictionaryDetailId != ''"> and dictionary_detail_id like concat('%',#{dictionaryDetailId},'%') </if>
<if test="showName != null and showName != ''"> and show_name like concat('%',#{showName},'%') </if>
<if test="templateSort != null"> and template_sort like concat('%',#{templateSort},'%') </if>
<if test="templateSwitch != null and templateSwitch != ''"> and template_switch like concat('%',#{templateSwitch},'%') </if>
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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_time != null"> and modify_time like concat('%',#{modify_time},'%') </if>
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id like concat('%',#{modify_user_id},'%') </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="sts != null and sts != ''"> and sts like concat('%',#{sts},'%') </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="ExcelTemplateConfigDetailentity_list_or" resultMap="get-ExcelTemplateConfigDetailEntity-result" parameterType = "com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity">
select
<include refid="ExcelTemplateConfigDetailEntity_Base_Column_List" />
from excel_template_config_detail
<trim prefix="where" prefixOverrides="and">
<if test="fieldName != null and fieldName != ''"> or field_name = #{fieldName} </if>
<if test="fieldCode != null and fieldCode != ''"> or field_code = #{fieldCode} </if>
<if test="fieldType != null and fieldType != ''"> or field_type = #{fieldType} </if>
<if test="dictionaryDetailId != null and dictionaryDetailId != ''"> or dictionary_detail_id = #{dictionaryDetailId} </if>
<if test="showName != null and showName != ''"> or show_name = #{showName} </if>
<if test="templateSort != null"> or template_sort = #{templateSort} </if>
<if test="templateSwitch != null and templateSwitch != ''"> or template_switch = #{templateSwitch} </if>
<if test="sorts != null"> or sorts = #{sorts} </if>
<if test="id != null and id != ''"> or id = #{id} </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_time != null"> or modify_time = #{modify_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> or modify_user_id = #{modify_user_id} </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="sts != null and sts != ''"> or sts = #{sts} </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.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template_config_detail(
<trim suffix="" suffixOverrides=",">
<if test="fieldName != null and fieldName != ''"> field_name , </if>
<if test="fieldCode != null and fieldCode != ''"> field_code , </if>
<if test="fieldType != null and fieldType != ''"> field_type , </if>
<if test="dictionaryDetailId != null and dictionaryDetailId != ''"> dictionary_detail_id , </if>
<if test="showName != null and showName != ''"> show_name , </if>
<if test="templateSort != null"> template_sort , </if>
<if test="templateSwitch != null and templateSwitch != ''"> template_switch , </if>
<if test="sorts != null"> sorts , </if>
<if test="id != null and id != ''"> id , </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_time != null"> modify_time , </if>
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id , </if>
<if test="org_id != null and org_id != ''"> org_id , </if>
<if test="companyId != null and companyId != ''"> company_id , </if>
<if test="sts != null and sts != ''"> sts , </if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="fieldName != null and fieldName != ''"> #{fieldName} ,</if>
<if test="fieldCode != null and fieldCode != ''"> #{fieldCode} ,</if>
<if test="fieldType != null and fieldType != ''"> #{fieldType} ,</if>
<if test="dictionaryDetailId != null and dictionaryDetailId != ''"> #{dictionaryDetailId} ,</if>
<if test="showName != null and showName != ''"> #{showName} ,</if>
<if test="templateSort != null"> #{templateSort} ,</if>
<if test="templateSwitch != null and templateSwitch != ''"> #{templateSwitch} ,</if>
<if test="sorts != null"> #{sorts} ,</if>
<if test="id != null and id != ''"> #{id} ,</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_time != null"> #{modify_time} ,</if>
<if test="modify_user_id != null and modify_user_id != ''"> #{modify_user_id} ,</if>
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
<if test="sts != null and sts != ''"> #{sts} ,</if>
<if test="sorts == null ">(select (max(IFNULL( a.sorts, 0 )) + 1) as sort from excel_template_config_detail a WHERE a.sts = 'Y' ),</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template_config_detail(field_name, field_code, field_type, dictionary_detail_id, show_name, template_sort, template_switch, create_user_id, create_time, modify_time, modify_user_id, org_id, company_id, sts, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.fieldName},#{entity.fieldCode},#{entity.fieldType},#{entity.dictionaryDetailId},#{entity.showName},#{entity.templateSort},#{entity.templateSwitch},#{entity.create_user_id},#{entity.create_time},#{entity.modify_time},#{entity.modify_user_id},#{entity.org_id},#{entity.companyId},#{entity.sts}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="sorts" useGeneratedKeys="true">
insert into excel_template_config_detail(field_name, field_code, field_type, dictionary_detail_id, show_name, template_sort, template_switch, create_user_id, create_time, modify_time, modify_user_id, org_id, company_id, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.fieldName},#{entity.fieldCode},#{entity.fieldType},#{entity.dictionaryDetailId},#{entity.showName},#{entity.templateSort},#{entity.templateSwitch},#{entity.create_user_id},#{entity.create_time},#{entity.modify_time},#{entity.modify_user_id},#{entity.org_id},#{entity.companyId},#{entity.sts})
</foreach>
on duplicate key update
field_name = values(field_name),
field_code = values(field_code),
field_type = values(field_type),
dictionary_detail_id = values(dictionary_detail_id),
show_name = values(show_name),
template_sort = values(template_sort),
template_switch = values(template_switch),
create_user_id = values(create_user_id),
create_time = values(create_time),
modify_time = values(modify_time),
modify_user_id = values(modify_user_id),
org_id = values(org_id),
company_id = values(company_id),
sts = values(sts)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity" >
update excel_template_config_detail set
<trim suffix="" suffixOverrides=",">
<if test="fieldName != null and fieldName != ''"> field_name = #{fieldName},</if>
<if test="fieldCode != null and fieldCode != ''"> field_code = #{fieldCode},</if>
<if test="fieldType != null and fieldType != ''"> field_type = #{fieldType},</if>
<if test="dictionaryDetailId != null and dictionaryDetailId != ''"> dictionary_detail_id = #{dictionaryDetailId},</if>
<if test="showName != null and showName != ''"> show_name = #{showName},</if>
<if test="templateSort != null"> template_sort = #{templateSort},</if>
<if test="templateSwitch != null and templateSwitch != ''"> template_switch = #{templateSwitch},</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_time != null"> modify_time = #{modify_time},</if>
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id = #{modify_user_id},</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="sts != null and sts != ''"> sts = #{sts},</if>
</trim>
where sorts = #{sorts}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity" >
update excel_template_config_detail set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
where sorts = #{sorts}
</update>
<!-- 多条件逻辑删除 -->
<update id="entity_logicDelete_Multi_Condition" parameterType = "com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity" >
update excel_template_config_detail set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
<trim prefix="where" prefixOverrides="and">
<if test="fieldName != null and fieldName != ''"> and field_name = #{fieldName} </if>
<if test="fieldCode != null and fieldCode != ''"> and field_code = #{fieldCode} </if>
<if test="fieldType != null and fieldType != ''"> and field_type = #{fieldType} </if>
<if test="dictionaryDetailId != null and dictionaryDetailId != ''"> and dictionary_detail_id = #{dictionaryDetailId} </if>
<if test="showName != null and showName != ''"> and show_name = #{showName} </if>
<if test="templateSort != null"> and template_sort = #{templateSort} </if>
<if test="templateSwitch != null and templateSwitch != ''"> and template_switch = #{templateSwitch} </if>
<if test="sorts != null"> and sorts = #{sorts} </if>
<if test="id != null and id != ''"> and id = #{id} </if>
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from excel_template_config_detail where sorts = #{sorts}
</delete>
</mapper>

View File

@ -1,12 +0,0 @@
package com.hzya.frame.excel.templateConfigDetial.service;
import com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* excel模版配置明细表(ExcelTemplateConfigDetail)表服务接口
*
* @author makejava
* @since 2024-08-13 08:39:02
*/
public interface IExcelTemplateConfigDetailService extends IBaseService<ExcelTemplateConfigDetailEntity, String>{
}

View File

@ -1,26 +0,0 @@
package com.hzya.frame.excel.templateConfigDetial.service.impl;
import com.hzya.frame.excel.templateConfigDetial.entity.ExcelTemplateConfigDetailEntity;
import com.hzya.frame.excel.templateConfigDetial.dao.IExcelTemplateConfigDetailDao;
import com.hzya.frame.excel.templateConfigDetial.service.IExcelTemplateConfigDetailService;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import javax.annotation.Resource;
import com.hzya.frame.basedao.service.impl.BaseService;
/**
* excel模版配置明细表(ExcelTemplateConfigDetail)表服务实现类
*
* @author makejava
* @since 2024-08-13 08:39:02
*/
@Service(value = "excelTemplateConfigDetailService")
public class ExcelTemplateConfigDetailServiceImpl extends BaseService<ExcelTemplateConfigDetailEntity, String> implements IExcelTemplateConfigDetailService {
private IExcelTemplateConfigDetailDao excelTemplateConfigDetailDao;
@Autowired
public void setExcelTemplateConfigDetailDao(IExcelTemplateConfigDetailDao dao) {
this.excelTemplateConfigDetailDao = dao;
this.dao = dao;
}
}

View File

@ -1,77 +0,0 @@
package com.hzya.frame.mdm.entity;
public class MdmFiledsRuleDto {
/** 主数据模版ID */
private String mdmId;
/** 模版数据库id */
private String dbId;
/** 模版数据库字段id */
private String filedId;
/** 字段类型 1、select 2、treeselect */
private String filedType;
/** 字段服务 */
private String typeFiled;
/** 字段服务 */
private String id;
/** 字段服务 */
private String dataId;
public String getMdmId() {
return mdmId;
}
public void setMdmId(String mdmId) {
this.mdmId = mdmId;
}
public String getDbId() {
return dbId;
}
public void setDbId(String dbId) {
this.dbId = dbId;
}
public String getFiledId() {
return filedId;
}
public void setFiledId(String filedId) {
this.filedId = filedId;
}
public String getFiledType() {
return filedType;
}
public void setFiledType(String filedType) {
this.filedType = filedType;
}
public String getTypeFiled() {
return typeFiled;
}
public void setTypeFiled(String typeFiled) {
this.typeFiled = typeFiled;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getDataId() {
return dataId;
}
public void setDataId(String dataId) {
this.dataId = dataId;
}
}

View File

@ -1,342 +0,0 @@
<?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.mdm.mdmModuleDbFiledsRule.dao.impl.MdmModuleDbFiledsRuleDaoImpl">
<resultMap id="get-MdmModuleDbFiledsRuleEntity-result"
type="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
<result property="id" column="id" jdbcType="VARCHAR"/>
<result property="mdmId" column="mdm_id" jdbcType="VARCHAR"/>
<result property="formName" column="form_name" jdbcType="VARCHAR"/>
<result property="dbId" column="db_id" jdbcType="VARCHAR"/>
<result property="filedId" column="filed_id" jdbcType="VARCHAR"/>
<result property="ruleName" column="rule_name" jdbcType="VARCHAR"/>
<result property="ruleCode" column="rule_code" jdbcType="VARCHAR"/>
<result property="ruleValue" column="rule_value" jdbcType="VARCHAR"/>
<result property="ruleType" column="rule_type" jdbcType="VARCHAR"/>
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
<result property="create_user_id" column="create_user_id" jdbcType="VARCHAR"/>
<result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
<result property="modify_user_id" column="modify_user_id" jdbcType="VARCHAR"/>
<result property="modify_time" column="modify_time" jdbcType="TIMESTAMP"/>
<result property="sts" column="sts" jdbcType="VARCHAR"/>
<result property="org_id" column="org_id" jdbcType="VARCHAR"/>
<result property="companyId" column="company_id" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id="MdmModuleDbFiledsRuleEntity_Base_Column_List">
id
,mdm_id
,form_name
,db_id
,filed_id
,rule_name
,rule_code
,rule_value
,rule_type
,sorts
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,org_id
,company_id
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-MdmModuleDbFiledsRuleEntity-result"
parameterType="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
select
<include refid="MdmModuleDbFiledsRuleEntity_Base_Column_List"/>
from mdm_module_db_fileds_rule
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id = #{id}</if>
<if test="mdmId != null and mdmId != ''">and mdm_id = #{mdmId}</if>
<if test="formName != null and formName != ''">and form_name = #{formName}</if>
<if test="dbId != null and dbId != ''">and db_id = #{dbId}</if>
<if test="filedId != null and filedId != ''">and filed_id = #{filedId}</if>
<if test="ruleName != null and ruleName != ''">and rule_name = #{ruleName}</if>
<if test="ruleCode != null and ruleCode != ''">and rule_code = #{ruleCode}</if>
<if test="ruleValue != null and ruleValue != ''">and rule_value = #{ruleValue}</if>
<if test="ruleType != null and ruleType != ''">and rule_type = #{ruleType}</if>
<if test="sorts != null">and sorts = #{sorts}</if>
<if test="create_user_id != null and create_user_id != ''">and create_user_id = #{create_user_id}</if>
<if test="create_time != null">and create_time = #{create_time}</if>
<if test="modify_user_id != null and modify_user_id != ''">and modify_user_id = #{modify_user_id}</if>
<if test="modify_time != null">and modify_time = #{modify_time}</if>
<if test="sts != null and sts != ''">and sts = #{sts}</if>
<if test="org_id != null and org_id != ''">and org_id = #{org_id}</if>
<if test="companyId != null and companyId != ''">and company_id = #{companyId}</if>
and sts='Y'
</trim>
<if test=" sort == null or sort == ''.toString() ">order by sorts asc</if>
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
</select>
<!-- 查询符合条件的数量 -->
<select id="entity_count" resultType="Integer"
parameterType="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
select count(1) from mdm_module_db_fileds_rule
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id = #{id}</if>
<if test="mdmId != null and mdmId != ''">and mdm_id = #{mdmId}</if>
<if test="formName != null and formName != ''">and form_name = #{formName}</if>
<if test="dbId != null and dbId != ''">and db_id = #{dbId}</if>
<if test="filedId != null and filedId != ''">and filed_id = #{filedId}</if>
<if test="ruleName != null and ruleName != ''">and rule_name = #{ruleName}</if>
<if test="ruleCode != null and ruleCode != ''">and rule_code = #{ruleCode}</if>
<if test="ruleValue != null and ruleValue != ''">and rule_value = #{ruleValue}</if>
<if test="ruleType != null and ruleType != ''">and rule_type = #{ruleType}</if>
<if test="sorts != null">and sorts = #{sorts}</if>
<if test="create_user_id != null and create_user_id != ''">and create_user_id = #{create_user_id}</if>
<if test="create_time != null">and create_time = #{create_time}</if>
<if test="modify_user_id != null and modify_user_id != ''">and modify_user_id = #{modify_user_id}</if>
<if test="modify_time != null">and modify_time = #{modify_time}</if>
<if test="sts != null and sts != ''">and sts = #{sts}</if>
<if test="org_id != null and org_id != ''">and org_id = #{org_id}</if>
<if test="companyId != null and companyId != ''">and company_id = #{companyId}</if>
and sts='Y'
</trim>
<if test=" sort == null or sort == ''.toString() ">order by sorts asc</if>
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
</select>
<!-- 分页查询列表 采用like格式 -->
<select id="entity_list_like" resultMap="get-MdmModuleDbFiledsRuleEntity-result"
parameterType="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
select
<include refid="MdmModuleDbFiledsRuleEntity_Base_Column_List"/>
from mdm_module_db_fileds_rule
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id like concat('%',#{id},'%')</if>
<if test="mdmId != null and mdmId != ''">and mdm_id like concat('%',#{mdmId},'%')</if>
<if test="formName != null and formName != ''">and form_name like concat('%',#{formName},'%')</if>
<if test="dbId != null and dbId != ''">and db_id like concat('%',#{dbId},'%')</if>
<if test="filedId != null and filedId != ''">and filed_id like concat('%',#{filedId},'%')</if>
<if test="ruleName != null and ruleName != ''">and rule_name like concat('%',#{ruleName},'%')</if>
<if test="ruleCode != null and ruleCode != ''">and rule_code like concat('%',#{ruleCode},'%')</if>
<if test="ruleValue != null and ruleValue != ''">and rule_value like concat('%',#{ruleValue},'%')</if>
<if test="ruleType != null and ruleType != ''">and rule_type like concat('%',#{ruleType},'%')</if>
<if test="sorts != null">and sorts like concat('%',#{sorts},'%')</if>
<if test="create_user_id != null and create_user_id != ''">and create_user_id like
concat('%',#{create_user_id},'%')
</if>
<if test="create_time != null">and create_time like concat('%',#{create_time},'%')</if>
<if test="modify_user_id != null and modify_user_id != ''">and modify_user_id like
concat('%',#{modify_user_id},'%')
</if>
<if test="modify_time != null">and modify_time like concat('%',#{modify_time},'%')</if>
<if test="sts != null and sts != ''">and sts like concat('%',#{sts},'%')</if>
<if test="org_id != null and org_id != ''">and org_id like concat('%',#{org_id},'%')</if>
<if test="companyId != null and companyId != ''">and company_id like concat('%',#{companyId},'%')</if>
and sts='Y'
</trim>
<if test=" sort == null or sort == ''.toString() ">order by sorts asc</if>
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
</select>
<!-- 查询列表 字段采用or格式 -->
<select id="MdmModuleDbFiledsRuleentity_list_or" resultMap="get-MdmModuleDbFiledsRuleEntity-result"
parameterType="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
select
<include refid="MdmModuleDbFiledsRuleEntity_Base_Column_List"/>
from mdm_module_db_fileds_rule
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">or id = #{id}</if>
<if test="mdmId != null and mdmId != ''">or mdm_id = #{mdmId}</if>
<if test="formName != null and formName != ''">or form_name = #{formName}</if>
<if test="dbId != null and dbId != ''">or db_id = #{dbId}</if>
<if test="filedId != null and filedId != ''">or filed_id = #{filedId}</if>
<if test="ruleName != null and ruleName != ''">or rule_name = #{ruleName}</if>
<if test="ruleCode != null and ruleCode != ''">or rule_code = #{ruleCode}</if>
<if test="ruleValue != null and ruleValue != ''">or rule_value = #{ruleValue}</if>
<if test="ruleType != null and ruleType != ''">or rule_type = #{ruleType}</if>
<if test="sorts != null">or sorts = #{sorts}</if>
<if test="create_user_id != null and create_user_id != ''">or create_user_id = #{create_user_id}</if>
<if test="create_time != null">or create_time = #{create_time}</if>
<if test="modify_user_id != null and modify_user_id != ''">or modify_user_id = #{modify_user_id}</if>
<if test="modify_time != null">or modify_time = #{modify_time}</if>
<if test="sts != null and sts != ''">or sts = #{sts}</if>
<if test="org_id != null and org_id != ''">or org_id = #{org_id}</if>
<if test="companyId != null and companyId != ''">or company_id = #{companyId}</if>
and sts='Y'
</trim>
<if test=" sort == null or sort == ''.toString() ">order by sorts asc</if>
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
</select>
<!--新增所有列-->
<insert id="entity_insert"
parameterType="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
insert into mdm_module_db_fileds_rule(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">id ,</if>
<if test="mdmId != null and mdmId != ''">mdm_id ,</if>
<if test="formName != null and formName != ''">form_name ,</if>
<if test="dbId != null and dbId != ''">db_id ,</if>
<if test="filedId != null and filedId != ''">filed_id ,</if>
<if test="ruleName != null and ruleName != ''">rule_name ,</if>
<if test="ruleCode != null and ruleCode != ''">rule_code ,</if>
<if test="ruleValue != null and ruleValue != ''">rule_value ,</if>
<if test="ruleType != null and ruleType != ''">rule_type ,</if>
<if test="sorts != null">sorts ,</if>
<if test="create_user_id != null and create_user_id != ''">create_user_id ,</if>
<if test="create_time != null">create_time ,</if>
<if test="modify_user_id != null and modify_user_id != ''">modify_user_id ,</if>
<if test="modify_time != null">modify_time ,</if>
<if test="sts != null and sts != ''">sts ,</if>
<if test="org_id != null and org_id != ''">org_id ,</if>
<if test="companyId != null and companyId != ''">company_id ,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">#{id} ,</if>
<if test="mdmId != null and mdmId != ''">#{mdmId} ,</if>
<if test="formName != null and formName != ''">#{formName} ,</if>
<if test="dbId != null and dbId != ''">#{dbId} ,</if>
<if test="filedId != null and filedId != ''">#{filedId} ,</if>
<if test="ruleName != null and ruleName != ''">#{ruleName} ,</if>
<if test="ruleCode != null and ruleCode != ''">#{ruleCode} ,</if>
<if test="ruleValue != null and ruleValue != ''">#{ruleValue} ,</if>
<if test="ruleType != null and ruleType != ''">#{ruleType} ,</if>
<if test="sorts != null">#{sorts} ,</if>
<if test="create_user_id != null and create_user_id != ''">#{create_user_id} ,</if>
<if test="create_time != null">#{create_time} ,</if>
<if test="modify_user_id != null and modify_user_id != ''">#{modify_user_id} ,</if>
<if test="modify_time != null">#{modify_time} ,</if>
<if test="sts != null and sts != ''">#{sts} ,</if>
<if test="org_id != null and org_id != ''">#{org_id} ,</if>
<if test="companyId != null and companyId != ''">#{companyId} ,</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch">
insert into mdm_module_db_fileds_rule(mdm_id, form_name, db_id, filed_id, rule_name, rule_code, rule_value,
rule_type, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.mdmId},#{entity.formName},#{entity.dbId},#{entity.filedId},#{entity.ruleName},#{entity.ruleCode},#{entity.ruleValue},#{entity.ruleType},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId},
'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch">
insert into mdm_module_db_fileds_rule(mdm_id, form_name, db_id, filed_id, rule_name, rule_code, rule_value,
rule_type, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.mdmId},#{entity.formName},#{entity.dbId},#{entity.filedId},#{entity.ruleName},#{entity.ruleCode},#{entity.ruleValue},#{entity.ruleType},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId})
</foreach>
on duplicate key update
mdm_id = values(mdm_id),
form_name = values(form_name),
db_id = values(db_id),
filed_id = values(filed_id),
rule_name = values(rule_name),
rule_code = values(rule_code),
rule_value = values(rule_value),
rule_type = values(rule_type),
create_user_id = values(create_user_id),
create_time = values(create_time),
modify_user_id = values(modify_user_id),
modify_time = values(modify_time),
sts = values(sts),
org_id = values(org_id),
company_id = values(company_id)
</insert>
<!--通过主键修改方法-->
<update id="entity_update"
parameterType="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
update mdm_module_db_fileds_rule set
<trim suffix="" suffixOverrides=",">
<if test="mdmId != null and mdmId != ''">mdm_id = #{mdmId},</if>
<if test="formName != null and formName != ''">form_name = #{formName},</if>
<if test="dbId != null and dbId != ''">db_id = #{dbId},</if>
<if test="filedId != null and filedId != ''">filed_id = #{filedId},</if>
<if test="ruleName != null and ruleName != ''">rule_name = #{ruleName},</if>
<if test="ruleCode != null and ruleCode != ''">rule_code = #{ruleCode},</if>
<if test="ruleValue != null and ruleValue != ''">rule_value = #{ruleValue},</if>
<if test="ruleType != null and ruleType != ''">rule_type = #{ruleType},</if>
<if test="create_user_id != null and create_user_id != ''">create_user_id = #{create_user_id},</if>
<if test="create_time != null">create_time = #{create_time},</if>
<if test="modify_user_id != null and modify_user_id != ''">modify_user_id = #{modify_user_id},</if>
<if test="modify_time != null">modify_time = #{modify_time},</if>
<if test="sts != null and sts != ''">sts = #{sts},</if>
<if test="org_id != null and org_id != ''">org_id = #{org_id},</if>
<if test="companyId != null and companyId != ''">company_id = #{companyId},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete"
parameterType="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
update mdm_module_db_fileds_rule
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.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
update mdm_module_db_fileds_rule 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="mdmId != null and mdmId != ''">and mdm_id = #{mdmId}</if>
<if test="formName != null and formName != ''">and form_name = #{formName}</if>
<if test="dbId != null and dbId != ''">and db_id = #{dbId}</if>
<if test="filedId != null and filedId != ''">and filed_id = #{filedId}</if>
<if test="ruleName != null and ruleName != ''">and rule_name = #{ruleName}</if>
<if test="ruleCode != null and ruleCode != ''">and rule_code = #{ruleCode}</if>
<if test="ruleValue != null and ruleValue != ''">and rule_value = #{ruleValue}</if>
<if test="ruleType != null and ruleType != ''">and rule_type = #{ruleType}</if>
<if test="sorts != null">and sorts = #{sorts}</if>
<if test="sts != null and sts != ''">and sts = #{sts}</if>
<if test="companyId != null and companyId != ''">and company_id = #{companyId}</if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete
from mdm_module_db_fileds_rule
where id = #{id}
</delete>
<!-- 查询符合条件的数量 -->
<select id="queryUserMdm" resultType="Integer"
parameterType="com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity">
select count(1) from mdm_module_db_fileds_rule
<trim prefix="where" prefixOverrides="and">
<if test="mdmId != null and mdmId != ''">and mdm_id != #{mdmId}</if>
<if test="ruleCode != null and ruleCode != ''">and rule_code = #{ruleCode}</if>
<if test="ruleValue != null and ruleValue != ''">and rule_value = #{ruleValue}</if>
and sts='Y'
</trim>
</select>
<!-- 查询列表 字段采用or格式 -->
<select id="queryServiceQuote" resultMap="get-MdmModuleDbFiledsRuleEntity-result">
SELECT filed_id,
db_id,
mdm_id
from (
SELECT filed_id,
db_id,
mdm_id,
COUNT(*) as num
FROM mdm_module_db_fileds_rule
WHERE `sts` = 'Y'
and (
(rule_code = 'type' and rule_value = 'treeselect')
or (rule_code = 'service' and rule_value = #{service})
or (rule_code = 'upId' and rule_value = #{upId})
)
GROUP BY filed_id, db_id, mdm_id) a
WHERE a.num = 3
</select>
</mapper>

View File

@ -1,16 +0,0 @@
package com.hzya.frame.mdm.mdmModuleDistributeTripartite.dao;
import com.hzya.frame.mdm.mdmModuleDistributeTripartite.entity.MdmModuleDistributeTripartiteEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 主数据下发三方主键表(mdm_module_distribute_tripartite: table)表数据库访问层
*
* @author makejava
* @since 2024-07-15 11:33:38
*/
public interface IMdmModuleDistributeTripartiteDao extends IBaseDao<MdmModuleDistributeTripartiteEntity, String> {
MdmModuleDistributeTripartiteEntity queryOneTripartite(MdmModuleDistributeTripartiteEntity mdmModuleDistributeTripartiteEntity);
}

View File

@ -1,22 +0,0 @@
package com.hzya.frame.mdm.mdmModuleDistributeTripartite.dao.impl;
import com.hzya.frame.mdm.mdmModuleDistributeTripartite.entity.MdmModuleDistributeTripartiteEntity;
import com.hzya.frame.mdm.mdmModuleDistributeTripartite.dao.IMdmModuleDistributeTripartiteDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 主数据下发三方主键表(MdmModuleDistributeTripartite)表数据库访问层
*
* @author makejava
* @since 2024-07-15 11:33:38
*/
@Repository(value = "MdmModuleDistributeTripartiteDaoImpl")
public class MdmModuleDistributeTripartiteDaoImpl extends MybatisGenericDao<MdmModuleDistributeTripartiteEntity, String> implements IMdmModuleDistributeTripartiteDao{
@Override
public MdmModuleDistributeTripartiteEntity queryOneTripartite(MdmModuleDistributeTripartiteEntity entity) {
MdmModuleDistributeTripartiteEntity o = (MdmModuleDistributeTripartiteEntity) super.selectOne(getSqlIdPrifx() + "queryOneTripartite", entity);
return o;
}
}

View File

@ -1,66 +0,0 @@
package com.hzya.frame.mdm.mdmModuleDistributeTripartite.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 主数据下发三方主键表(MdmModuleDistributeTripartite)实体类
*
* @author makejava
* @since 2024-07-15 11:33:39
*/
public class MdmModuleDistributeTripartiteEntity extends BaseEntity {
/** 公司id */
private String companyId;
/** 主数据id */
private String mdmId;
/** 数据id */
private String dataId;
/** 应用id */
private String appId;
/** 三方id */
private String tripartiteId;
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public String getMdmId() {
return mdmId;
}
public void setMdmId(String mdmId) {
this.mdmId = mdmId;
}
public String getDataId() {
return dataId;
}
public void setDataId(String dataId) {
this.dataId = dataId;
}
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getTripartiteId() {
return tripartiteId;
}
public void setTripartiteId(String tripartiteId) {
this.tripartiteId = tripartiteId;
}
}

View File

@ -1,12 +0,0 @@
package com.hzya.frame.mdm.mdmModuleDistributeTripartite.service;
import com.hzya.frame.mdm.mdmModuleDistributeTripartite.entity.MdmModuleDistributeTripartiteEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* 主数据下发三方主键表(MdmModuleDistributeTripartite)表服务接口
*
* @author makejava
* @since 2024-07-15 11:33:39
*/
public interface IMdmModuleDistributeTripartiteService extends IBaseService<MdmModuleDistributeTripartiteEntity, String>{
}

View File

@ -1,26 +0,0 @@
package com.hzya.frame.mdm.mdmModuleDistributeTripartite.service.impl;
import com.hzya.frame.mdm.mdmModuleDistributeTripartite.entity.MdmModuleDistributeTripartiteEntity;
import com.hzya.frame.mdm.mdmModuleDistributeTripartite.dao.IMdmModuleDistributeTripartiteDao;
import com.hzya.frame.mdm.mdmModuleDistributeTripartite.service.IMdmModuleDistributeTripartiteService;
import org.springframework.stereotype.Service;
import org.springframework.beans.factory.annotation.Autowired;
import javax.annotation.Resource;
import com.hzya.frame.basedao.service.impl.BaseService;
/**
* 主数据下发三方主键表(MdmModuleDistributeTripartite)表服务实现类
*
* @author makejava
* @since 2024-07-15 11:33:39
*/
@Service(value = "mdmModuleDistributeTripartiteService")
public class MdmModuleDistributeTripartiteServiceImpl extends BaseService<MdmModuleDistributeTripartiteEntity, String> implements IMdmModuleDistributeTripartiteService {
private IMdmModuleDistributeTripartiteDao mdmModuleDistributeTripartiteDao;
@Autowired
public void setMdmModuleDistributeTripartiteDao(IMdmModuleDistributeTripartiteDao dao) {
this.mdmModuleDistributeTripartiteDao = dao;
this.dao = dao;
}
}

View File

@ -1,242 +0,0 @@
package com.hzya.frame.sys.file.download.service.impl;
import com.hzya.frame.basedao.service.impl.BaseService;
import com.hzya.frame.sys.file.upload.entity.FileUploadDto;
import com.hzya.frame.web.exception.BaseSystemException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import com.hzya.frame.sys.file.download.entity.FileDownloadEntity;
import com.hzya.frame.sys.file.download.service.IFileDownloadService;
import com.hzya.frame.sys.file.download.dao.IFileDownloadDao;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import java.util.zip.ZipInputStream;
/**
* @description: 系统文件下载 service
* @tableName: sys_file
* @entityName: FileDownloadEntity
* @author: gjh
* @history: 1.0
*/
@Service(value="sys_fileDownloadService")
public class FileDownloadServiceImpl extends BaseService< FileDownloadEntity,Long> implements IFileDownloadService{
protected IFileDownloadDao filedownloadDao;
@Value("${savefile.path}")
public String DSK;
@Value("${savefile.pluginpath}")
public String PLUGINPATH;
@Value("${savefile.tomcatpath}")
public String TOMCATPATH;
@Autowired
public void setFileDownloadDao(IFileDownloadDao dao) {
this.filedownloadDao = dao;
this.dao=dao;
}
@Override
public FileDownloadEntity fileDownload(String fileSaveName)throws Exception {
/** 如果fileSaveName直接为空或者null直接抛出异常*/
if(null == fileSaveName || "".equals(fileSaveName)){
throw new BaseSystemException("请传入fileSaveName参数!");
}
/** 根据唯一名称获取文件信息*/
FileDownloadEntity queryEntity = new FileDownloadEntity();
queryEntity.setFilesavename(fileSaveName);
/** 查询出文件信息*/
FileDownloadEntity fileDownloadEntity =filedownloadDao.queryOne(queryEntity);
/** 查询不到文件的时候,直接抛出异常*/
if(fileDownloadEntity == null){
throw new BaseSystemException("文件不存在!");
}
/** 拼接文件路径*/
String filePath = fileDownloadEntity.getFilepath()+"/"+fileSaveName;
/** 获取file文件*/
File file = new File(filePath);
/** 设置file*/
fileDownloadEntity.setFile(file);
return fileDownloadEntity;
}
@Override
public FileDownloadEntity fileDownload(FileUploadDto fileUploadDto) {
/** 如果fileSaveName直接为空或者null直接抛出异常*/
if(fileUploadDto == null || fileUploadDto.getId() == null || "".equals(fileUploadDto.getId())){
throw new BaseSystemException("请传入参数!");
}
/** 根据唯一名称获取文件信息*/
FileDownloadEntity queryEntity = new FileDownloadEntity();
queryEntity.setId(fileUploadDto.getId());
queryEntity.setSts("Y");
/** 查询出文件信息*/
FileDownloadEntity fileDownloadEntity =filedownloadDao.queryOne(queryEntity);
/** 查询不到文件的时候,直接抛出异常*/
if(fileDownloadEntity == null){
throw new BaseSystemException("文件不存在!");
}
/** 拼接文件路径*/
String filePath = "";
if(fileDownloadEntity.getFileType() != null && fileDownloadEntity.getFileType().equals("2")){
filePath = PLUGINPATH + fileDownloadEntity.getFilepath().replace("/",File.separator).replace("\\",File.separator);
}else{
filePath = DSK + fileDownloadEntity.getFilepath().replace("/",File.separator).replace("\\",File.separator);
}
/** 获取file文件*/
File file = new File(filePath);
/** 设置file*/
fileDownloadEntity.setFile(file);
return fileDownloadEntity;
}
// @Override
// public FileDownloadEntity pluginZipUpate(FileUploadDto fileUploadDto) throws Exception {
// /** 如果fileUploadDto的id直接为空或者null直接抛出异常*/
// if(fileUploadDto == null || fileUploadDto.getId() == null || "".equals(fileUploadDto.getId())){
// throw new BaseSystemException("请传入参数!");
// }
// /** 根据唯一名称获取文件信息*/
// FileDownloadEntity queryEntity = new FileDownloadEntity();
// queryEntity.setId(fileUploadDto.getId());
// queryEntity.setSts("Y");
// FileDownloadEntity fileDownloadEntity =filedownloadDao.queryOne(queryEntity);
// String filePath = fileDownloadEntity.getFilepath();
// //插件附件路径
// String inputFile = PLUGINPATH + filePath;
//
// File srcFile = new File(inputFile);//获取当前压缩文件
// // 判断源文件是否存在
// if (!srcFile.exists()) {
// throw new Exception(srcFile.getPath() + "所指文件不存在");
// }
// ZipFile zipFile = new ZipFile(srcFile);//创建压缩文件对象
// //开始解压
// Enumeration<?> entries = zipFile.entries();
// boolean isFirst = true;
// String firstName = "";
// while (entries.hasMoreElements()) {
// ZipEntry entry = (ZipEntry) entries.nextElement();
// // 构造解压后的文件路径,去掉压缩包的名字
// String unzipPath = entry.getName().replace(firstName,"");
// String classPath = "com\\hzya\\frame\\plugin";
// String xmlPath = "cfgHome\\plugin";
//
// String dirPath = "";
// if(unzipPath.contains("classfile/")){
// dirPath = TOMCATPATH + "/" + classPath + unzipPath.replace("classfile","");
// }
// if(unzipPath.contains("xmlfile/")){
// dirPath = TOMCATPATH + "/" + xmlPath + unzipPath.replace("xmlfile","");
// }
//
// // 如果是文件夹就创建个文件夹
// if (entry.isDirectory()) {
// if(isFirst == false){
// File dir = new File(dirPath);
// dir.mkdirs();
// }else{
// firstName = entry.getName();
// isFirst = false;
// }
// } else {
// // 如果是文件就先创建一个文件然后用io流把内容copy过去
// File targetFile = new File(dirPath);
// // 保证这个文件的父文件夹必须要存在
// if (!targetFile.getParentFile().exists()) {
// targetFile.getParentFile().mkdirs();
// }
// targetFile.createNewFile();
// // 将压缩文件内容写入到这个文件中
// InputStream is = zipFile.getInputStream(entry);
// FileOutputStream fos = new FileOutputStream(targetFile);
// int len;
// byte[] buf = new byte[1024];
// while ((len = is.read(buf)) != -1) {
// fos.write(buf, 0, len);
// }
// // 关流顺序先打开的后关闭
// fos.close();
// is.close();
// }
// }
//
//
//
// return fileDownloadEntity;
// }
@Override
public FileDownloadEntity pluginZipUpate(FileUploadDto fileUploadDto) throws Exception {
/** 如果fileUploadDto的id直接为空或者null直接抛出异常*/
if(fileUploadDto == null || fileUploadDto.getId() == null || "".equals(fileUploadDto.getId())){
throw new BaseSystemException("请传入参数!");
}
/** 根据唯一名称获取文件信息*/
FileDownloadEntity queryEntity = new FileDownloadEntity();
queryEntity.setId(fileUploadDto.getId());
queryEntity.setSts("Y");
FileDownloadEntity fileDownloadEntity =filedownloadDao.queryOne(queryEntity);
String filePath = fileDownloadEntity.getFilepath();
//插件附件路径
String inputFile = PLUGINPATH + filePath;
File srcFile = new File(inputFile);//获取当前压缩文件
// 判断源文件是否存在
if (!srcFile.exists()) {
throw new Exception(srcFile.getPath() + "所指文件不存在");
}
ZipFile zipFile = new ZipFile(srcFile);//创建压缩文件对象
//开始解压
Enumeration<?> entries = zipFile.entries();
while (entries.hasMoreElements()) {
ZipEntry entry = (ZipEntry) entries.nextElement();
String unzipPath = entry.getName();
String dirPath = TOMCATPATH + unzipPath;
// 如果是文件夹就创建个文件夹
if (entry.isDirectory()) {
File dir = new File(dirPath);
dir.mkdirs();
} else {
// 如果是文件就先创建一个文件然后用io流把内容copy过去
File targetFile = new File(dirPath);
// 保证这个文件的父文件夹必须要存在
if (!targetFile.getParentFile().exists()) {
targetFile.getParentFile().mkdirs();
}
targetFile.createNewFile();
// 将压缩文件内容写入到这个文件中
InputStream is = zipFile.getInputStream(entry);
FileOutputStream fos = new FileOutputStream(targetFile);
int len;
byte[] buf = new byte[1024];
while ((len = is.read(buf)) != -1) {
fos.write(buf, 0, len);
}
// 关流顺序先打开的后关闭
fos.close();
is.close();
}
}
return fileDownloadEntity;
}
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowClassEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 流程分类;对应数环通项目分类(sys_flow_class: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowClassDao extends IBaseDao<SysFlowClassEntity, String> {
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 流程分类权限表(sys_flow_class_rule: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowClassRuleDao extends IBaseDao<SysFlowClassRuleEntity, String> {
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 流程主表;流程就是数环通的Linkup(sys_flow: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:19
*/
public interface ISysFlowDao extends IBaseDao<SysFlowEntity, String> {
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* nifi常量(sys_flow_nifi_constant: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowNifiConstantDao extends IBaseDao<SysFlowNifiConstantEntity, String> {
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 流程步骤账户表(sys_flow_step_account: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowStepAccountDao extends IBaseDao<SysFlowStepAccountEntity, String> {
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 映射信息表体(sys_flow_step_config_b: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public interface ISysFlowStepConfigBDao extends IBaseDao<SysFlowStepConfigBEntity, String> {
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 映射信息主表(sys_flow_step_config: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public interface ISysFlowStepConfigDao extends IBaseDao<SysFlowStepConfigEntity, String> {
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowStepEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 流程步骤信息(sys_flow_step: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowStepDao extends IBaseDao<SysFlowStepEntity, String> {
}

View File

@ -1,15 +0,0 @@
package com.hzya.frame.sys.flow.dao;
import com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity;
import com.hzya.frame.basedao.dao.IBaseDao;
/**
* 步骤关联关系表(sys_flow_step_relation: table)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public interface ISysFlowStepRelationDao extends IBaseDao<SysFlowStepRelationEntity, String> {
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowClassEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowClassDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 流程分类;对应数环通项目分类(SysFlowClass)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
@Repository(value = "SysFlowClassDaoImpl")
public class SysFlowClassDaoImpl extends MybatisGenericDao<SysFlowClassEntity, String> implements ISysFlowClassDao{
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowClassRuleDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 流程分类权限表(SysFlowClassRule)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
@Repository(value = "SysFlowClassRuleDaoImpl")
public class SysFlowClassRuleDaoImpl extends MybatisGenericDao<SysFlowClassRuleEntity, String> implements ISysFlowClassRuleDao{
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 流程主表;流程就是数环通的Linkup(SysFlow)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:21
*/
@Repository(value = "SysFlowDaoImpl")
public class SysFlowDaoImpl extends MybatisGenericDao<SysFlowEntity, String> implements ISysFlowDao{
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowNifiConstantDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* nifi常量(SysFlowNifiConstant)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
@Repository(value = "SysFlowNifiConstantDaoImpl")
public class SysFlowNifiConstantDaoImpl extends MybatisGenericDao<SysFlowNifiConstantEntity, String> implements ISysFlowNifiConstantDao{
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowStepAccountDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 流程步骤账户表(SysFlowStepAccount)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
@Repository(value = "SysFlowStepAccountDaoImpl")
public class SysFlowStepAccountDaoImpl extends MybatisGenericDao<SysFlowStepAccountEntity, String> implements ISysFlowStepAccountDao{
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowStepConfigBDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 映射信息表体(SysFlowStepConfigB)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
@Repository(value = "SysFlowStepConfigBDaoImpl")
public class SysFlowStepConfigBDaoImpl extends MybatisGenericDao<SysFlowStepConfigBEntity, String> implements ISysFlowStepConfigBDao{
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowStepConfigDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 映射信息主表(SysFlowStepConfig)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
@Repository(value = "SysFlowStepConfigDaoImpl")
public class SysFlowStepConfigDaoImpl extends MybatisGenericDao<SysFlowStepConfigEntity, String> implements ISysFlowStepConfigDao{
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowStepEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowStepDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 流程步骤信息(SysFlowStep)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
@Repository(value = "SysFlowStepDaoImpl")
public class SysFlowStepDaoImpl extends MybatisGenericDao<SysFlowStepEntity, String> implements ISysFlowStepDao{
}

View File

@ -1,17 +0,0 @@
package com.hzya.frame.sys.flow.dao.impl;
import com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity;
import com.hzya.frame.sys.flow.dao.ISysFlowStepRelationDao;
import org.springframework.stereotype.Repository;
import com.hzya.frame.basedao.dao.MybatisGenericDao;
/**
* 步骤关联关系表(SysFlowStepRelation)表数据库访问层
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
@Repository(value = "SysFlowStepRelationDaoImpl")
public class SysFlowStepRelationDaoImpl extends MybatisGenericDao<SysFlowStepRelationEntity, String> implements ISysFlowStepRelationDao{
}

View File

@ -1,36 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 流程分类;对应数环通项目分类(SysFlowClass)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public class SysFlowClassEntity extends BaseEntity {
/** 分类名称 */
private String name;
/** 上级id */
private String parentId;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getParentId() {
return parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
}
}

View File

@ -1,195 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowClassDaoImpl">
<resultMap id="get-SysFlowClassEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowClassEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="name" column="name" jdbcType="VARCHAR"/>
<result property="parentId" column="parent_id" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "SysFlowClassEntity_Base_Column_List">
id
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,name
,parent_id
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowClassEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowClassEntity">
select
<include refid="SysFlowClassEntity_Base_Column_List" />
from sys_flow_class
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="name != null and name != ''"> and name = #{name} </if>
<if test="parentId != null and parentId != ''"> and parent_id = #{parentId} </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.sys.flow.entity.SysFlowClassEntity">
select count(1) from sys_flow_class
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="name != null and name != ''"> and name = #{name} </if>
<if test="parentId != null and parentId != ''"> and parent_id = #{parentId} </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-SysFlowClassEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowClassEntity">
select
<include refid="SysFlowClassEntity_Base_Column_List" />
from sys_flow_class
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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="name != null and name != ''"> and name like concat('%',#{name},'%') </if>
<if test="parentId != null and parentId != ''"> and parent_id like concat('%',#{parentId},'%') </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="SysFlowClassentity_list_or" resultMap="get-SysFlowClassEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowClassEntity">
select
<include refid="SysFlowClassEntity_Base_Column_List" />
from sys_flow_class
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> or id = #{id} </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="name != null and name != ''"> or name = #{name} </if>
<if test="parentId != null and parentId != ''"> or parent_id = #{parentId} </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.sys.flow.entity.SysFlowClassEntity" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_class(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">id ,</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="name != null and name != ''">name ,</if>
<if test="parentId != null and parentId != ''">parent_id ,</if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">#{id} ,</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="name != null and name != ''">#{name} ,</if>
<if test="parentId != null and parentId != ''">#{parentId} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow_class a WHERE
a.sts = 'Y' ),1),
</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_class(create_user_id, create_time, modify_user_id, modify_time, sts, name, parent_id, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.name},#{entity.parentId}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_class(create_user_id, create_time, modify_user_id, modify_time, sts, name, parent_id)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.name},#{entity.parentId})
</foreach>
on duplicate key update
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),
name = values(name),
parent_id = values(parent_id)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowClassEntity" >
update sys_flow_class set
<trim suffix="" suffixOverrides=",">
<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="name != null and name != ''"> name = #{name},</if>
<if test="parentId != null and parentId != ''"> parent_id = #{parentId},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowClassEntity" >
update sys_flow_class 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.sys.flow.entity.SysFlowClassEntity" >
update sys_flow_class 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="sts != null and sts != ''"> and sts = #{sts} </if>
<if test="name != null and name != ''"> and name = #{name} </if>
<if test="parentId != null and parentId != ''"> and parent_id = #{parentId} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from sys_flow_class where id = #{id}
</delete>
</mapper>

View File

@ -1,75 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import java.util.List;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 流程分类权限表(SysFlowClassRule)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public class SysFlowClassRuleEntity extends BaseEntity {
/** 流程分类id */
private String flowClassId;
/** 用户id */
private String userId;
/** 用户名 */
private String userName;
/** 用户编码 */
private String userCode;
/** 头像 */
private String profileIcon;
//权限列表
List<SysFlowClassRuleEntity> ruleList;
public String getFlowClassId() {
return flowClassId;
}
public void setFlowClassId(String flowClassId) {
this.flowClassId = flowClassId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserCode() {
return userCode;
}
public void setUserCode(String userCode) {
this.userCode = userCode;
}
public String getProfileIcon() {
return profileIcon;
}
public void setProfileIcon(String profileIcon) {
this.profileIcon = profileIcon;
}
public List<SysFlowClassRuleEntity> getRuleList() {
return ruleList;
}
public void setRuleList(List<SysFlowClassRuleEntity> ruleList) {
this.ruleList = ruleList;
}
}

View File

@ -1,247 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowClassRuleDaoImpl">
<resultMap id="get-SysFlowClassRuleEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity">
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="flowClassId" column="flow_class_id" jdbcType="VARCHAR"/>
<result property="userId" column="user_id" jdbcType="VARCHAR"/>
<result property="userName" column="user_name" jdbcType="VARCHAR"/>
<result property="userCode" column="user_code" jdbcType="VARCHAR"/>
<result property="profileIcon" column="profile_icon" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id="SysFlowClassRuleEntity_Base_Column_List">
id
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,flow_class_id
,user_id
,user_name
,user_code
,profile_icon
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowClassRuleEntity-result"
parameterType="com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity">
select
<include refid="SysFlowClassRuleEntity_Base_Column_List"/>
from sys_flow_class_rule
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id = #{id}</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="flowClassId != null and flowClassId != ''">and flow_class_id = #{flowClassId}</if>
<if test="userId != null and userId != ''">and user_id = #{userId}</if>
<if test="userName != null and userName != ''">and user_name = #{userName}</if>
<if test="userCode != null and userCode != ''">and user_code = #{userCode}</if>
<if test="profileIcon != null and profileIcon != ''">and profile_icon = #{profileIcon}</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.sys.flow.entity.SysFlowClassRuleEntity">
select count(1) from sys_flow_class_rule
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id = #{id}</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="flowClassId != null and flowClassId != ''">and flow_class_id = #{flowClassId}</if>
<if test="userId != null and userId != ''">and user_id = #{userId}</if>
<if test="userName != null and userName != ''">and user_name = #{userName}</if>
<if test="userCode != null and userCode != ''">and user_code = #{userCode}</if>
<if test="profileIcon != null and profileIcon != ''">and profile_icon = #{profileIcon}</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-SysFlowClassRuleEntity-result"
parameterType="com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity">
select
<include refid="SysFlowClassRuleEntity_Base_Column_List"/>
from sys_flow_class_rule
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id like concat('%',#{id},'%')</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="flowClassId != null and flowClassId != ''">and flow_class_id like concat('%',#{flowClassId},'%')
</if>
<if test="userId != null and userId != ''">and user_id like concat('%',#{userId},'%')</if>
<if test="userName != null and userName != ''">and user_name like concat('%',#{userName},'%')</if>
<if test="userCode != null and userCode != ''">and user_code like concat('%',#{userCode},'%')</if>
<if test="profileIcon != null and profileIcon != ''">and profile_icon like concat('%',#{profileIcon},'%')
</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="SysFlowClassRuleentity_list_or" resultMap="get-SysFlowClassRuleEntity-result"
parameterType="com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity">
select
<include refid="SysFlowClassRuleEntity_Base_Column_List"/>
from sys_flow_class_rule
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">or id = #{id}</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="flowClassId != null and flowClassId != ''">or flow_class_id = #{flowClassId}</if>
<if test="userId != null and userId != ''">or user_id = #{userId}</if>
<if test="userName != null and userName != ''">or user_name = #{userName}</if>
<if test="userCode != null and userCode != ''">or user_code = #{userCode}</if>
<if test="profileIcon != null and profileIcon != ''">or profile_icon = #{profileIcon}</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.sys.flow.entity.SysFlowClassRuleEntity" keyProperty="id"
useGeneratedKeys="true">
insert into sys_flow_class_rule(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">id ,</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="flowClassId != null and flowClassId != ''">flow_class_id ,</if>
<if test="userId != null and userId != ''">user_id ,</if>
<if test="userName != null and userName != ''">user_name ,</if>
<if test="userCode != null and userCode != ''">user_code ,</if>
<if test="profileIcon != null and profileIcon != ''">profile_icon ,</if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">#{id} ,</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="flowClassId != null and flowClassId != ''">#{flowClassId} ,</if>
<if test="userId != null and userId != ''">#{userId} ,</if>
<if test="userName != null and userName != ''">#{userName} ,</if>
<if test="userCode != null and userCode != ''">#{userCode} ,</if>
<if test="profileIcon != null and profileIcon != ''">#{profileIcon} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow_class_rule a WHERE a.sts = 'Y' ),1),</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_class_rule(create_user_id, create_time, modify_user_id, modify_time, sts, flow_class_id,
user_id, user_name, user_code, profile_icon, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.flowClassId},#{entity.userId},#{entity.userName},#{entity.userCode},#{entity.profileIcon},
'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_class_rule(create_user_id, create_time, modify_user_id, modify_time, sts, flow_class_id,
user_id, user_name, user_code, profile_icon)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.flowClassId},#{entity.userId},#{entity.userName},#{entity.userCode},#{entity.profileIcon})
</foreach>
on duplicate key update
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),
flow_class_id = values(flow_class_id),
user_id = values(user_id),
user_name = values(user_name),
user_code = values(user_code),
profile_icon = values(profile_icon)
</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType="com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity">
update sys_flow_class_rule set
<trim suffix="" suffixOverrides=",">
<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="flowClassId != null and flowClassId != ''">flow_class_id = #{flowClassId},</if>
<if test="userId != null and userId != ''">user_id = #{userId},</if>
<if test="userName != null and userName != ''">user_name = #{userName},</if>
<if test="userCode != null and userCode != ''">user_code = #{userCode},</if>
<if test="profileIcon != null and profileIcon != ''">profile_icon = #{profileIcon},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType="com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity">
update sys_flow_class_rule
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.sys.flow.entity.SysFlowClassRuleEntity">
update sys_flow_class_rule 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="sts != null and sts != ''">and sts = #{sts}</if>
<if test="flowClassId != null and flowClassId != ''">and flow_class_id = #{flowClassId}</if>
<if test="userId != null and userId != ''">and user_id = #{userId}</if>
<if test="userName != null and userName != ''">and user_name = #{userName}</if>
<if test="userCode != null and userCode != ''">and user_code = #{userCode}</if>
<if test="profileIcon != null and profileIcon != ''">and profile_icon = #{profileIcon}</if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete
from sys_flow_class_rule
where id = #{id}
</delete>
</mapper>

View File

@ -1,92 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 流程主表;流程就是数环通的Linkup(SysFlow)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:23
*/
public class SysFlowEntity extends BaseEntity {
/** 流程名称 */
private String name;
/** 流程分类id */
private String classId;
private String className;
/** 触发方式id */
private String triggerModeId;
private String triggerModeName;
/** 应用组id */
private String nifiGroupId;
/** 流程描述 */
private String description;
//状态 启动/停止
private String status;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getClassId() {
return classId;
}
public void setClassId(String classId) {
this.classId = classId;
}
public String getTriggerModeId() {
return triggerModeId;
}
public void setTriggerModeId(String triggerModeId) {
this.triggerModeId = triggerModeId;
}
public String getNifiGroupId() {
return nifiGroupId;
}
public void setNifiGroupId(String nifiGroupId) {
this.nifiGroupId = nifiGroupId;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className;
}
public String getTriggerModeName() {
return triggerModeName;
}
public void setTriggerModeName(String triggerModeName) {
this.triggerModeName = triggerModeName;
}
}

View File

@ -1,241 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowDaoImpl">
<resultMap id="get-SysFlowEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="name" column="name" jdbcType="VARCHAR"/>
<result property="status" column="status" jdbcType="VARCHAR"/>
<result property="classId" column="class_id" jdbcType="VARCHAR"/>
<result property="className" column="className" jdbcType="VARCHAR"/>
<result property="triggerModeId" column="trigger_mode_id" jdbcType="VARCHAR"/>
<result property="nifiGroupId" column="nifi_group_id" jdbcType="VARCHAR"/>
<result property="description" column="description" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "SysFlowEntity_Base_Column_List">
sf.id
,sf.create_user_id
,sf.create_time
,sf.modify_user_id
,sf.modify_time
,sf.sts
,sf.name
,sf.status
,sf.class_id
,sfc.name as className
,sf.trigger_mode_id
,sf.nifi_group_id
,sf.description
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowEntity">
select
<include refid="SysFlowEntity_Base_Column_List" />
from sys_flow sf
left join sys_flow_class sfc on sfc.id = sf.class_id
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and sf.id = #{id} </if>
<if test="create_user_id != null and create_user_id != ''"> and sf.create_user_id = #{create_user_id} </if>
<if test="create_time != null"> and sf.create_time = #{create_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> and sf.modify_user_id = #{modify_user_id} </if>
<if test="modify_time != null"> and sf.modify_time = #{modify_time} </if>
<if test="sts != null and sts != ''"> and sf.sts = #{sts} </if>
<if test="name != null and name != ''"> and sf.name = #{name} </if>
<if test="status != null and status != ''"> and sf.status = #{status} </if>
<if test="classId != null and classId != ''"> and sf.class_id = #{classId} </if>
<if test="triggerModeId != null and triggerModeId != ''"> and sf.trigger_mode_id = #{triggerModeId} </if>
<if test="nifiGroupId != null and nifiGroupId != ''"> and sf.nifi_group_id = #{nifiGroupId} </if>
<if test="description != null and description != ''"> and sf.description = #{description} </if>
and sf.sts='Y'
</trim>
<if test=" sort == null or sort == ''.toString() "> order by sf.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.sys.flow.entity.SysFlowEntity">
select count(1) from sys_flow
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="name != null and name != ''"> and name = #{name} </if>
<if test="status != null and status != ''"> and status = #{status} </if>
<if test="classId != null and classId != ''"> and class_id = #{classId} </if>
<if test="triggerModeId != null and triggerModeId != ''"> and trigger_mode_id = #{triggerModeId} </if>
<if test="nifiGroupId != null and nifiGroupId != ''"> and nifi_group_id = #{nifiGroupId} </if>
<if test="description != null and description != ''"> and description = #{description} </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-SysFlowEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowEntity">
select
<include refid="SysFlowEntity_Base_Column_List" />
from sys_flow sf
left join sys_flow_class sfc on sfc.id = sf.class_id
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and sf.id like concat('%',#{id},'%') </if>
<if test="create_user_id != null and create_user_id != ''"> and sf.create_user_id like concat('%',#{create_user_id},'%') </if>
<if test="create_time != null"> and sf.create_time like concat('%',#{create_time},'%') </if>
<if test="modify_user_id != null and modify_user_id != ''"> and sf.modify_user_id like concat('%',#{modify_user_id},'%') </if>
<if test="modify_time != null"> and sf.modify_time like concat('%',#{modify_time},'%') </if>
<if test="sts != null and sts != ''"> and sf.sts like concat('%',#{sts},'%') </if>
<if test="name != null and name != ''"> and sf.name like concat('%',#{name},'%') </if>
<if test="status != null and status != ''"> and sf.status like concat('%',#{status},'%') </if>
<if test="classId != null and classId != ''"> and sf.class_id like concat('%',#{classId},'%') </if>
<if test="triggerModeId != null and triggerModeId != ''"> and sf.trigger_mode_id like concat('%',#{triggerModeId},'%') </if>
<if test="nifiGroupId != null and nifiGroupId != ''"> and sf.nifi_group_id like concat('%',#{nifiGroupId},'%') </if>
<if test="description != null and description != ''"> and sf.description like concat('%',#{description},'%') </if>
and sf.sts='Y'
</trim>
<if test=" sort == null or sort == ''.toString() "> order by sf.sorts asc</if>
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
</select>
<!-- 查询列表 字段采用or格式 -->
<select id="SysFlowentity_list_or" resultMap="get-SysFlowEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowEntity">
select
<include refid="SysFlowEntity_Base_Column_List" />
from sys_flow sf
left join sys_flow_class sfc on sfc.id = sf.class_id
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> or sf.id = #{id} </if>
<if test="create_user_id != null and create_user_id != ''"> or sf.create_user_id = #{create_user_id} </if>
<if test="create_time != null"> or sf.create_time = #{create_time} </if>
<if test="modify_user_id != null and modify_user_id != ''"> or sf.modify_user_id = #{modify_user_id} </if>
<if test="modify_time != null"> or sf.modify_time = #{modify_time} </if>
<if test="sts != null and sts != ''"> or sf.sts = #{sts} </if>
<if test="name != null and name != ''"> or sf.name = #{name} </if>
<if test="status != null and status != ''"> or sf.status = #{status} </if>
<if test="classId != null and classId != ''"> or sf.class_id = #{classId} </if>
<if test="triggerModeId != null and triggerModeId != ''"> or sf.trigger_mode_id = #{triggerModeId} </if>
<if test="nifiGroupId != null and nifiGroupId != ''"> or sf.nifi_group_id = #{nifiGroupId} </if>
<if test="description != null and description != ''"> or sf.description = #{description} </if>
and sf.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.sys.flow.entity.SysFlowEntity" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">id ,</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="name != null and name != ''">name ,</if>
<if test="status != null and status != ''">status ,</if>
<if test="classId != null and classId != ''">class_id ,</if>
<if test="triggerModeId != null and triggerModeId != ''">trigger_mode_id ,</if>
<if test="nifiGroupId != null and nifiGroupId != ''">nifi_group_id ,</if>
<if test="description != null and description != ''">description ,</if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">#{id} ,</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="name != null and name != ''">#{name} ,</if>
<if test="status != null and status != ''">#{status} ,</if>
<if test="classId != null and classId != ''">#{classId} ,</if>
<if test="triggerModeId != null and triggerModeId != ''">#{triggerModeId} ,</if>
<if test="nifiGroupId != null and nifiGroupId != ''">#{nifiGroupId} ,</if>
<if test="description != null and description != ''">#{description} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow a WHERE a.sts = 'Y' ),1),
</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow(create_user_id, create_time, modify_user_id, modify_time, sts, name,status, class_id, trigger_mode_id, nifi_group_id, description, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.name},${entity.status},#{entity.classId},#{entity.triggerModeId},#{entity.nifiGroupId},#{entity.description}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow(create_user_id, create_time, modify_user_id, modify_time, sts, name, status,class_id, trigger_mode_id, nifi_group_id, description)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.name},#{entity.status},#{entity.classId},#{entity.triggerModeId},#{entity.nifiGroupId},#{entity.description})
</foreach>
on duplicate key update
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),
name = values(name),
class_id = values(class_id),
trigger_mode_id = values(trigger_mode_id),
nifi_group_id = values(nifi_group_id),
description = values(description)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowEntity" >
update sys_flow set
<trim suffix="" suffixOverrides=",">
<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="name != null and name != ''"> name = #{name},</if>
<if test="status != null and status != ''"> status = #{status},</if>
<if test="classId != null and classId != ''"> class_id = #{classId},</if>
<if test="triggerModeId != null and triggerModeId != ''"> trigger_mode_id = #{triggerModeId},</if>
<if test="nifiGroupId != null and nifiGroupId != ''"> nifi_group_id = #{nifiGroupId},</if>
<if test="description != null and description != ''"> description = #{description},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowEntity" >
update sys_flow 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.sys.flow.entity.SysFlowEntity" >
update sys_flow 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="sts != null and sts != ''"> and sts = #{sts} </if>
<if test="name != null and name != ''"> and name = #{name} </if>
<if test="classId != null and classId != ''"> and class_id = #{classId} </if>
<if test="triggerModeId != null and triggerModeId != ''"> and trigger_mode_id = #{triggerModeId} </if>
<if test="nifiGroupId != null and nifiGroupId != ''"> and nifi_group_id = #{nifiGroupId} </if>
<if test="description != null and description != ''"> and description = #{description} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from sys_flow where id = #{id}
</delete>
</mapper>

View File

@ -1,66 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* nifi常量(SysFlowNifiConstant)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public class SysFlowNifiConstantEntity extends BaseEntity {
/** 键 */
private String nifiKey;
/** 值 */
private String nifiValue;
/** 显示值 */
private String showValue;
/** 描述 */
private String description;
/** 分类 */
private String type;
public String getNifiKey() {
return nifiKey;
}
public void setNifiKey(String nifiKey) {
this.nifiKey = nifiKey;
}
public String getNifiValue() {
return nifiValue;
}
public void setNifiValue(String nifiValue) {
this.nifiValue = nifiValue;
}
public String getShowValue() {
return showValue;
}
public void setShowValue(String showValue) {
this.showValue = showValue;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}

View File

@ -1,226 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowNifiConstantDaoImpl">
<resultMap id="get-SysFlowNifiConstantEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="nifiKey" column="nifi_key" jdbcType="VARCHAR"/>
<result property="nifiValue" column="nifi_value" jdbcType="VARCHAR"/>
<result property="showValue" column="show_value" jdbcType="VARCHAR"/>
<result property="description" column="description" jdbcType="VARCHAR"/>
<result property="type" column="type" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "SysFlowNifiConstantEntity_Base_Column_List">
id
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,nifi_key
,nifi_value
,show_value
,description
,type
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowNifiConstantEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity">
select
<include refid="SysFlowNifiConstantEntity_Base_Column_List" />
from sys_flow_nifi_constant
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="nifiKey != null and nifiKey != ''"> and nifi_key = #{nifiKey} </if>
<if test="nifiValue != null and value != ''"> and nifi_value = #{nifiValue} </if>
<if test="showValue != null and showValue != ''"> and show_value = #{showValue} </if>
<if test="description != null and description != ''"> and description = #{description} </if>
<if test="type != null and type != ''"> and type = #{type} </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.sys.flow.entity.SysFlowNifiConstantEntity">
select count(1) from sys_flow_nifi_constant
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="nifiKey != null and nifiKey != ''"> and nifi_key = #{nifiKey} </if>
<if test="nifiValue != null and nifiValue != ''"> and nifi_value = #{nifiValue} </if>
<if test="showValue != null and showValue != ''"> and show_value = #{showValue} </if>
<if test="description != null and description != ''"> and description = #{description} </if>
<if test="type != null and type != ''"> and type = #{type} </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-SysFlowNifiConstantEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity">
select
<include refid="SysFlowNifiConstantEntity_Base_Column_List" />
from sys_flow_nifi_constant
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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="nifiKey != null and nifiKey != ''"> and nifi_key like concat('%',#{nifiKey},'%') </if>
<if test="nifiValue != null and nifiValue != ''"> and nifi_value like concat('%',#{nifiValue},'%') </if>
<if test="showValue != null and showValue != ''"> and show_value like concat('%',#{showValue},'%') </if>
<if test="description != null and description != ''"> and description like concat('%',#{description},'%') </if>
<if test="type != null and type != ''"> and type like concat('%',#{type},'%') </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="SysFlowNifiConstantentity_list_or" resultMap="get-SysFlowNifiConstantEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity">
select
<include refid="SysFlowNifiConstantEntity_Base_Column_List" />
from sys_flow_nifi_constant
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> or id = #{id} </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="nifiKey != null and nifiKey != ''"> or nifi_key = #{nifiKey} </if>
<if test="nifiValue != null and nifiValue != ''"> or nifi_value = #{nifiValue} </if>
<if test="showValue != null and showValue != ''"> or show_value = #{showValue} </if>
<if test="description != null and description != ''"> or description = #{description} </if>
<if test="type != null and type != ''"> or type = #{type} </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.sys.flow.entity.SysFlowNifiConstantEntity" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_nifi_constant(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> id , </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="nifiKey != null and nifiKey != ''"> nifi_key , </if>
<if test="nifiValue != null and nifiValue != ''"> nifi_value , </if>
<if test="showValue != null and showValue != ''"> show_value , </if>
<if test="description != null and description != ''"> description , </if>
<if test="type != null and type != ''"> type , </if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> #{id} ,</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="nifiKey != null and nifiKey != ''"> #{nifiKey} ,</if>
<if test="nifiValue != null and nifiValue != ''"> #{nifiValue} ,</if>
<if test="showValue != null and showValue != ''"> #{showValue} ,</if>
<if test="description != null and description != ''"> #{description} ,</if>
<if test="type != null and type != ''"> #{type} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow_nifi_constant a WHERE a.sts = 'Y' ),1),</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_nifi_constant(create_user_id, create_time, modify_user_id, modify_time, sts, nifi_key, nifi_value, show_value, description, type, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.nifiKey},#{entity.nifiValue},#{entity.showValue},#{entity.description},#{entity.type}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_nifi_constant(create_user_id, create_time, modify_user_id, modify_time, sts, nifi_key, nifi_value, show_value, description, type)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.nifiKey},#{entity.nifiValue},#{entity.showValue},#{entity.description},#{entity.type})
</foreach>
on duplicate key update
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),
nifi_key = values(nifiKey),
nifi_value = values(nifiValue),
show_value = values(show_value),
description = values(description),
type = values(type)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity" >
update sys_flow_nifi_constant set
<trim suffix="" suffixOverrides=",">
<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="nifiKey != null and nifiKey != ''"> nifi_key = #{nifiKey},</if>
<if test="nifiValue != null and nifiValue != ''"> nifi_value = #{nifiValue},</if>
<if test="showValue != null and showValue != ''"> show_value = #{showValue},</if>
<if test="description != null and description != ''"> description = #{description},</if>
<if test="type != null and type != ''"> type = #{type},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity" >
update sys_flow_nifi_constant 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.sys.flow.entity.SysFlowNifiConstantEntity" >
update sys_flow_nifi_constant 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="sts != null and sts != ''"> and sts = #{sts} </if>
<if test="nifiKey != null and nifiKey != ''"> andnifi_ key = #{nifiKey} </if>
<if test="nifiValue != null and nifiValue != ''"> and nifi_value = #{nifiValue} </if>
<if test="showValue != null and showValue != ''"> and show_value = #{showValue} </if>
<if test="description != null and description != ''"> and description = #{description} </if>
<if test="type != null and type != ''"> and type = #{type} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from sys_flow_nifi_constant where id = #{id}
</delete>
</mapper>

View File

@ -1,126 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 流程步骤账户表(SysFlowStepAccount)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public class SysFlowStepAccountEntity extends BaseEntity {
/** 账户名称 */
private String name;
/** ip地址 */
private String ipAddress;
/** 端口 */
private String port;
/** 数据库名称 */
private String dbName;
/** 用户名 */
private String userName;
/** 密码 */
private String password;
/** 数据库类型 */
private String dbType;
/** 应用key */
private String appKey;
/** 应用密钥 */
private String appSecret;
/** 企业id */
private String corpid;
/** 应用id */
private String agentid;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getIpAddress() {
return ipAddress;
}
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
public String getPort() {
return port;
}
public void setPort(String port) {
this.port = port;
}
public String getDbName() {
return dbName;
}
public void setDbName(String dbName) {
this.dbName = dbName;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getDbType() {
return dbType;
}
public void setDbType(String dbType) {
this.dbType = dbType;
}
public String getAppKey() {
return appKey;
}
public void setAppKey(String appKey) {
this.appKey = appKey;
}
public String getAppSecret() {
return appSecret;
}
public void setAppSecret(String appSecret) {
this.appSecret = appSecret;
}
public String getCorpid() {
return corpid;
}
public void setCorpid(String corpid) {
this.corpid = corpid;
}
public String getAgentid() {
return agentid;
}
public void setAgentid(String agentid) {
this.agentid = agentid;
}
}

View File

@ -1,292 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowStepAccountDaoImpl">
<resultMap id="get-SysFlowStepAccountEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="name" column="name" jdbcType="VARCHAR"/>
<result property="ipAddress" column="ip_address" jdbcType="VARCHAR"/>
<result property="port" column="port" jdbcType="VARCHAR"/>
<result property="dbName" column="db_name" jdbcType="VARCHAR"/>
<result property="userName" column="user_name" jdbcType="VARCHAR"/>
<result property="password" column="password" jdbcType="VARCHAR"/>
<result property="dbType" column="db_type" jdbcType="VARCHAR"/>
<result property="appKey" column="app_key" jdbcType="VARCHAR"/>
<result property="appSecret" column="app_secret" jdbcType="VARCHAR"/>
<result property="corpid" column="corpId" jdbcType="VARCHAR"/>
<result property="agentid" column="agentId" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "SysFlowStepAccountEntity_Base_Column_List">
id
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,name
,ip_address
,port
,db_name
,user_name
,password
,db_type
,app_key
,app_secret
,corpId
,agentId
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowStepAccountEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity">
select
<include refid="SysFlowStepAccountEntity_Base_Column_List" />
from sys_flow_step_account
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="name != null and name != ''"> and name = #{name} </if>
<if test="ipAddress != null and ipAddress != ''"> and ip_address = #{ipAddress} </if>
<if test="port != null and port != ''"> and port = #{port} </if>
<if test="dbName != null and dbName != ''"> and db_name = #{dbName} </if>
<if test="userName != null and userName != ''"> and user_name = #{userName} </if>
<if test="password != null and password != ''"> and password = #{password} </if>
<if test="dbType != null and dbType != ''"> and db_type = #{dbType} </if>
<if test="appKey != null and appKey != ''"> and app_key = #{appKey} </if>
<if test="appSecret != null and appSecret != ''"> and app_secret = #{appSecret} </if>
<if test="corpid != null and corpid != ''"> and corpId = #{corpid} </if>
<if test="agentid != null and agentid != ''"> and agentId = #{agentid} </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.sys.flow.entity.SysFlowStepAccountEntity">
select count(1) from sys_flow_step_account
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="name != null and name != ''"> and name = #{name} </if>
<if test="ipAddress != null and ipAddress != ''"> and ip_address = #{ipAddress} </if>
<if test="port != null and port != ''"> and port = #{port} </if>
<if test="dbName != null and dbName != ''"> and db_name = #{dbName} </if>
<if test="userName != null and userName != ''"> and user_name = #{userName} </if>
<if test="password != null and password != ''"> and password = #{password} </if>
<if test="dbType != null and dbType != ''"> and db_type = #{dbType} </if>
<if test="appKey != null and appKey != ''"> and app_key = #{appKey} </if>
<if test="appSecret != null and appSecret != ''"> and app_secret = #{appSecret} </if>
<if test="corpid != null and corpid != ''"> and corpId = #{corpid} </if>
<if test="agentid != null and agentid != ''"> and agentId = #{agentid} </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-SysFlowStepAccountEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity">
select
<include refid="SysFlowStepAccountEntity_Base_Column_List" />
from sys_flow_step_account
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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="name != null and name != ''"> and name like concat('%',#{name},'%') </if>
<if test="ipAddress != null and ipAddress != ''"> and ip_address like concat('%',#{ipAddress},'%') </if>
<if test="port != null and port != ''"> and port like concat('%',#{port},'%') </if>
<if test="dbName != null and dbName != ''"> and db_name like concat('%',#{dbName},'%') </if>
<if test="userName != null and userName != ''"> and user_name like concat('%',#{userName},'%') </if>
<if test="password != null and password != ''"> and password like concat('%',#{password},'%') </if>
<if test="dbType != null and dbType != ''"> and db_type like concat('%',#{dbType},'%') </if>
<if test="appKey != null and appKey != ''"> and app_key like concat('%',#{appKey},'%') </if>
<if test="appSecret != null and appSecret != ''"> and app_secret like concat('%',#{appSecret},'%') </if>
<if test="corpid != null and corpid != ''"> and corpId like concat('%',#{corpid},'%') </if>
<if test="agentid != null and agentid != ''"> and agentId like concat('%',#{agentid},'%') </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="SysFlowStepAccountentity_list_or" resultMap="get-SysFlowStepAccountEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity">
select
<include refid="SysFlowStepAccountEntity_Base_Column_List" />
from sys_flow_step_account
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> or id = #{id} </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="name != null and name != ''"> or name = #{name} </if>
<if test="ipAddress != null and ipAddress != ''"> or ip_address = #{ipAddress} </if>
<if test="port != null and port != ''"> or port = #{port} </if>
<if test="dbName != null and dbName != ''"> or db_name = #{dbName} </if>
<if test="userName != null and userName != ''"> or user_name = #{userName} </if>
<if test="password != null and password != ''"> or password = #{password} </if>
<if test="dbType != null and dbType != ''"> or db_type = #{dbType} </if>
<if test="appKey != null and appKey != ''"> or app_key = #{appKey} </if>
<if test="appSecret != null and appSecret != ''"> or app_secret = #{appSecret} </if>
<if test="corpid != null and corpid != ''"> or corpId = #{corpid} </if>
<if test="agentid != null and agentid != ''"> or agentId = #{agentid} </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.sys.flow.entity.SysFlowStepAccountEntity" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_account(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> id , </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="name != null and name != ''"> name , </if>
<if test="ipAddress != null and ipAddress != ''"> ip_address , </if>
<if test="port != null and port != ''"> port , </if>
<if test="dbName != null and dbName != ''"> db_name , </if>
<if test="userName != null and userName != ''"> user_name , </if>
<if test="password != null and password != ''"> password , </if>
<if test="dbType != null and dbType != ''"> db_type , </if>
<if test="appKey != null and appKey != ''"> app_key , </if>
<if test="appSecret != null and appSecret != ''"> app_secret , </if>
<if test="corpid != null and corpid != ''"> corpId , </if>
<if test="agentid != null and agentid != ''"> agentId , </if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> #{id} ,</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="name != null and name != ''"> #{name} ,</if>
<if test="ipAddress != null and ipAddress != ''"> #{ipAddress} ,</if>
<if test="port != null and port != ''"> #{port} ,</if>
<if test="dbName != null and dbName != ''"> #{dbName} ,</if>
<if test="userName != null and userName != ''"> #{userName} ,</if>
<if test="password != null and password != ''"> #{password} ,</if>
<if test="dbType != null and dbType != ''"> #{dbType} ,</if>
<if test="appKey != null and appKey != ''"> #{appKey} ,</if>
<if test="appSecret != null and appSecret != ''"> #{appSecret} ,</if>
<if test="corpid != null and corpid != ''"> #{corpid} ,</if>
<if test="agentid != null and agentid != ''"> #{agentid} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow_step_account a WHERE a.sts = 'Y' ),1),</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_account(create_user_id, create_time, modify_user_id, modify_time, sts, name, ip_address, port, db_name, user_name, password, db_type, app_key, app_secret, corpId, agentId, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.name},#{entity.ipAddress},#{entity.port},#{entity.dbName},#{entity.userName},#{entity.password},#{entity.dbType},#{entity.appKey},#{entity.appSecret},#{entity.corpid},#{entity.agentid}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_account(create_user_id, create_time, modify_user_id, modify_time, sts, name, ip_address, port, db_name, user_name, password, db_type, app_key, app_secret, corpId, agentId)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.name},#{entity.ipAddress},#{entity.port},#{entity.dbName},#{entity.userName},#{entity.password},#{entity.dbType},#{entity.appKey},#{entity.appSecret},#{entity.corpid},#{entity.agentid})
</foreach>
on duplicate key update
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),
name = values(name),
ip_address = values(ip_address),
port = values(port),
db_name = values(db_name),
user_name = values(user_name),
password = values(password),
db_type = values(db_type),
app_key = values(app_key),
app_secret = values(app_secret),
corpId = values(corpId),
agentId = values(agentId)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity" >
update sys_flow_step_account set
<trim suffix="" suffixOverrides=",">
<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="name != null and name != ''"> name = #{name},</if>
<if test="ipAddress != null and ipAddress != ''"> ip_address = #{ipAddress},</if>
<if test="port != null and port != ''"> port = #{port},</if>
<if test="dbName != null and dbName != ''"> db_name = #{dbName},</if>
<if test="userName != null and userName != ''"> user_name = #{userName},</if>
<if test="password != null and password != ''"> password = #{password},</if>
<if test="dbType != null and dbType != ''"> db_type = #{dbType},</if>
<if test="appKey != null and appKey != ''"> app_key = #{appKey},</if>
<if test="appSecret != null and appSecret != ''"> app_secret = #{appSecret},</if>
<if test="corpid != null and corpid != ''"> corpId = #{corpid},</if>
<if test="agentid != null and agentid != ''"> agentId = #{agentid},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity" >
update sys_flow_step_account 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.sys.flow.entity.SysFlowStepAccountEntity" >
update sys_flow_step_account 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="sts != null and sts != ''"> and sts = #{sts} </if>
<if test="name != null and name != ''"> and name = #{name} </if>
<if test="ipAddress != null and ipAddress != ''"> and ip_address = #{ipAddress} </if>
<if test="port != null and port != ''"> and port = #{port} </if>
<if test="dbName != null and dbName != ''"> and db_name = #{dbName} </if>
<if test="userName != null and userName != ''"> and user_name = #{userName} </if>
<if test="password != null and password != ''"> and password = #{password} </if>
<if test="dbType != null and dbType != ''"> and db_type = #{dbType} </if>
<if test="appKey != null and appKey != ''"> and app_key = #{appKey} </if>
<if test="appSecret != null and appSecret != ''"> and app_secret = #{appSecret} </if>
<if test="corpid != null and corpid != ''"> and corpId = #{corpid} </if>
<if test="agentid != null and agentid != ''"> and agentId = #{agentid} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from sys_flow_step_account where id = #{id}
</delete>
</mapper>

View File

@ -1,126 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 映射信息表体(SysFlowStepConfigB)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public class SysFlowStepConfigBEntity extends BaseEntity {
/** 主表id */
private String mainId;
/** 流程id */
private String flowId;
/** 步骤id */
private String stepId;
/** 是否主键 */
private String primaryKeyFlag;
/** 字段名 */
private String fieldName;
/** 字段备注 */
private String fieldDescription;
/** 字段类型 */
private String fieldType;
/** 查询条件 */
private String whereCondition;
/** 源字段名称;适用于插入场景 */
private String sourceFieldName;
/** 源字段类型;适用于插入场景 */
private String sourceFieldType;
/** 源字段描述;适用于插入场景 */
private String sourceFieldDescription;
public String getMainId() {
return mainId;
}
public void setMainId(String mainId) {
this.mainId = mainId;
}
public String getFlowId() {
return flowId;
}
public void setFlowId(String flowId) {
this.flowId = flowId;
}
public String getStepId() {
return stepId;
}
public void setStepId(String stepId) {
this.stepId = stepId;
}
public String getPrimaryKeyFlag() {
return primaryKeyFlag;
}
public void setPrimaryKeyFlag(String primaryKeyFlag) {
this.primaryKeyFlag = primaryKeyFlag;
}
public String getFieldName() {
return fieldName;
}
public void setFieldName(String fieldName) {
this.fieldName = fieldName;
}
public String getFieldDescription() {
return fieldDescription;
}
public void setFieldDescription(String fieldDescription) {
this.fieldDescription = fieldDescription;
}
public String getFieldType() {
return fieldType;
}
public void setFieldType(String fieldType) {
this.fieldType = fieldType;
}
public String getWhereCondition() {
return whereCondition;
}
public void setWhereCondition(String whereCondition) {
this.whereCondition = whereCondition;
}
public String getSourceFieldName() {
return sourceFieldName;
}
public void setSourceFieldName(String sourceFieldName) {
this.sourceFieldName = sourceFieldName;
}
public String getSourceFieldType() {
return sourceFieldType;
}
public void setSourceFieldType(String sourceFieldType) {
this.sourceFieldType = sourceFieldType;
}
public String getSourceFieldDescription() {
return sourceFieldDescription;
}
public void setSourceFieldDescription(String sourceFieldDescription) {
this.sourceFieldDescription = sourceFieldDescription;
}
}

View File

@ -1,292 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowStepConfigBDaoImpl">
<resultMap id="get-SysFlowStepConfigBEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="mainId" column="main_id" jdbcType="VARCHAR"/>
<result property="flowId" column="flow_id" jdbcType="VARCHAR"/>
<result property="stepId" column="step_id" jdbcType="VARCHAR"/>
<result property="primaryKeyFlag" column="primary_key_flag" jdbcType="VARCHAR"/>
<result property="fieldName" column="field_name" jdbcType="VARCHAR"/>
<result property="fieldDescription" column="field_description" jdbcType="VARCHAR"/>
<result property="fieldType" column="field_type" jdbcType="VARCHAR"/>
<result property="whereCondition" column="where_condition" jdbcType="VARCHAR"/>
<result property="sourceFieldName" column="source_field_name" jdbcType="VARCHAR"/>
<result property="sourceFieldType" column="source_field_type" jdbcType="VARCHAR"/>
<result property="sourceFieldDescription" column="source_field_description" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "SysFlowStepConfigBEntity_Base_Column_List">
id
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,main_id
,flow_id
,step_id
,primary_key_flag
,field_name
,field_description
,field_type
,where_condition
,source_field_name
,source_field_type
,source_field_description
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowStepConfigBEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity">
select
<include refid="SysFlowStepConfigBEntity_Base_Column_List" />
from sys_flow_step_config_b
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="mainId != null and mainId != ''"> and main_id = #{mainId} </if>
<if test="flowId != null and flowId != ''"> and flow_id = #{flowId} </if>
<if test="stepId != null and stepId != ''"> and step_id = #{stepId} </if>
<if test="primaryKeyFlag != null and primaryKeyFlag != ''"> and primary_key_flag = #{primaryKeyFlag} </if>
<if test="fieldName != null and fieldName != ''"> and field_name = #{fieldName} </if>
<if test="fieldDescription != null and fieldDescription != ''"> and field_description = #{fieldDescription} </if>
<if test="fieldType != null and fieldType != ''"> and field_type = #{fieldType} </if>
<if test="whereCondition != null and whereCondition != ''"> and where_condition = #{whereCondition} </if>
<if test="sourceFieldName != null and sourceFieldName != ''"> and source_field_name = #{sourceFieldName} </if>
<if test="sourceFieldType != null and sourceFieldType != ''"> and source_field_type = #{sourceFieldType} </if>
<if test="sourceFieldDescription != null and sourceFieldDescription != ''"> and source_field_description = #{sourceFieldDescription} </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.sys.flow.entity.SysFlowStepConfigBEntity">
select count(1) from sys_flow_step_config_b
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="mainId != null and mainId != ''"> and main_id = #{mainId} </if>
<if test="flowId != null and flowId != ''"> and flow_id = #{flowId} </if>
<if test="stepId != null and stepId != ''"> and step_id = #{stepId} </if>
<if test="primaryKeyFlag != null and primaryKeyFlag != ''"> and primary_key_flag = #{primaryKeyFlag} </if>
<if test="fieldName != null and fieldName != ''"> and field_name = #{fieldName} </if>
<if test="fieldDescription != null and fieldDescription != ''"> and field_description = #{fieldDescription} </if>
<if test="fieldType != null and fieldType != ''"> and field_type = #{fieldType} </if>
<if test="whereCondition != null and whereCondition != ''"> and where_condition = #{whereCondition} </if>
<if test="sourceFieldName != null and sourceFieldName != ''"> and source_field_name = #{sourceFieldName} </if>
<if test="sourceFieldType != null and sourceFieldType != ''"> and source_field_type = #{sourceFieldType} </if>
<if test="sourceFieldDescription != null and sourceFieldDescription != ''"> and source_field_description = #{sourceFieldDescription} </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-SysFlowStepConfigBEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity">
select
<include refid="SysFlowStepConfigBEntity_Base_Column_List" />
from sys_flow_step_config_b
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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="mainId != null and mainId != ''"> and main_id like concat('%',#{mainId},'%') </if>
<if test="flowId != null and flowId != ''"> and flow_id like concat('%',#{flowId},'%') </if>
<if test="stepId != null and stepId != ''"> and step_id like concat('%',#{stepId},'%') </if>
<if test="primaryKeyFlag != null and primaryKeyFlag != ''"> and primary_key_flag like concat('%',#{primaryKeyFlag},'%') </if>
<if test="fieldName != null and fieldName != ''"> and field_name like concat('%',#{fieldName},'%') </if>
<if test="fieldDescription != null and fieldDescription != ''"> and field_description like concat('%',#{fieldDescription},'%') </if>
<if test="fieldType != null and fieldType != ''"> and field_type like concat('%',#{fieldType},'%') </if>
<if test="whereCondition != null and whereCondition != ''"> and where_condition like concat('%',#{whereCondition},'%') </if>
<if test="sourceFieldName != null and sourceFieldName != ''"> and source_field_name like concat('%',#{sourceFieldName},'%') </if>
<if test="sourceFieldType != null and sourceFieldType != ''"> and source_field_type like concat('%',#{sourceFieldType},'%') </if>
<if test="sourceFieldDescription != null and sourceFieldDescription != ''"> and source_field_description like concat('%',#{sourceFieldDescription},'%') </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="SysFlowStepConfigBentity_list_or" resultMap="get-SysFlowStepConfigBEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity">
select
<include refid="SysFlowStepConfigBEntity_Base_Column_List" />
from sys_flow_step_config_b
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> or id = #{id} </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="mainId != null and mainId != ''"> or main_id = #{mainId} </if>
<if test="flowId != null and flowId != ''"> or flow_id = #{flowId} </if>
<if test="stepId != null and stepId != ''"> or step_id = #{stepId} </if>
<if test="primaryKeyFlag != null and primaryKeyFlag != ''"> or primary_key_flag = #{primaryKeyFlag} </if>
<if test="fieldName != null and fieldName != ''"> or field_name = #{fieldName} </if>
<if test="fieldDescription != null and fieldDescription != ''"> or field_description = #{fieldDescription} </if>
<if test="fieldType != null and fieldType != ''"> or field_type = #{fieldType} </if>
<if test="whereCondition != null and whereCondition != ''"> or where_condition = #{whereCondition} </if>
<if test="sourceFieldName != null and sourceFieldName != ''"> or source_field_name = #{sourceFieldName} </if>
<if test="sourceFieldType != null and sourceFieldType != ''"> or source_field_type = #{sourceFieldType} </if>
<if test="sourceFieldDescription != null and sourceFieldDescription != ''"> or source_field_description = #{sourceFieldDescription} </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.sys.flow.entity.SysFlowStepConfigBEntity" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_config_b(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> id , </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="mainId != null and mainId != ''"> main_id , </if>
<if test="flowId != null and flowId != ''"> flow_id , </if>
<if test="stepId != null and stepId != ''"> step_id , </if>
<if test="primaryKeyFlag != null and primaryKeyFlag != ''"> primary_key_flag , </if>
<if test="fieldName != null and fieldName != ''"> field_name , </if>
<if test="fieldDescription != null and fieldDescription != ''"> field_description , </if>
<if test="fieldType != null and fieldType != ''"> field_type , </if>
<if test="whereCondition != null and whereCondition != ''"> where_condition , </if>
<if test="sourceFieldName != null and sourceFieldName != ''"> source_field_name , </if>
<if test="sourceFieldType != null and sourceFieldType != ''"> source_field_type , </if>
<if test="sourceFieldDescription != null and sourceFieldDescription != ''"> source_field_description , </if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> #{id} ,</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="mainId != null and mainId != ''"> #{mainId} ,</if>
<if test="flowId != null and flowId != ''"> #{flowId} ,</if>
<if test="stepId != null and stepId != ''"> #{stepId} ,</if>
<if test="primaryKeyFlag != null and primaryKeyFlag != ''"> #{primaryKeyFlag} ,</if>
<if test="fieldName != null and fieldName != ''"> #{fieldName} ,</if>
<if test="fieldDescription != null and fieldDescription != ''"> #{fieldDescription} ,</if>
<if test="fieldType != null and fieldType != ''"> #{fieldType} ,</if>
<if test="whereCondition != null and whereCondition != ''"> #{whereCondition} ,</if>
<if test="sourceFieldName != null and sourceFieldName != ''"> #{sourceFieldName} ,</if>
<if test="sourceFieldType != null and sourceFieldType != ''"> #{sourceFieldType} ,</if>
<if test="sourceFieldDescription != null and sourceFieldDescription != ''"> #{sourceFieldDescription} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow_step_config_b a WHERE a.sts = 'Y' ),1),</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_config_b(create_user_id, create_time, modify_user_id, modify_time, sts, main_id, flow_id, step_id, primary_key_flag, field_name, field_description, field_type, where_condition, source_field_name, source_field_type, source_field_description, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.mainId},#{entity.flowId},#{entity.stepId},#{entity.primaryKeyFlag},#{entity.fieldName},#{entity.fieldDescription},#{entity.fieldType},#{entity.whereCondition},#{entity.sourceFieldName},#{entity.sourceFieldType},#{entity.sourceFieldDescription}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_config_b(create_user_id, create_time, modify_user_id, modify_time, sts, main_id, flow_id, step_id, primary_key_flag, field_name, field_description, field_type, where_condition, source_field_name, source_field_type, source_field_description)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.mainId},#{entity.flowId},#{entity.stepId},#{entity.primaryKeyFlag},#{entity.fieldName},#{entity.fieldDescription},#{entity.fieldType},#{entity.whereCondition},#{entity.sourceFieldName},#{entity.sourceFieldType},#{entity.sourceFieldDescription})
</foreach>
on duplicate key update
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),
main_id = values(main_id),
flow_id = values(flow_id),
step_id = values(step_id),
primary_key_flag = values(primary_key_flag),
field_name = values(field_name),
field_description = values(field_description),
field_type = values(field_type),
where_condition = values(where_condition),
source_field_name = values(source_field_name),
source_field_type = values(source_field_type),
source_field_description = values(source_field_description)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity" >
update sys_flow_step_config_b set
<trim suffix="" suffixOverrides=",">
<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="mainId != null and mainId != ''"> main_id = #{mainId},</if>
<if test="flowId != null and flowId != ''"> flow_id = #{flowId},</if>
<if test="stepId != null and stepId != ''"> step_id = #{stepId},</if>
<if test="primaryKeyFlag != null and primaryKeyFlag != ''"> primary_key_flag = #{primaryKeyFlag},</if>
<if test="fieldName != null and fieldName != ''"> field_name = #{fieldName},</if>
<if test="fieldDescription != null and fieldDescription != ''"> field_description = #{fieldDescription},</if>
<if test="fieldType != null and fieldType != ''"> field_type = #{fieldType},</if>
<if test="whereCondition != null and whereCondition != ''"> where_condition = #{whereCondition},</if>
<if test="sourceFieldName != null and sourceFieldName != ''"> source_field_name = #{sourceFieldName},</if>
<if test="sourceFieldType != null and sourceFieldType != ''"> source_field_type = #{sourceFieldType},</if>
<if test="sourceFieldDescription != null and sourceFieldDescription != ''"> source_field_description = #{sourceFieldDescription},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity" >
update sys_flow_step_config_b 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.sys.flow.entity.SysFlowStepConfigBEntity" >
update sys_flow_step_config_b 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="sts != null and sts != ''"> and sts = #{sts} </if>
<if test="mainId != null and mainId != ''"> and main_id = #{mainId} </if>
<if test="flowId != null and flowId != ''"> and flow_id = #{flowId} </if>
<if test="stepId != null and stepId != ''"> and step_id = #{stepId} </if>
<if test="primaryKeyFlag != null and primaryKeyFlag != ''"> and primary_key_flag = #{primaryKeyFlag} </if>
<if test="fieldName != null and fieldName != ''"> and field_name = #{fieldName} </if>
<if test="fieldDescription != null and fieldDescription != ''"> and field_description = #{fieldDescription} </if>
<if test="fieldType != null and fieldType != ''"> and field_type = #{fieldType} </if>
<if test="whereCondition != null and whereCondition != ''"> and where_condition = #{whereCondition} </if>
<if test="sourceFieldName != null and sourceFieldName != ''"> and source_field_name = #{sourceFieldName} </if>
<if test="sourceFieldType != null and sourceFieldType != ''"> and source_field_type = #{sourceFieldType} </if>
<if test="sourceFieldDescription != null and sourceFieldDescription != ''"> and source_field_description = #{sourceFieldDescription} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from sys_flow_step_config_b where id = #{id}
</delete>
</mapper>

View File

@ -1,136 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 映射信息主表(SysFlowStepConfig)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public class SysFlowStepConfigEntity extends BaseEntity {
/** 流程id */
private String flowId;
/** 步骤id */
private String stepId;
/** 流程操作步骤配置表id */
private String setpConfigId;
/** 操作类型 */
private String actionName;
/** 数据库类型;数据库类型+版本 */
private String dbType;
/** 表名称 */
private String tableName;
/** 页码 */
private String rowNum;
/** 每页条数 */
private String pageLimit;
/** 增量数据字段;例如ts */
private String maxValueField;
/** 是否建表 */
private String createTableFlag;
/** 写入模式;覆盖写入/增量写入 */
private String writeType;
/** 动态sql语句 */
private String sqlStatement;
public String getFlowId() {
return flowId;
}
public void setFlowId(String flowId) {
this.flowId = flowId;
}
public String getStepId() {
return stepId;
}
public void setStepId(String stepId) {
this.stepId = stepId;
}
public String getSetpConfigId() {
return setpConfigId;
}
public void setSetpConfigId(String setpConfigId) {
this.setpConfigId = setpConfigId;
}
public String getActionName() {
return actionName;
}
public void setActionName(String actionName) {
this.actionName = actionName;
}
public String getDbType() {
return dbType;
}
public void setDbType(String dbType) {
this.dbType = dbType;
}
public String getTableName() {
return tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public String getRowNum() {
return rowNum;
}
public void setRowNum(String rowNum) {
this.rowNum = rowNum;
}
public String getpageLimit() {
return pageLimit;
}
public void setpageLimit(String pageLimit) {
this.pageLimit = pageLimit;
}
public String getMaxValueField() {
return maxValueField;
}
public void setMaxValueField(String maxValueField) {
this.maxValueField = maxValueField;
}
public String getCreateTableFlag() {
return createTableFlag;
}
public void setCreateTableFlag(String createTableFlag) {
this.createTableFlag = createTableFlag;
}
public String getWriteType() {
return writeType;
}
public void setWriteType(String writeType) {
this.writeType = writeType;
}
public String getSqlStatement() {
return sqlStatement;
}
public void setSqlStatement(String sqlStatement) {
this.sqlStatement = sqlStatement;
}
}

View File

@ -1,303 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowStepConfigDaoImpl">
<resultMap id="get-SysFlowStepConfigEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="flowId" column="flow_id" jdbcType="VARCHAR"/>
<result property="stepId" column="step_id" jdbcType="VARCHAR"/>
<result property="setpConfigId" column="setp_config_id" jdbcType="VARCHAR"/>
<result property="actionName" column="action_name" jdbcType="VARCHAR"/>
<result property="dbType" column="db_type" jdbcType="VARCHAR"/>
<result property="tableName" column="table_name" jdbcType="VARCHAR"/>
<result property="rowNum" column="row_num" jdbcType="VARCHAR"/>
<result property="pageLimit" column="page_limit" jdbcType="VARCHAR"/>
<result property="maxValueField" column="max_value_field" jdbcType="VARCHAR"/>
<result property="createTableFlag" column="create_table_flag" jdbcType="VARCHAR"/>
<result property="writeType" column="write_type" jdbcType="VARCHAR"/>
<result property="sqlStatement" column="sql_statement" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "SysFlowStepConfigEntity_Base_Column_List">
id
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,flow_id
,step_id
,setp_config_id
,action_name
,db_type
,table_name
,row_num
,page_limit
,max_value_field
,create_table_flag
,write_type
,sql_statement
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowStepConfigEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity">
select
<include refid="SysFlowStepConfigEntity_Base_Column_List" />
from sys_flow_step_config
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="flowId != null and flowId != ''"> and flow_id = #{flowId} </if>
<if test="stepId != null and stepId != ''"> and step_id = #{stepId} </if>
<if test="setpConfigId != null and setpConfigId != ''"> and setp_config_id = #{setpConfigId} </if>
<if test="actionName != null and actionName != ''"> and action_name = #{actionName} </if>
<if test="dbType != null and dbType != ''"> and db_type = #{dbType} </if>
<if test="tableName != null and tableName != ''"> and table_name = #{tableName} </if>
<if test="rowNum != null and rowNum != ''"> and row_num = #{rowNum} </if>
<if test="pageLimit != null and pageLimit != ''"> and page_limit = #{pageLimit} </if>
<if test="maxValueField != null and maxValueField != ''"> and max_value_field = #{maxValueField} </if>
<if test="createTableFlag != null and createTableFlag != ''"> and create_table_flag = #{createTableFlag} </if>
<if test="writeType != null and writeType != ''"> and write_type = #{writeType} </if>
<if test="sqlStatement != null and sqlStatement != ''"> and sql_statement = #{sqlStatement} </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.sys.flow.entity.SysFlowStepConfigEntity">
select count(1) from sys_flow_step_config
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="flowId != null and flowId != ''"> and flow_id = #{flowId} </if>
<if test="stepId != null and stepId != ''"> and step_id = #{stepId} </if>
<if test="setpConfigId != null and setpConfigId != ''"> and setp_config_id = #{setpConfigId} </if>
<if test="actionName != null and actionName != ''"> and action_name = #{actionName} </if>
<if test="dbType != null and dbType != ''"> and db_type = #{dbType} </if>
<if test="tableName != null and tableName != ''"> and table_name = #{tableName} </if>
<if test="rowNum != null and rowNum != ''"> and row_num = #{rowNum} </if>
<if test="pageLimit != null and pageLimit != ''"> and page_limit = #{pageLimit} </if>
<if test="maxValueField != null and maxValueField != ''"> and max_value_field = #{maxValueField} </if>
<if test="createTableFlag != null and createTableFlag != ''"> and create_table_flag = #{createTableFlag} </if>
<if test="writeType != null and writeType != ''"> and write_type = #{writeType} </if>
<if test="sqlStatement != null and sqlStatement != ''"> and sql_statement = #{sqlStatement} </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-SysFlowStepConfigEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity">
select
<include refid="SysFlowStepConfigEntity_Base_Column_List" />
from sys_flow_step_config
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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="flowId != null and flowId != ''"> and flow_id like concat('%',#{flowId},'%') </if>
<if test="stepId != null and stepId != ''"> and step_id like concat('%',#{stepId},'%') </if>
<if test="setpConfigId != null and setpConfigId != ''"> and setp_config_id like concat('%',#{setpConfigId},'%') </if>
<if test="actionName != null and actionName != ''"> and action_name like concat('%',#{actionName},'%') </if>
<if test="dbType != null and dbType != ''"> and db_type like concat('%',#{dbType},'%') </if>
<if test="tableName != null and tableName != ''"> and table_name like concat('%',#{tableName},'%') </if>
<if test="rowNum != null and rowNum != ''"> and row_num like concat('%',#{rowNum},'%') </if>
<if test="pageLimit != null and pageLimit != ''"> and page_limit like concat('%',#{pageLimit},'%') </if>
<if test="maxValueField != null and maxValueField != ''"> and max_value_field like concat('%',#{maxValueField},'%') </if>
<if test="createTableFlag != null and createTableFlag != ''"> and create_table_flag like concat('%',#{createTableFlag},'%') </if>
<if test="writeType != null and writeType != ''"> and write_type like concat('%',#{writeType},'%') </if>
<if test="sqlStatement != null and sqlStatement != ''"> and sql_statement like concat('%',#{sqlStatement},'%') </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="SysFlowStepConfigentity_list_or" resultMap="get-SysFlowStepConfigEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity">
select
<include refid="SysFlowStepConfigEntity_Base_Column_List" />
from sys_flow_step_config
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> or id = #{id} </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="flowId != null and flowId != ''"> or flow_id = #{flowId} </if>
<if test="stepId != null and stepId != ''"> or step_id = #{stepId} </if>
<if test="setpConfigId != null and setpConfigId != ''"> or setp_config_id = #{setpConfigId} </if>
<if test="actionName != null and actionName != ''"> or action_name = #{actionName} </if>
<if test="dbType != null and dbType != ''"> or db_type = #{dbType} </if>
<if test="tableName != null and tableName != ''"> or table_name = #{tableName} </if>
<if test="rowNum != null and rowNum != ''"> or row_num = #{rowNum} </if>
<if test="pageLimit != null and pageLimit != ''"> or page_limit = #{pageLimit} </if>
<if test="maxValueField != null and maxValueField != ''"> or max_value_field = #{maxValueField} </if>
<if test="createTableFlag != null and createTableFlag != ''"> or create_table_flag = #{createTableFlag} </if>
<if test="writeType != null and writeType != ''"> or write_type = #{writeType} </if>
<if test="sqlStatement != null and sqlStatement != ''"> or sql_statement = #{sqlStatement} </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.sys.flow.entity.SysFlowStepConfigEntity" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_config(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> id , </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="flowId != null and flowId != ''"> flow_id , </if>
<if test="stepId != null and stepId != ''"> step_id , </if>
<if test="setpConfigId != null and setpConfigId != ''"> setp_config_id , </if>
<if test="actionName != null and actionName != ''"> action_name , </if>
<if test="dbType != null and dbType != ''"> db_type , </if>
<if test="tableName != null and tableName != ''"> table_name , </if>
<if test="rowNum != null and rowNum != ''"> row_num , </if>
<if test="pageLimit != null and pageLimit != ''"> page_limit , </if>
<if test="maxValueField != null and maxValueField != ''"> max_value_field , </if>
<if test="createTableFlag != null and createTableFlag != ''"> create_table_flag , </if>
<if test="writeType != null and writeType != ''"> write_type , </if>
<if test="sqlStatement != null and sqlStatement != ''"> sql_statement , </if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> #{id} ,</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="flowId != null and flowId != ''"> #{flowId} ,</if>
<if test="stepId != null and stepId != ''"> #{stepId} ,</if>
<if test="setpConfigId != null and setpConfigId != ''"> #{setpConfigId} ,</if>
<if test="actionName != null and actionName != ''"> #{actionName} ,</if>
<if test="dbType != null and dbType != ''"> #{dbType} ,</if>
<if test="tableName != null and tableName != ''"> #{tableName} ,</if>
<if test="rowNum != null and rowNum != ''"> #{rowNum} ,</if>
<if test="pageLimit != null and pageLimit != ''"> #{pageLimit} ,</if>
<if test="maxValueField != null and maxValueField != ''"> #{maxValueField} ,</if>
<if test="createTableFlag != null and createTableFlag != ''"> #{createTableFlag} ,</if>
<if test="writeType != null and writeType != ''"> #{writeType} ,</if>
<if test="sqlStatement != null and sqlStatement != ''"> #{sqlStatement} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow_step_config a WHERE a.sts = 'Y' ),1),</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_config(create_user_id, create_time, modify_user_id, modify_time, sts, flow_id, step_id, setp_config_id, action_name, db_type, table_name, row_num, page_limit, max_value_field, create_table_flag, write_type, sql_statement, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.flowId},#{entity.stepId},#{entity.setpConfigId},#{entity.actionName},#{entity.dbType},#{entity.tableName},#{entity.rowNum},#{entity.pageLimit},#{entity.maxValueField},#{entity.createTableFlag},#{entity.writeType},#{entity.sqlStatement}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_config(create_user_id, create_time, modify_user_id, modify_time, sts, flow_id, step_id, setp_config_id, action_name, db_type, table_name, row_num, page_limit, max_value_field, create_table_flag, write_type, sql_statement)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.flowId},#{entity.stepId},#{entity.setpConfigId},#{entity.actionName},#{entity.dbType},#{entity.tableName},#{entity.rowNum},#{entity.pageLimit},#{entity.maxValueField},#{entity.createTableFlag},#{entity.writeType},#{entity.sqlStatement})
</foreach>
on duplicate key update
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),
flow_id = values(flow_id),
step_id = values(step_id),
setp_config_id = values(setp_config_id),
action_name = values(action_name),
db_type = values(db_type),
table_name = values(table_name),
row_num = values(row_num),
page_limit = values(page_limit),
max_value_field = values(max_value_field),
create_table_flag = values(create_table_flag),
write_type = values(write_type),
sql_statement = values(sql_statement)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity" >
update sys_flow_step_config set
<trim suffix="" suffixOverrides=",">
<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="flowId != null and flowId != ''"> flow_id = #{flowId},</if>
<if test="stepId != null and stepId != ''"> step_id = #{stepId},</if>
<if test="setpConfigId != null and setpConfigId != ''"> setp_config_id = #{setpConfigId},</if>
<if test="actionName != null and actionName != ''"> action_name = #{actionName},</if>
<if test="dbType != null and dbType != ''"> db_type = #{dbType},</if>
<if test="tableName != null and tableName != ''"> table_name = #{tableName},</if>
<if test="rowNum != null and rowNum != ''"> row_num = #{rowNum},</if>
<if test="pageLimit != null and pageLimit != ''"> page_limit = #{pageLimit},</if>
<if test="maxValueField != null and maxValueField != ''"> max_value_field = #{maxValueField},</if>
<if test="createTableFlag != null and createTableFlag != ''"> create_table_flag = #{createTableFlag},</if>
<if test="writeType != null and writeType != ''"> write_type = #{writeType},</if>
<if test="sqlStatement != null and sqlStatement != ''"> sql_statement = #{sqlStatement},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity" >
update sys_flow_step_config 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.sys.flow.entity.SysFlowStepConfigEntity" >
update sys_flow_step_config 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="sts != null and sts != ''"> and sts = #{sts} </if>
<if test="flowId != null and flowId != ''"> and flow_id = #{flowId} </if>
<if test="stepId != null and stepId != ''"> and step_id = #{stepId} </if>
<if test="setpConfigId != null and setpConfigId != ''"> and setp_config_id = #{setpConfigId} </if>
<if test="actionName != null and actionName != ''"> and action_name = #{actionName} </if>
<if test="dbType != null and dbType != ''"> and db_type = #{dbType} </if>
<if test="tableName != null and tableName != ''"> and table_name = #{tableName} </if>
<if test="rowNum != null and rowNum != ''"> and row_num = #{rowNum} </if>
<if test="pageLimit != null and pageLimit != ''"> and page_limit = #{pageLimit} </if>
<if test="maxValueField != null and maxValueField != ''"> and max_value_field = #{maxValueField} </if>
<if test="createTableFlag != null and createTableFlag != ''"> and create_table_flag = #{createTableFlag} </if>
<if test="writeType != null and writeType != ''"> and write_type = #{writeType} </if>
<if test="sqlStatement != null and sqlStatement != ''"> and sql_statement = #{sqlStatement} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from sys_flow_step_config where id = #{id}
</delete>
</mapper>

View File

@ -1,125 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 流程步骤信息(SysFlowStep)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public class SysFlowStepEntity extends BaseEntity {
/** 步骤序号 */
private Integer step;
//流程id
private String flowId;
/** 步骤类型;1定时任务2数据库3应用 */
private String stepType;
/** 描述 */
private String description;
/** 操作动作(名称);api名称/插件名称 */
private String apiName;
/** 操作动作类型;api/插件 */
private String actionType;
/** 应用id */
private String appId;
/** 操作动作id;api_id,根据操作动作类型来决定是查api还是插件 */
private String apiId;
/** nifi返回的应用id;刘工接口返回的nifi应用id不确定要不要 */
private String nifiAppId;
/** nifi的apiId */
private String nifiApiId;
/** nifi应用排序模式;先进先出/先进后出 */
private String sortMode;
public Integer getStep() {
return step;
}
public void setStep(Integer step) {
this.step = step;
}
public String getStepType() {
return stepType;
}
public void setStepType(String stepType) {
this.stepType = stepType;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getApiName() {
return apiName;
}
public void setApiName(String apiName) {
this.apiName = apiName;
}
public String getActionType() {
return actionType;
}
public void setActionType(String actionType) {
this.actionType = actionType;
}
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getApiId() {
return apiId;
}
public void setApiId(String apiId) {
this.apiId = apiId;
}
public String getNifiAppId() {
return nifiAppId;
}
public void setNifiAppId(String nifiAppId) {
this.nifiAppId = nifiAppId;
}
public String getNifiApiId() {
return nifiApiId;
}
public void setNifiApiId(String nifiApiId) {
this.nifiApiId = nifiApiId;
}
public String getSortMode() {
return sortMode;
}
public void setSortMode(String sortMode) {
this.sortMode = sortMode;
}
public String getFlowId() {
return flowId;
}
public void setFlowId(String flowId) {
this.flowId = flowId;
}
}

View File

@ -1,312 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowStepDaoImpl">
<resultMap id="get-SysFlowStepEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowStepEntity">
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="step" column="step" jdbcType="INTEGER"/>
<result property="stepType" column="step_type" jdbcType="VARCHAR"/>
<result property="flowId" column="flow_id" jdbcType="VARCHAR"/>
<result property="description" column="description" jdbcType="VARCHAR"/>
<result property="apiName" column="api_name" jdbcType="VARCHAR"/>
<result property="actionType" column="action_type" jdbcType="VARCHAR"/>
<result property="appId" column="app_id" jdbcType="VARCHAR"/>
<result property="apiId" column="api_id" jdbcType="VARCHAR"/>
<result property="nifiAppId" column="nifi_app_id" jdbcType="VARCHAR"/>
<result property="nifiApiId" column="nifi_api_id" jdbcType="VARCHAR"/>
<result property="sortMode" column="sort_mode" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id="SysFlowStepEntity_Base_Column_List">
id
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,step
,step_type
,flowId
,description
,api_name
,action_type
,app_id
,api_id
,nifi_app_id
,nifi_api_id
,sort_mode
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowStepEntity-result"
parameterType="com.hzya.frame.sys.flow.entity.SysFlowStepEntity">
select
<include refid="SysFlowStepEntity_Base_Column_List"/>
from sys_flow_step
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id = #{id}</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="step != null">and step = #{step}</if>
<if test="stepType != null and stepType != ''">and step_type = #{stepType}</if>
<if test="flowId != null and flowId != ''">and flow_id = #{flowId}</if>
<if test="description != null and description != ''">and description = #{description}</if>
<if test="apiName != null and apiName != ''">and api_name = #{apiName}</if>
<if test="actionType != null and actionType != ''">and action_type = #{actionType}</if>
<if test="appId != null and appId != ''">and app_id = #{appId}</if>
<if test="apiId != null and apiId != ''">and api_id = #{apiId}</if>
<if test="nifiAppId != null and nifiAppId != ''">and nifi_app_id = #{nifiAppId}</if>
<if test="nifiApiId != null and nifiApiId != ''">and nifi_api_id = #{nifiApiId}</if>
<if test="sortMode != null and sortMode != ''">and sort_mode = #{sortMode}</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.sys.flow.entity.SysFlowStepEntity">
select count(1) from sys_flow_step
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id = #{id}</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="step != null">and step = #{step}</if>
<if test="stepType != null and stepType != ''">and step_type = #{stepType}</if>
<if test="flowId != null and flowId != ''">and flow_id = #{flowId}</if>
<if test="description != null and description != ''">and description = #{description}</if>
<if test="apiName != null and apiName != ''">and api_name = #{apiName}</if>
<if test="actionType != null and actionType != ''">and action_type = #{actionType}</if>
<if test="appId != null and appId != ''">and app_id = #{appId}</if>
<if test="apiId != null and apiId != ''">and api_id = #{apiId}</if>
<if test="nifiAppId != null and nifiAppId != ''">and nifi_app_id = #{nifiAppId}</if>
<if test="nifiApiId != null and nifiApiId != ''">and nifi_api_id = #{nifiApiId}</if>
<if test="sortMode != null and sortMode != ''">and sort_mode = #{sortMode}</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-SysFlowStepEntity-result"
parameterType="com.hzya.frame.sys.flow.entity.SysFlowStepEntity">
select
<include refid="SysFlowStepEntity_Base_Column_List"/>
from sys_flow_step
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id like concat('%',#{id},'%')</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="step != null">and step like concat('%',#{step},'%')</if>
<if test="stepType != null and stepType != ''">and step_type like concat('%',#{stepType},'%')</if>
<if test="flowId != null and flowId != ''">and flow_id like concat('%',#{flowId},'%')</if>
<if test="description != null and description != ''">and description like concat('%',#{description},'%')
</if>
<if test="apiName != null and apiName != ''">and api_name like concat('%',#{apiName},'%')</if>
<if test="actionType != null and actionType != ''">and action_type like concat('%',#{actionType},'%')</if>
<if test="appId != null and appId != ''">and app_id like concat('%',#{appId},'%')</if>
<if test="apiId != null and apiId != ''">and api_id like concat('%',#{apiId},'%')</if>
<if test="nifiAppId != null and nifiAppId != ''">and nifi_app_id like concat('%',#{nifiAppId},'%')</if>
<if test="nifiApiId != null and nifiApiId != ''">and nifi_api_id like concat('%',#{nifiApiId},'%')</if>
<if test="sortMode != null and sortMode != ''">and sort_mode like concat('%',#{sortMode},'%')</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="SysFlowStepentity_list_or" resultMap="get-SysFlowStepEntity-result"
parameterType="com.hzya.frame.sys.flow.entity.SysFlowStepEntity">
select
<include refid="SysFlowStepEntity_Base_Column_List"/>
from sys_flow_step
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">or id = #{id}</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="step != null">or step = #{step}</if>
<if test="stepType != null and stepType != ''">or step_type = #{stepType}</if>
<if test="flowId != null and flowId != ''">or flow_id = #{flowId}</if>
<if test="description != null and description != ''">or description = #{description}</if>
<if test="apiName != null and apiName != ''">or api_name = #{apiName}</if>
<if test="actionType != null and actionType != ''">or action_type = #{actionType}</if>
<if test="appId != null and appId != ''">or app_id = #{appId}</if>
<if test="apiId != null and apiId != ''">or api_id = #{apiId}</if>
<if test="nifiAppId != null and nifiAppId != ''">or nifi_app_id = #{nifiAppId}</if>
<if test="nifiApiId != null and nifiApiId != ''">or nifi_api_id = #{nifiApiId}</if>
<if test="sortMode != null and sortMode != ''">or sort_mode = #{sortMode}</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.sys.flow.entity.SysFlowStepEntity" keyProperty="id"
useGeneratedKeys="true">
insert into sys_flow_step(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">id ,</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="step != null">step ,</if>
<if test="stepType != null and stepType != ''">step_type ,</if>
<if test="flowId != null and flowId != ''">flow_id ,</if>
<if test="description != null and description != ''">description ,</if>
<if test="apiName != null and apiName != ''">api_name ,</if>
<if test="actionType != null and actionType != ''">action_type ,</if>
<if test="appId != null and appId != ''">app_id ,</if>
<if test="apiId != null and apiId != ''">api_id ,</if>
<if test="nifiAppId != null and nifiAppId != ''">nifi_app_id ,</if>
<if test="nifiApiId != null and nifiApiId != ''">nifi_api_id ,</if>
<if test="sortMode != null and sortMode != ''">sort_mode ,</if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''">#{id} ,</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="step != null">#{step} ,</if>
<if test="stepType != null and stepType != ''">#{stepType} ,</if>
<if test="flowId != null and flowId != ''">#{flowId} ,</if>
<if test="description != null and description != ''">#{description} ,</if>
<if test="apiName != null and apiName != ''">#{apiName} ,</if>
<if test="actionType != null and actionType != ''">#{actionType} ,</if>
<if test="appId != null and appId != ''">#{appId} ,</if>
<if test="apiId != null and apiId != ''">#{apiId} ,</if>
<if test="nifiAppId != null and nifiAppId != ''">#{nifiAppId} ,</if>
<if test="nifiApiId != null and nifiApiId != ''">#{nifiApiId} ,</if>
<if test="sortMode != null and sortMode != ''">#{sortMode} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow_step a
WHERE a.sts = 'Y' ),1),
</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step(create_user_id, create_time, modify_user_id, modify_time, sts, step,
step_type,flow_id, description, api_name, action_type, app_id, api_id, nifi_app_id, nifi_api_id, sort_mode, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.step},#{entity.stepType},#{entity.flowId},#{entity.description},#{entity.apiName},#{entity.actionType},#{entity.appId},#{entity.apiId},#{entity.nifiAppId},#{entity.nifiApiId},#{entity.sortMode},
'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step(create_user_id, create_time, modify_user_id, modify_time, sts, step, step_type,
flow_id,description, api_name, action_type, app_id, api_id, nifi_app_id, nifi_api_id, sort_mode)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.step},#{entity.stepType},#{entity.flowId},#{entity.description},#{entity.apiName},#{entity.actionType},#{entity.appId},#{entity.apiId},#{entity.nifiAppId},#{entity.nifiApiId},#{entity.sortMode})
</foreach>
on duplicate key update
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),
step = values(step),
step_type = values(step_type),
flow_id = values(flow_id),
description = values(description),
api_name = values(api_name),
action_type = values(action_type),
app_id = values(app_id),
api_id = values(api_id),
nifi_app_id = values(nifi_app_id),
nifi_api_id = values(nifi_api_id),
sort_mode = values(sort_mode)
</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType="com.hzya.frame.sys.flow.entity.SysFlowStepEntity">
update sys_flow_step set
<trim suffix="" suffixOverrides=",">
<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="step != null">step = #{step},</if>
<if test="stepType != null and stepType != ''">step_type = #{stepType},</if>
<if test="flowId != null and flowId != ''">flow_id = #{flowId},</if>
<if test="description != null and description != ''">description = #{description},</if>
<if test="apiName != null and apiName != ''">api_name = #{apiName},</if>
<if test="actionType != null and actionType != ''">action_type = #{actionType},</if>
<if test="appId != null and appId != ''">app_id = #{appId},</if>
<if test="apiId != null and apiId != ''">api_id = #{apiId},</if>
<if test="nifiAppId != null and nifiAppId != ''">nifi_app_id = #{nifiAppId},</if>
<if test="nifiApiId != null and nifiApiId != ''">nifi_api_id = #{nifiApiId},</if>
<if test="sortMode != null and sortMode != ''">sort_mode = #{sortMode},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType="com.hzya.frame.sys.flow.entity.SysFlowStepEntity">
update sys_flow_step
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.sys.flow.entity.SysFlowStepEntity">
update sys_flow_step 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="sts != null and sts != ''">and sts = #{sts}</if>
<if test="step != null">and step = #{step}</if>
<if test="stepType != null and stepType != ''">and step_type = #{stepType}</if>
<if test="flowId != null and flowId != ''">and flow_id = #{flowId}</if>
<if test="description != null and description != ''">and description = #{description}</if>
<if test="apiName != null and apiName != ''">and api_name = #{apiName}</if>
<if test="actionType != null and actionType != ''">and action_type = #{actionType}</if>
<if test="appId != null and appId != ''">and app_id = #{appId}</if>
<if test="apiId != null and apiId != ''">and api_id = #{apiId}</if>
<if test="nifiAppId != null and nifiAppId != ''">and nifi_app_id = #{nifiAppId}</if>
<if test="nifiApiId != null and nifiApiId != ''">and nifi_api_id = #{nifiApiId}</if>
<if test="sortMode != null and sortMode != ''">and sort_mode = #{sortMode}</if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete
from sys_flow_step
where id = #{id}
</delete>
</mapper>

View File

@ -1,76 +0,0 @@
package com.hzya.frame.sys.flow.entity;
import java.util.Date;
import com.hzya.frame.web.entity.BaseEntity;
/**
* 步骤关联关系表(SysFlowStepRelation)实体类
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public class SysFlowStepRelationEntity extends BaseEntity {
/** 输入步骤 */
private String inputStepId;
/** 输出步骤 */
private String outputStepId;
/** 输入nifi app id */
private String inputNifiAppId;
/** 输出nifiidapp id */
private String outputNifiAppId;
/** 输入nifi api id */
private String inputNifiApiId;
/** 输出nifiidapi id */
private String outputNifiApiId;
public String getInputStepId() {
return inputStepId;
}
public void setInputStepId(String inputStepId) {
this.inputStepId = inputStepId;
}
public String getOutputStepId() {
return outputStepId;
}
public void setOutputStepId(String outputStepId) {
this.outputStepId = outputStepId;
}
public String getInputNifiAppId() {
return inputNifiAppId;
}
public void setInputNifiAppId(String inputNifiAppId) {
this.inputNifiAppId = inputNifiAppId;
}
public String getOutputNifiAppId() {
return outputNifiAppId;
}
public void setOutputNifiAppId(String outputNifiAppId) {
this.outputNifiAppId = outputNifiAppId;
}
public String getInputNifiApiId() {
return inputNifiApiId;
}
public void setInputNifiApiId(String inputNifiApiId) {
this.inputNifiApiId = inputNifiApiId;
}
public String getOutputNifiApiId() {
return outputNifiApiId;
}
public void setOutputNifiApiId(String outputNifiApiId) {
this.outputNifiApiId = outputNifiApiId;
}
}

View File

@ -1,237 +0,0 @@
<?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.sys.flow.dao.impl.SysFlowStepRelationDaoImpl">
<resultMap id="get-SysFlowStepRelationEntity-result" type="com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity" >
<result property="id" column="id" jdbcType="VARCHAR"/>
<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="inputStepId" column="input_step_id" jdbcType="VARCHAR"/>
<result property="outputStepId" column="output_step_id" jdbcType="VARCHAR"/>
<result property="inputNifiAppId" column="input_nifi_app_id" jdbcType="VARCHAR"/>
<result property="outputNifiAppId" column="output_nifi_app_id" jdbcType="VARCHAR"/>
<result property="inputNifiApiId" column="input_nifi_api_id" jdbcType="VARCHAR"/>
<result property="outputNifiApiId" column="output_nifi_api_id" jdbcType="VARCHAR"/>
</resultMap>
<!-- 查询的字段-->
<sql id = "SysFlowStepRelationEntity_Base_Column_List">
id
,create_user_id
,create_time
,modify_user_id
,modify_time
,sts
,input_step_id
,output_step_id
,input_nifi_app_id
,output_nifi_app_id
,input_nifi_api_id
,output_nifi_api_id
</sql>
<!-- 查询 采用==查询 -->
<select id="entity_list_base" resultMap="get-SysFlowStepRelationEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity">
select
<include refid="SysFlowStepRelationEntity_Base_Column_List" />
from sys_flow_step_relation
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="inputStepId != null and inputStepId != ''"> and input_step_id = #{inputStepId} </if>
<if test="outputStepId != null and outputStepId != ''"> and output_step_id = #{outputStepId} </if>
<if test="inputNifiAppId != null and inputNifiAppId != ''"> and input_nifi_app_id = #{inputNifiAppId} </if>
<if test="outputNifiAppId != null and outputNifiAppId != ''"> and output_nifi_app_id = #{outputNifiAppId} </if>
<if test="inputNifiApiId != null and inputNifiApiId != ''"> and input_nifi_api_id = #{inputNifiApiId} </if>
<if test="outputNifiApiId != null and outputNifiApiId != ''"> and output_nifi_api_id = #{outputNifiApiId} </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.sys.flow.entity.SysFlowStepRelationEntity">
select count(1) from sys_flow_step_relation
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id = #{id} </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="inputStepId != null and inputStepId != ''"> and input_step_id = #{inputStepId} </if>
<if test="outputStepId != null and outputStepId != ''"> and output_step_id = #{outputStepId} </if>
<if test="inputNifiAppId != null and inputNifiAppId != ''"> and input_nifi_app_id = #{inputNifiAppId} </if>
<if test="outputNifiAppId != null and outputNifiAppId != ''"> and output_nifi_app_id = #{outputNifiAppId} </if>
<if test="inputNifiApiId != null and inputNifiApiId != ''"> and input_nifi_api_id = #{inputNifiApiId} </if>
<if test="outputNifiApiId != null and outputNifiApiId != ''"> and output_nifi_api_id = #{outputNifiApiId} </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-SysFlowStepRelationEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity">
select
<include refid="SysFlowStepRelationEntity_Base_Column_List" />
from sys_flow_step_relation
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </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="inputStepId != null and inputStepId != ''"> and input_step_id like concat('%',#{inputStepId},'%') </if>
<if test="outputStepId != null and outputStepId != ''"> and output_step_id like concat('%',#{outputStepId},'%') </if>
<if test="inputNifiAppId != null and inputNifiAppId != ''"> and input_nifi_app_id like concat('%',#{inputNifiAppId},'%') </if>
<if test="outputNifiAppId != null and outputNifiAppId != ''"> and output_nifi_app_id like concat('%',#{outputNifiAppId},'%') </if>
<if test="inputNifiApiId != null and inputNifiApiId != ''"> and input_nifi_api_id like concat('%',#{inputNifiApiId},'%') </if>
<if test="outputNifiApiId != null and outputNifiApiId != ''"> and output_nifi_api_id like concat('%',#{outputNifiApiId},'%') </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="SysFlowStepRelationentity_list_or" resultMap="get-SysFlowStepRelationEntity-result" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity">
select
<include refid="SysFlowStepRelationEntity_Base_Column_List" />
from sys_flow_step_relation
<trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''"> or id = #{id} </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="inputStepId != null and inputStepId != ''"> or input_step_id = #{inputStepId} </if>
<if test="outputStepId != null and outputStepId != ''"> or output_step_id = #{outputStepId} </if>
<if test="inputNifiAppId != null and inputNifiAppId != ''"> or input_nifi_app_id = #{inputNifiAppId} </if>
<if test="outputNifiAppId != null and outputNifiAppId != ''"> or output_nifi_app_id = #{outputNifiAppId} </if>
<if test="inputNifiApiId != null and inputNifiApiId != ''"> or input_nifi_api_id = #{inputNifiApiId} </if>
<if test="outputNifiApiId != null and outputNifiApiId != ''"> or output_nifi_api_id = #{outputNifiApiId} </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.sys.flow.entity.SysFlowStepRelationEntity" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_relation(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> id , </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="inputStepId != null and inputStepId != ''"> input_step_id , </if>
<if test="outputStepId != null and outputStepId != ''"> output_step_id , </if>
<if test="inputNifiAppId != null and inputNifiAppId != ''"> input_nifi_app_id , </if>
<if test="outputNifiAppId != null and outputNifiAppId != ''"> output_nifi_app_id , </if>
<if test="inputNifiApiId != null and inputNifiApiId != ''"> input_nifi_api_id , </if>
<if test="outputNifiApiId != null and outputNifiApiId != ''"> output_nifi_api_id , </if>
<if test="sorts == null ">sorts,</if>
<if test="sts == null ">sts,</if>
</trim>
)values(
<trim suffix="" suffixOverrides=",">
<if test="id != null and id != ''"> #{id} ,</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="inputStepId != null and inputStepId != ''"> #{inputStepId} ,</if>
<if test="outputStepId != null and outputStepId != ''"> #{outputStepId} ,</if>
<if test="inputNifiAppId != null and inputNifiAppId != ''"> #{inputNifiAppId} ,</if>
<if test="outputNifiAppId != null and outputNifiAppId != ''"> #{outputNifiAppId} ,</if>
<if test="inputNifiApiId != null and inputNifiApiId != ''"> #{inputNifiApiId} ,</if>
<if test="outputNifiApiId != null and outputNifiApiId != ''"> #{outputNifiApiId} ,</if>
<if test="sorts == null ">COALESCE((select (max(IFNULL( a.sorts, 0 )) + 1) as sort from sys_flow_step_relation a WHERE a.sts = 'Y' ),1),</if>
<if test="sts == null ">'Y',</if>
</trim>
)
</insert>
<!-- 批量新增 -->
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_relation(create_user_id, create_time, modify_user_id, modify_time, sts, input_step_id, output_step_id, input_nifi_app_id, output_nifi_app_id, input_nifi_api_id, output_nifi_api_id, sts)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.inputStepId},#{entity.outputStepId},#{entity.inputNifiAppId},#{entity.outputNifiAppId},#{entity.inputNifiApiId},#{entity.outputNifiApiId}, 'Y')
</foreach>
</insert>
<!-- 批量新增或者修改-->
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
insert into sys_flow_step_relation(create_user_id, create_time, modify_user_id, modify_time, sts, input_step_id, output_step_id, input_nifi_app_id, output_nifi_app_id, input_nifi_api_id, output_nifi_api_id)
values
<foreach collection="entities" item="entity" separator=",">
(#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.inputStepId},#{entity.outputStepId},#{entity.inputNifiAppId},#{entity.outputNifiAppId},#{entity.inputNifiApiId},#{entity.outputNifiApiId})
</foreach>
on duplicate key update
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),
input_step_id = values(input_step_id),
output_step_id = values(output_step_id),
input_nifi_app_id = values(input_nifi_app_id),
output_nifi_app_id = values(output_nifi_app_id),
input_nifi_api_id = values(input_nifi_api_id),
output_nifi_api_id = values(output_nifi_api_id)</insert>
<!--通过主键修改方法-->
<update id="entity_update" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity" >
update sys_flow_step_relation set
<trim suffix="" suffixOverrides=",">
<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="inputStepId != null and inputStepId != ''"> input_step_id = #{inputStepId},</if>
<if test="outputStepId != null and outputStepId != ''"> output_step_id = #{outputStepId},</if>
<if test="inputNifiAppId != null and inputNifiAppId != ''"> input_nifi_app_id = #{inputNifiAppId},</if>
<if test="outputNifiAppId != null and outputNifiAppId != ''"> output_nifi_app_id = #{outputNifiAppId},</if>
<if test="inputNifiApiId != null and inputNifiApiId != ''"> input_nifi_api_id = #{inputNifiApiId},</if>
<if test="outputNifiApiId != null and outputNifiApiId != ''"> output_nifi_api_id = #{outputNifiApiId},</if>
</trim>
where id = #{id}
</update>
<!-- 逻辑删除 -->
<update id="entity_logicDelete" parameterType = "com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity" >
update sys_flow_step_relation 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.sys.flow.entity.SysFlowStepRelationEntity" >
update sys_flow_step_relation 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="sts != null and sts != ''"> and sts = #{sts} </if>
<if test="inputStepId != null and inputStepId != ''"> and input_step_id = #{inputStepId} </if>
<if test="outputStepId != null and outputStepId != ''"> and output_step_id = #{outputStepId} </if>
<if test="inputNifiAppId != null and inputNifiAppId != ''"> and input_nifi_app_id = #{inputNifiAppId} </if>
<if test="outputNifiAppId != null and outputNifiAppId != ''"> and output_nifi_app_id = #{outputNifiAppId} </if>
<if test="inputNifiApiId != null and inputNifiApiId != ''"> and input_nifi_api_id = #{inputNifiApiId} </if>
<if test="outputNifiApiId != null and outputNifiApiId != ''"> and output_nifi_api_id = #{outputNifiApiId} </if>
and sts='Y'
</trim>
</update>
<!--通过主键删除-->
<delete id="entity_delete">
delete from sys_flow_step_relation where id = #{id}
</delete>
</mapper>

View File

@ -1,57 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.sys.flow.entity.SysFlowClassRuleEntity;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.web.entity.JsonResultEntity;
/**
* 流程分类权限表(SysFlowClassRule)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowClassRuleService extends IBaseService<SysFlowClassRuleEntity, String>{
/**
* 新增流程分类权限
* @param object
* @return
*/
JsonResultEntity saveFlowClassRule(JSONObject object);
/**
* 修改流程分类权限
* @param object
* @return
*/
JsonResultEntity updateFlowClassRule(JSONObject object);
/**
* 删除流程分类权限
* @param object
* @return
*/
JsonResultEntity deleteFlowClassRule(JSONObject object);
/**
* 列表查询
* @param object
* @return
*/
JsonResultEntity queryRuleList(JSONObject object);
/**
* 分页查询
* @param object
* @return
*/
JsonResultEntity queryRulePagedInfo(JSONObject object);
/**
* 查询待分配权限的用户列表
* @param object
* @return
*/
JsonResultEntity queryUserList(JSONObject object);
}

View File

@ -1,42 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.sys.flow.entity.SysFlowClassEntity;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.web.entity.JsonResultEntity;
/**
* 流程分类;对应数环通项目分类(SysFlowClass)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowClassService extends IBaseService<SysFlowClassEntity, String>{
/**
* 根据Id查询
* @param object
* @return
*/
JsonResultEntity getFlowClass(JSONObject object);
/**
* 新增流程分类
* @param object
* @return
*/
JsonResultEntity saveFlowClass(JSONObject object);
/**
* 修改流程分类
* @param object
* @return
*/
JsonResultEntity updateFlowClass(JSONObject object);
/**
* 删除流程分类
* @param object
* @return
*/
JsonResultEntity deleteFlowClass(JSONObject object);
}

View File

@ -1,43 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.sys.flow.entity.SysFlowNifiConstantEntity;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.web.entity.JsonResultEntity;
/**
* nifi常量(SysFlowNifiConstant)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowNifiConstantService extends IBaseService<SysFlowNifiConstantEntity, String>{
/**
* 详情
* @param object
* @return
*/
JsonResultEntity getNifiConstant(JSONObject object);
/**
* 保存nifi常量
* @param object
* @return
*/
JsonResultEntity saveNifiConstant(JSONObject object);
/**
* 更新nifi常量
* @param object
* @return
*/
JsonResultEntity updateNifiConstant(JSONObject object);
/**
* 更新nifi常量
* @param object
* @return
*/
JsonResultEntity deleteNifiConstant(JSONObject object);
}

View File

@ -1,49 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.alibaba.fastjson.JSONObject;
import com.hzya.frame.sys.flow.entity.SysFlowEntity;
import com.hzya.frame.basedao.service.IBaseService;
import com.hzya.frame.web.entity.JsonResultEntity;
/**
* 流程主表;流程就是数环通的Linkup(SysFlow)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:24
*/
public interface ISysFlowService extends IBaseService<SysFlowEntity, String>{
/**
* 保存流程主表
* @param object
* @return
*/
JsonResultEntity saveFlow(JSONObject object);
/**
* 更新流程主表
* @param object
* @return
*/
JsonResultEntity updateFlow(JSONObject object);
/**
* 删除流程主表
* @param object
* @return
*/
JsonResultEntity deleteFlow(JSONObject object);
/**
* 列表查询
* @param object
* @return
*/
JsonResultEntity queryFlowList(JSONObject object);
/**
* 分页查询
* @param object
* @return
*/
JsonResultEntity queryFlowPagedInfo(JSONObject object);
}

View File

@ -1,12 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.hzya.frame.sys.flow.entity.SysFlowStepAccountEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* 流程步骤账户表(SysFlowStepAccount)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public interface ISysFlowStepAccountService extends IBaseService<SysFlowStepAccountEntity, String>{
}

View File

@ -1,12 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.hzya.frame.sys.flow.entity.SysFlowStepConfigBEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* 映射信息表体(SysFlowStepConfigB)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public interface ISysFlowStepConfigBService extends IBaseService<SysFlowStepConfigBEntity, String>{
}

View File

@ -1,12 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.hzya.frame.sys.flow.entity.SysFlowStepConfigEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* 映射信息主表(SysFlowStepConfig)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public interface ISysFlowStepConfigService extends IBaseService<SysFlowStepConfigEntity, String>{
}

View File

@ -1,12 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.hzya.frame.sys.flow.entity.SysFlowStepRelationEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* 步骤关联关系表(SysFlowStepRelation)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:28
*/
public interface ISysFlowStepRelationService extends IBaseService<SysFlowStepRelationEntity, String>{
}

View File

@ -1,12 +0,0 @@
package com.hzya.frame.sys.flow.service;
import com.hzya.frame.sys.flow.entity.SysFlowStepEntity;
import com.hzya.frame.basedao.service.IBaseService;
/**
* 流程步骤信息(SysFlowStep)表服务接口
*
* @author xiang2lin
* @since 2025-04-29 10:16:27
*/
public interface ISysFlowStepService extends IBaseService<SysFlowStepEntity, String>{
}

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