Compare commits
No commits in common. "master" and "guojh" have entirely different histories.
|
@ -52,7 +52,7 @@ $RECYCLE.BIN/
|
|||
|
||||
# Windows shortcuts
|
||||
*.lnk
|
||||
./idea/
|
||||
|
||||
/buildpackage/src/main/resources/banner.txt
|
||||
/webapp/target/
|
||||
/service/target/
|
||||
|
@ -60,9 +60,3 @@ $RECYCLE.BIN/
|
|||
/common/target/
|
||||
/buildpackage/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/
|
||||
|
|
|
@ -41,11 +41,3 @@ R__TRUNCATE_bd_app.sql 这个文件会执行多次,但是会校验是否checks
|
|||
|
||||
表flyway_schema_history会记录sql执行的情况
|
||||
本项目需要的sql统一放置到resources/flyway下
|
||||
|
||||
# 系统初始化
|
||||
|
||||
| 名称 | 备注 |
|
||||
|------|------|
|
||||
| V3.0.1__sys_init_table.sql | 系统初始化建表语句 |
|
||||
| 李四 | 32 |
|
||||
| 王五 | 24 |
|
||||
|
|
|
@ -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>
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
package com.hzya.frame.plugin.masterData.dao;
|
||||
|
||||
import com.hzya.frame.basedao.dao.IBaseDao;
|
||||
import com.hzya.frame.plugin.masterData.entity.MdmEntity;
|
||||
|
||||
/**
|
||||
* 客户档案(mdm_customer: table)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-21 13:52:35
|
||||
*/
|
||||
public interface IMdmDao extends IBaseDao<MdmEntity, String> {
|
||||
|
||||
}
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
package com.hzya.frame.plugin.masterData.dao.impl;
|
||||
|
||||
import com.hzya.frame.plugin.masterData.entity.MdmEntity;
|
||||
import com.hzya.frame.plugin.masterData.dao.IMdmDao;
|
||||
import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||
/**
|
||||
* 客户档案(MdmCustomer)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-21 13:52:35
|
||||
*/
|
||||
public class MdmDaoImpl extends MybatisGenericDao<MdmEntity, String> implements IMdmDao {
|
||||
|
||||
}
|
||||
|
|
@ -1,186 +0,0 @@
|
|||
package com.hzya.frame.plugin.masterData.entity;
|
||||
|
||||
import java.util.Date;
|
||||
import com.hzya.frame.web.entity.BaseEntity;
|
||||
/**
|
||||
* 客户档案(MdmCustomer)实体类
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-21 13:52:35
|
||||
*/
|
||||
public class MdmEntity extends BaseEntity {
|
||||
|
||||
/** 单据规则 */
|
||||
private String documentRule;
|
||||
/** 单据规则流水号 */
|
||||
private Long documentRuleNum;
|
||||
/** 数据状态 Y正常 N删除 F修改 */
|
||||
private String dataStatus;
|
||||
/** 新增数据状态 0待下发 1已下发 */
|
||||
private String addStatus;
|
||||
/** 修改数据状态 0待下发 1已下发 */
|
||||
private String updateStatus;
|
||||
/** 删除数据状态 0待下发 1已下发 */
|
||||
private String deleteStatus;
|
||||
/** 公司id */
|
||||
private String companyId;
|
||||
/** 客户编码 */
|
||||
private String code;
|
||||
/** 客户类型 */
|
||||
private String custprop;
|
||||
/** 客户状态 */
|
||||
private String custstate;
|
||||
/** 启用状态 */
|
||||
private String enablestate;
|
||||
/** 客户名称 */
|
||||
private String name;
|
||||
/** 国家/地区 */
|
||||
private String pkCountry;
|
||||
/** 客户基本分类 */
|
||||
private String pkCustclass;
|
||||
/** 所属集团 */
|
||||
private String pkGroup;
|
||||
/** 所属组织 */
|
||||
private String pkOrg;
|
||||
/** 纳税人登记号 */
|
||||
private String taxpayerid;
|
||||
|
||||
|
||||
public String getDocumentRule() {
|
||||
return documentRule;
|
||||
}
|
||||
|
||||
public void setDocumentRule(String documentRule) {
|
||||
this.documentRule = documentRule;
|
||||
}
|
||||
|
||||
public Long getDocumentRuleNum() {
|
||||
return documentRuleNum;
|
||||
}
|
||||
|
||||
public void setDocumentRuleNum(Long documentRuleNum) {
|
||||
this.documentRuleNum = documentRuleNum;
|
||||
}
|
||||
|
||||
public String getDataStatus() {
|
||||
return dataStatus;
|
||||
}
|
||||
|
||||
public void setDataStatus(String dataStatus) {
|
||||
this.dataStatus = dataStatus;
|
||||
}
|
||||
|
||||
public String getAddStatus() {
|
||||
return addStatus;
|
||||
}
|
||||
|
||||
public void setAddStatus(String addStatus) {
|
||||
this.addStatus = addStatus;
|
||||
}
|
||||
|
||||
public String getUpdateStatus() {
|
||||
return updateStatus;
|
||||
}
|
||||
|
||||
public void setUpdateStatus(String updateStatus) {
|
||||
this.updateStatus = updateStatus;
|
||||
}
|
||||
|
||||
public String getDeleteStatus() {
|
||||
return deleteStatus;
|
||||
}
|
||||
|
||||
public void setDeleteStatus(String deleteStatus) {
|
||||
this.deleteStatus = deleteStatus;
|
||||
}
|
||||
|
||||
public String getCompanyId() {
|
||||
return companyId;
|
||||
}
|
||||
|
||||
public void setCompanyId(String companyId) {
|
||||
this.companyId = companyId;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getCustprop() {
|
||||
return custprop;
|
||||
}
|
||||
|
||||
public void setCustprop(String custprop) {
|
||||
this.custprop = custprop;
|
||||
}
|
||||
|
||||
public String getCuststate() {
|
||||
return custstate;
|
||||
}
|
||||
|
||||
public void setCuststate(String custstate) {
|
||||
this.custstate = custstate;
|
||||
}
|
||||
|
||||
public String getEnablestate() {
|
||||
return enablestate;
|
||||
}
|
||||
|
||||
public void setEnablestate(String enablestate) {
|
||||
this.enablestate = enablestate;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getPkCountry() {
|
||||
return pkCountry;
|
||||
}
|
||||
|
||||
public void setPkCountry(String pkCountry) {
|
||||
this.pkCountry = pkCountry;
|
||||
}
|
||||
|
||||
public String getPkCustclass() {
|
||||
return pkCustclass;
|
||||
}
|
||||
|
||||
public void setPkCustclass(String pkCustclass) {
|
||||
this.pkCustclass = pkCustclass;
|
||||
}
|
||||
|
||||
public String getPkGroup() {
|
||||
return pkGroup;
|
||||
}
|
||||
|
||||
public void setPkGroup(String pkGroup) {
|
||||
this.pkGroup = pkGroup;
|
||||
}
|
||||
|
||||
public String getPkOrg() {
|
||||
return pkOrg;
|
||||
}
|
||||
|
||||
public void setPkOrg(String pkOrg) {
|
||||
this.pkOrg = pkOrg;
|
||||
}
|
||||
|
||||
public String getTaxpayerid() {
|
||||
return taxpayerid;
|
||||
}
|
||||
|
||||
public void setTaxpayerid(String taxpayerid) {
|
||||
this.taxpayerid = taxpayerid;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,375 +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.masterData.dao.impl.MdmDaoImpl">
|
||||
|
||||
<resultMap id="get-MdmCustomerEntity-result" type="com.hzya.frame.plugin.masterData.entity.MdmEntity" >
|
||||
<result property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="documentRule" column="document_rule" jdbcType="VARCHAR"/>
|
||||
<result property="documentRuleNum" column="document_rule_num" jdbcType="INTEGER"/>
|
||||
<result property="dataStatus" column="data_status" jdbcType="VARCHAR"/>
|
||||
<result property="addStatus" column="add_status" jdbcType="VARCHAR"/>
|
||||
<result property="updateStatus" column="update_status" jdbcType="VARCHAR"/>
|
||||
<result property="deleteStatus" column="delete_status" jdbcType="VARCHAR"/>
|
||||
<result property="sorts" column="sorts" jdbcType="INTEGER"/>
|
||||
<result property="create_user_id" column="create_user_id" jdbcType="VARCHAR"/>
|
||||
<result property="create_time" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="modify_user_id" column="modify_user_id" jdbcType="VARCHAR"/>
|
||||
<result property="modify_time" column="modify_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="sts" column="sts" jdbcType="VARCHAR"/>
|
||||
<result property="org_id" column="org_id" jdbcType="VARCHAR"/>
|
||||
<result property="companyId" column="company_id" jdbcType="VARCHAR"/>
|
||||
<result property="code" column="code" jdbcType="VARCHAR"/>
|
||||
<result property="custprop" column="custprop" jdbcType="VARCHAR"/>
|
||||
<result property="custstate" column="custstate" jdbcType="VARCHAR"/>
|
||||
<result property="enablestate" column="enablestate" jdbcType="VARCHAR"/>
|
||||
<result property="name" column="name" jdbcType="VARCHAR"/>
|
||||
<result property="pkCountry" column="pk_country" jdbcType="VARCHAR"/>
|
||||
<result property="pkCustclass" column="pk_custclass" jdbcType="VARCHAR"/>
|
||||
<result property="pkGroup" column="pk_group" jdbcType="VARCHAR"/>
|
||||
<result property="pkOrg" column="pk_org" jdbcType="VARCHAR"/>
|
||||
<result property="taxpayerid" column="taxpayerid" jdbcType="VARCHAR"/>
|
||||
</resultMap>
|
||||
<!-- 查询的字段-->
|
||||
<sql id = "MdmCustomerEntity_Base_Column_List">
|
||||
id
|
||||
,document_rule
|
||||
,document_rule_num
|
||||
,data_status
|
||||
,add_status
|
||||
,update_status
|
||||
,delete_status
|
||||
,sorts
|
||||
,create_user_id
|
||||
,create_time
|
||||
,modify_user_id
|
||||
,modify_time
|
||||
,sts
|
||||
,org_id
|
||||
,company_id
|
||||
,code
|
||||
,custprop
|
||||
,custstate
|
||||
,enablestate
|
||||
,name
|
||||
,pk_country
|
||||
,pk_custclass
|
||||
,pk_group
|
||||
,pk_org
|
||||
,taxpayerid
|
||||
</sql>
|
||||
<!-- 查询 采用==查询 -->
|
||||
<select id="entity_list_base" resultMap="get-MdmCustomerEntity-result" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity">
|
||||
select
|
||||
<include refid="MdmCustomerEntity_Base_Column_List" />
|
||||
from mdm_customer
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||
<if test="documentRule != null and documentRule != ''"> and document_rule = #{documentRule} </if>
|
||||
<if test="documentRuleNum != null"> and document_rule_num = #{documentRuleNum} </if>
|
||||
<if test="dataStatus != null and dataStatus != ''"> and data_status = #{dataStatus} </if>
|
||||
<if test="addStatus != null and addStatus != ''"> and add_status = #{addStatus} </if>
|
||||
<if test="updateStatus != null and updateStatus != ''"> and update_status = #{updateStatus} </if>
|
||||
<if test="deleteStatus != null and deleteStatus != ''"> and delete_status = #{deleteStatus} </if>
|
||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||
<if test="create_user_id != null and create_user_id != ''"> and create_user_id = #{create_user_id} </if>
|
||||
<if test="create_time != null"> and create_time = #{create_time} </if>
|
||||
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </if>
|
||||
<if test="modify_time != null"> and modify_time = #{modify_time} </if>
|
||||
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||
<if test="org_id != null and org_id != ''"> and org_id = #{org_id} </if>
|
||||
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
|
||||
<if test="code != null and code != ''"> and code = #{code} </if>
|
||||
<if test="custprop != null and custprop != ''"> and custprop = #{custprop} </if>
|
||||
<if test="custstate != null and custstate != ''"> and custstate = #{custstate} </if>
|
||||
<if test="enablestate != null and enablestate != ''"> and enablestate = #{enablestate} </if>
|
||||
<if test="name != null and name != ''"> and name = #{name} </if>
|
||||
<if test="pkCountry != null and pkCountry != ''"> and pk_country = #{pkCountry} </if>
|
||||
<if test="pkCustclass != null and pkCustclass != ''"> and pk_custclass = #{pkCustclass} </if>
|
||||
<if test="pkGroup != null and pkGroup != ''"> and pk_group = #{pkGroup} </if>
|
||||
<if test="pkOrg != null and pkOrg != ''"> and pk_org = #{pkOrg} </if>
|
||||
<if test="taxpayerid != null and taxpayerid != ''"> and taxpayerid = #{taxpayerid} </if>
|
||||
and sts='Y'
|
||||
</trim>
|
||||
<if test=" sort == null or sort == ''.toString() "> order by sorts asc</if>
|
||||
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
|
||||
</select>
|
||||
|
||||
<!-- 查询符合条件的数量 -->
|
||||
<select id="entity_count" resultType="Integer" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity">
|
||||
select count(1) from mdm_customer
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||
<if test="documentRule != null and documentRule != ''"> and document_rule = #{documentRule} </if>
|
||||
<if test="documentRuleNum != null"> and document_rule_num = #{documentRuleNum} </if>
|
||||
<if test="dataStatus != null and dataStatus != ''"> and data_status = #{dataStatus} </if>
|
||||
<if test="addStatus != null and addStatus != ''"> and add_status = #{addStatus} </if>
|
||||
<if test="updateStatus != null and updateStatus != ''"> and update_status = #{updateStatus} </if>
|
||||
<if test="deleteStatus != null and deleteStatus != ''"> and delete_status = #{deleteStatus} </if>
|
||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||
<if test="create_user_id != null and create_user_id != ''"> and create_user_id = #{create_user_id} </if>
|
||||
<if test="create_time != null"> and create_time = #{create_time} </if>
|
||||
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id = #{modify_user_id} </if>
|
||||
<if test="modify_time != null"> and modify_time = #{modify_time} </if>
|
||||
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||
<if test="org_id != null and org_id != ''"> and org_id = #{org_id} </if>
|
||||
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
|
||||
<if test="code != null and code != ''"> and code = #{code} </if>
|
||||
<if test="custprop != null and custprop != ''"> and custprop = #{custprop} </if>
|
||||
<if test="custstate != null and custstate != ''"> and custstate = #{custstate} </if>
|
||||
<if test="enablestate != null and enablestate != ''"> and enablestate = #{enablestate} </if>
|
||||
<if test="name != null and name != ''"> and name = #{name} </if>
|
||||
<if test="pkCountry != null and pkCountry != ''"> and pk_country = #{pkCountry} </if>
|
||||
<if test="pkCustclass != null and pkCustclass != ''"> and pk_custclass = #{pkCustclass} </if>
|
||||
<if test="pkGroup != null and pkGroup != ''"> and pk_group = #{pkGroup} </if>
|
||||
<if test="pkOrg != null and pkOrg != ''"> and pk_org = #{pkOrg} </if>
|
||||
<if test="taxpayerid != null and taxpayerid != ''"> and taxpayerid = #{taxpayerid} </if>
|
||||
and sts='Y'
|
||||
</trim>
|
||||
<if test=" sort == null or sort == ''.toString() "> order by sorts asc</if>
|
||||
<if test=" sort !='' and sort!=null and order !='' and order!=null "> order by ${sort} ${order}</if>
|
||||
</select>
|
||||
|
||||
<!-- 分页查询列表 采用like格式 -->
|
||||
<select id="entity_list_like" resultMap="get-MdmCustomerEntity-result" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity">
|
||||
select
|
||||
<include refid="MdmCustomerEntity_Base_Column_List" />
|
||||
from mdm_customer
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </if>
|
||||
<if test="documentRule != null and documentRule != ''"> and document_rule like concat('%',#{documentRule},'%') </if>
|
||||
<if test="documentRuleNum != null"> and document_rule_num like concat('%',#{documentRuleNum},'%') </if>
|
||||
<if test="dataStatus != null and dataStatus != ''"> and data_status like concat('%',#{dataStatus},'%') </if>
|
||||
<if test="addStatus != null and addStatus != ''"> and add_status like concat('%',#{addStatus},'%') </if>
|
||||
<if test="updateStatus != null and updateStatus != ''"> and update_status like concat('%',#{updateStatus},'%') </if>
|
||||
<if test="deleteStatus != null and deleteStatus != ''"> and delete_status like concat('%',#{deleteStatus},'%') </if>
|
||||
<if test="sorts != null"> and sorts like concat('%',#{sorts},'%') </if>
|
||||
<if test="create_user_id != null and create_user_id != ''"> and create_user_id like concat('%',#{create_user_id},'%') </if>
|
||||
<if test="create_time != null"> and create_time like concat('%',#{create_time},'%') </if>
|
||||
<if test="modify_user_id != null and modify_user_id != ''"> and modify_user_id like concat('%',#{modify_user_id},'%') </if>
|
||||
<if test="modify_time != null"> and modify_time like concat('%',#{modify_time},'%') </if>
|
||||
<if test="sts != null and sts != ''"> and sts like concat('%',#{sts},'%') </if>
|
||||
<if test="org_id != null and org_id != ''"> and org_id like concat('%',#{org_id},'%') </if>
|
||||
<if test="companyId != null and companyId != ''"> and company_id like concat('%',#{companyId},'%') </if>
|
||||
<if test="code != null and code != ''"> and code like concat('%',#{code},'%') </if>
|
||||
<if test="custprop != null and custprop != ''"> and custprop like concat('%',#{custprop},'%') </if>
|
||||
<if test="custstate != null and custstate != ''"> and custstate like concat('%',#{custstate},'%') </if>
|
||||
<if test="enablestate != null and enablestate != ''"> and enablestate like concat('%',#{enablestate},'%') </if>
|
||||
<if test="name != null and name != ''"> and name like concat('%',#{name},'%') </if>
|
||||
<if test="pkCountry != null and pkCountry != ''"> and pk_country like concat('%',#{pkCountry},'%') </if>
|
||||
<if test="pkCustclass != null and pkCustclass != ''"> and pk_custclass like concat('%',#{pkCustclass},'%') </if>
|
||||
<if test="pkGroup != null and pkGroup != ''"> and pk_group like concat('%',#{pkGroup},'%') </if>
|
||||
<if test="pkOrg != null and pkOrg != ''"> and pk_org like concat('%',#{pkOrg},'%') </if>
|
||||
<if test="taxpayerid != null and taxpayerid != ''"> and taxpayerid like concat('%',#{taxpayerid},'%') </if>
|
||||
and sts='Y'
|
||||
</trim>
|
||||
<if test=" sort == null or sort == ''.toString() "> order by sorts asc</if>
|
||||
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
|
||||
</select>
|
||||
|
||||
<!-- 查询列表 字段采用or格式 -->
|
||||
<select id="MdmCustomerentity_list_or" resultMap="get-MdmCustomerEntity-result" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity">
|
||||
select
|
||||
<include refid="MdmCustomerEntity_Base_Column_List" />
|
||||
from mdm_customer
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> or id = #{id} </if>
|
||||
<if test="documentRule != null and documentRule != ''"> or document_rule = #{documentRule} </if>
|
||||
<if test="documentRuleNum != null"> or document_rule_num = #{documentRuleNum} </if>
|
||||
<if test="dataStatus != null and dataStatus != ''"> or data_status = #{dataStatus} </if>
|
||||
<if test="addStatus != null and addStatus != ''"> or add_status = #{addStatus} </if>
|
||||
<if test="updateStatus != null and updateStatus != ''"> or update_status = #{updateStatus} </if>
|
||||
<if test="deleteStatus != null and deleteStatus != ''"> or delete_status = #{deleteStatus} </if>
|
||||
<if test="sorts != null"> or sorts = #{sorts} </if>
|
||||
<if test="create_user_id != null and create_user_id != ''"> or create_user_id = #{create_user_id} </if>
|
||||
<if test="create_time != null"> or create_time = #{create_time} </if>
|
||||
<if test="modify_user_id != null and modify_user_id != ''"> or modify_user_id = #{modify_user_id} </if>
|
||||
<if test="modify_time != null"> or modify_time = #{modify_time} </if>
|
||||
<if test="sts != null and sts != ''"> or sts = #{sts} </if>
|
||||
<if test="org_id != null and org_id != ''"> or org_id = #{org_id} </if>
|
||||
<if test="companyId != null and companyId != ''"> or company_id = #{companyId} </if>
|
||||
<if test="code != null and code != ''"> or code = #{code} </if>
|
||||
<if test="custprop != null and custprop != ''"> or custprop = #{custprop} </if>
|
||||
<if test="custstate != null and custstate != ''"> or custstate = #{custstate} </if>
|
||||
<if test="enablestate != null and enablestate != ''"> or enablestate = #{enablestate} </if>
|
||||
<if test="name != null and name != ''"> or name = #{name} </if>
|
||||
<if test="pkCountry != null and pkCountry != ''"> or pk_country = #{pkCountry} </if>
|
||||
<if test="pkCustclass != null and pkCustclass != ''"> or pk_custclass = #{pkCustclass} </if>
|
||||
<if test="pkGroup != null and pkGroup != ''"> or pk_group = #{pkGroup} </if>
|
||||
<if test="pkOrg != null and pkOrg != ''"> or pk_org = #{pkOrg} </if>
|
||||
<if test="taxpayerid != null and taxpayerid != ''"> or taxpayerid = #{taxpayerid} </if>
|
||||
and sts='Y'
|
||||
</trim>
|
||||
<if test=" sort == null or sort == ''.toString() "> order by sorts asc</if>
|
||||
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
|
||||
</select>
|
||||
|
||||
<!--新增所有列-->
|
||||
<insert id="entity_insert" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity" keyProperty="id" useGeneratedKeys="true">
|
||||
insert into mdm_customer(
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="id != null and id != ''"> id , </if>
|
||||
<if test="documentRule != null and documentRule != ''"> document_rule , </if>
|
||||
<if test="documentRuleNum != null"> document_rule_num , </if>
|
||||
<if test="dataStatus != null and dataStatus != ''"> data_status , </if>
|
||||
<if test="addStatus != null and addStatus != ''"> add_status , </if>
|
||||
<if test="updateStatus != null and updateStatus != ''"> update_status , </if>
|
||||
<if test="deleteStatus != null and deleteStatus != ''"> delete_status , </if>
|
||||
<if test="sorts != null"> sorts , </if>
|
||||
<if test="create_user_id != null and create_user_id != ''"> create_user_id , </if>
|
||||
<if test="create_time != null"> create_time , </if>
|
||||
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id , </if>
|
||||
<if test="modify_time != null"> modify_time , </if>
|
||||
<if test="sts != null and sts != ''"> sts , </if>
|
||||
<if test="org_id != null and org_id != ''"> org_id , </if>
|
||||
<if test="companyId != null and companyId != ''"> company_id , </if>
|
||||
<if test="code != null and code != ''"> code , </if>
|
||||
<if test="custprop != null and custprop != ''"> custprop , </if>
|
||||
<if test="custstate != null and custstate != ''"> custstate , </if>
|
||||
<if test="enablestate != null and enablestate != ''"> enablestate , </if>
|
||||
<if test="name != null and name != ''"> name , </if>
|
||||
<if test="pkCountry != null and pkCountry != ''"> pk_country , </if>
|
||||
<if test="pkCustclass != null and pkCustclass != ''"> pk_custclass , </if>
|
||||
<if test="pkGroup != null and pkGroup != ''"> pk_group , </if>
|
||||
<if test="pkOrg != null and pkOrg != ''"> pk_org , </if>
|
||||
<if test="taxpayerid != null and taxpayerid != ''"> taxpayerid , </if>
|
||||
<if test="sts == null ">sts,</if>
|
||||
</trim>
|
||||
)values(
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="id != null and id != ''"> #{id} ,</if>
|
||||
<if test="documentRule != null and documentRule != ''"> #{documentRule} ,</if>
|
||||
<if test="documentRuleNum != null"> #{documentRuleNum} ,</if>
|
||||
<if test="dataStatus != null and dataStatus != ''"> #{dataStatus} ,</if>
|
||||
<if test="addStatus != null and addStatus != ''"> #{addStatus} ,</if>
|
||||
<if test="updateStatus != null and updateStatus != ''"> #{updateStatus} ,</if>
|
||||
<if test="deleteStatus != null and deleteStatus != ''"> #{deleteStatus} ,</if>
|
||||
<if test="sorts != null"> #{sorts} ,</if>
|
||||
<if test="create_user_id != null and create_user_id != ''"> #{create_user_id} ,</if>
|
||||
<if test="create_time != null"> #{create_time} ,</if>
|
||||
<if test="modify_user_id != null and modify_user_id != ''"> #{modify_user_id} ,</if>
|
||||
<if test="modify_time != null"> #{modify_time} ,</if>
|
||||
<if test="sts != null and sts != ''"> #{sts} ,</if>
|
||||
<if test="org_id != null and org_id != ''"> #{org_id} ,</if>
|
||||
<if test="companyId != null and companyId != ''"> #{companyId} ,</if>
|
||||
<if test="code != null and code != ''"> #{code} ,</if>
|
||||
<if test="custprop != null and custprop != ''"> #{custprop} ,</if>
|
||||
<if test="custstate != null and custstate != ''"> #{custstate} ,</if>
|
||||
<if test="enablestate != null and enablestate != ''"> #{enablestate} ,</if>
|
||||
<if test="name != null and name != ''"> #{name} ,</if>
|
||||
<if test="pkCountry != null and pkCountry != ''"> #{pkCountry} ,</if>
|
||||
<if test="pkCustclass != null and pkCustclass != ''"> #{pkCustclass} ,</if>
|
||||
<if test="pkGroup != null and pkGroup != ''"> #{pkGroup} ,</if>
|
||||
<if test="pkOrg != null and pkOrg != ''"> #{pkOrg} ,</if>
|
||||
<if test="taxpayerid != null and taxpayerid != ''"> #{taxpayerid} ,</if>
|
||||
<if test="sts == null ">'Y',</if>
|
||||
</trim>
|
||||
)
|
||||
</insert>
|
||||
<!-- 批量新增 -->
|
||||
<insert id="entityInsertBatch" keyProperty="id" useGeneratedKeys="true">
|
||||
insert into mdm_customer(document_rule, document_rule_num, data_status, add_status, update_status, delete_status, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, code, custprop, custstate, enablestate, name, pk_country, pk_custclass, pk_group, pk_org, taxpayerid, sts)
|
||||
values
|
||||
<foreach collection="entities" item="entity" separator=",">
|
||||
(#{entity.documentRule},#{entity.documentRuleNum},#{entity.dataStatus},#{entity.addStatus},#{entity.updateStatus},#{entity.deleteStatus},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId},#{entity.code},#{entity.custprop},#{entity.custstate},#{entity.enablestate},#{entity.name},#{entity.pkCountry},#{entity.pkCustclass},#{entity.pkGroup},#{entity.pkOrg},#{entity.taxpayerid}, 'Y')
|
||||
</foreach>
|
||||
</insert>
|
||||
<!-- 批量新增或者修改-->
|
||||
<insert id="entityInsertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
|
||||
insert into mdm_customer(document_rule, document_rule_num, data_status, add_status, update_status, delete_status, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, code, custprop, custstate, enablestate, name, pk_country, pk_custclass, pk_group, pk_org, taxpayerid)
|
||||
values
|
||||
<foreach collection="entities" item="entity" separator=",">
|
||||
(#{entity.documentRule},#{entity.documentRuleNum},#{entity.dataStatus},#{entity.addStatus},#{entity.updateStatus},#{entity.deleteStatus},#{entity.create_user_id},#{entity.create_time},#{entity.modify_user_id},#{entity.modify_time},#{entity.sts},#{entity.org_id},#{entity.companyId},#{entity.code},#{entity.custprop},#{entity.custstate},#{entity.enablestate},#{entity.name},#{entity.pkCountry},#{entity.pkCustclass},#{entity.pkGroup},#{entity.pkOrg},#{entity.taxpayerid})
|
||||
</foreach>
|
||||
on duplicate key update
|
||||
document_rule = values(document_rule),
|
||||
document_rule_num = values(document_rule_num),
|
||||
data_status = values(data_status),
|
||||
add_status = values(add_status),
|
||||
update_status = values(update_status),
|
||||
delete_status = values(delete_status),
|
||||
create_user_id = values(create_user_id),
|
||||
create_time = values(create_time),
|
||||
modify_user_id = values(modify_user_id),
|
||||
modify_time = values(modify_time),
|
||||
sts = values(sts),
|
||||
org_id = values(org_id),
|
||||
company_id = values(company_id),
|
||||
code = values(code),
|
||||
custprop = values(custprop),
|
||||
custstate = values(custstate),
|
||||
enablestate = values(enablestate),
|
||||
name = values(name),
|
||||
pk_country = values(pk_country),
|
||||
pk_custclass = values(pk_custclass),
|
||||
pk_group = values(pk_group),
|
||||
pk_org = values(pk_org),
|
||||
taxpayerid = values(taxpayerid)</insert>
|
||||
<!--通过主键修改方法-->
|
||||
<update id="entity_update" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity" >
|
||||
update mdm_customer set
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="documentRule != null and documentRule != ''"> document_rule = #{documentRule},</if>
|
||||
<if test="documentRuleNum != null"> document_rule_num = #{documentRuleNum},</if>
|
||||
<if test="dataStatus != null and dataStatus != ''"> data_status = #{dataStatus},</if>
|
||||
<if test="addStatus != null and addStatus != ''"> add_status = #{addStatus},</if>
|
||||
<if test="updateStatus != null and updateStatus != ''"> update_status = #{updateStatus},</if>
|
||||
<if test="deleteStatus != null and deleteStatus != ''"> delete_status = #{deleteStatus},</if>
|
||||
<if test="create_user_id != null and create_user_id != ''"> create_user_id = #{create_user_id},</if>
|
||||
<if test="create_time != null"> create_time = #{create_time},</if>
|
||||
<if test="modify_user_id != null and modify_user_id != ''"> modify_user_id = #{modify_user_id},</if>
|
||||
<if test="modify_time != null"> modify_time = #{modify_time},</if>
|
||||
<if test="sts != null and sts != ''"> sts = #{sts},</if>
|
||||
<if test="org_id != null and org_id != ''"> org_id = #{org_id},</if>
|
||||
<if test="companyId != null and companyId != ''"> company_id = #{companyId},</if>
|
||||
<if test="code != null and code != ''"> code = #{code},</if>
|
||||
<if test="custprop != null and custprop != ''"> custprop = #{custprop},</if>
|
||||
<if test="custstate != null and custstate != ''"> custstate = #{custstate},</if>
|
||||
<if test="enablestate != null and enablestate != ''"> enablestate = #{enablestate},</if>
|
||||
<if test="name != null and name != ''"> name = #{name},</if>
|
||||
<if test="pkCountry != null and pkCountry != ''"> pk_country = #{pkCountry},</if>
|
||||
<if test="pkCustclass != null and pkCustclass != ''"> pk_custclass = #{pkCustclass},</if>
|
||||
<if test="pkGroup != null and pkGroup != ''"> pk_group = #{pkGroup},</if>
|
||||
<if test="pkOrg != null and pkOrg != ''"> pk_org = #{pkOrg},</if>
|
||||
<if test="taxpayerid != null and taxpayerid != ''"> taxpayerid = #{taxpayerid},</if>
|
||||
</trim>
|
||||
where id = #{id}
|
||||
</update>
|
||||
<!-- 逻辑删除 -->
|
||||
<update id="entity_logicDelete" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity" >
|
||||
update mdm_customer set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
|
||||
where id = #{id}
|
||||
</update>
|
||||
<!-- 多条件逻辑删除 -->
|
||||
<update id="entity_logicDelete_Multi_Condition" parameterType = "com.hzya.frame.plugin.masterData.entity.MdmEntity" >
|
||||
update mdm_customer set sts= 'N' ,modify_time = #{modify_time},modify_user_id = #{modify_user_id}
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||
<if test="documentRule != null and documentRule != ''"> and document_rule = #{documentRule} </if>
|
||||
<if test="documentRuleNum != null"> and document_rule_num = #{documentRuleNum} </if>
|
||||
<if test="dataStatus != null and dataStatus != ''"> and data_status = #{dataStatus} </if>
|
||||
<if test="addStatus != null and addStatus != ''"> and add_status = #{addStatus} </if>
|
||||
<if test="updateStatus != null and updateStatus != ''"> and update_status = #{updateStatus} </if>
|
||||
<if test="deleteStatus != null and deleteStatus != ''"> and delete_status = #{deleteStatus} </if>
|
||||
<if test="sorts != null"> and sorts = #{sorts} </if>
|
||||
<if test="sts != null and sts != ''"> and sts = #{sts} </if>
|
||||
<if test="companyId != null and companyId != ''"> and company_id = #{companyId} </if>
|
||||
<if test="code != null and code != ''"> and code = #{code} </if>
|
||||
<if test="custprop != null and custprop != ''"> and custprop = #{custprop} </if>
|
||||
<if test="custstate != null and custstate != ''"> and custstate = #{custstate} </if>
|
||||
<if test="enablestate != null and enablestate != ''"> and enablestate = #{enablestate} </if>
|
||||
<if test="name != null and name != ''"> and name = #{name} </if>
|
||||
<if test="pkCountry != null and pkCountry != ''"> and pk_country = #{pkCountry} </if>
|
||||
<if test="pkCustclass != null and pkCustclass != ''"> and pk_custclass = #{pkCustclass} </if>
|
||||
<if test="pkGroup != null and pkGroup != ''"> and pk_group = #{pkGroup} </if>
|
||||
<if test="pkOrg != null and pkOrg != ''"> and pk_org = #{pkOrg} </if>
|
||||
<if test="taxpayerid != null and taxpayerid != ''"> and taxpayerid = #{taxpayerid} </if>
|
||||
and sts='Y'
|
||||
</trim>
|
||||
</update>
|
||||
<!--通过主键删除-->
|
||||
<delete id="entity_delete">
|
||||
delete from mdm_customer where id = #{id}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
package com.hzya.frame.plugin.masterData.plugin;
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.hzya.frame.base.PluginBaseEntity;
|
||||
import com.hzya.frame.sysnew.comparison.masterData.service.IMasterDataService;
|
||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
/**
|
||||
* 主数据同步
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-21 13:52:35
|
||||
*/
|
||||
public class MdmPluginInitializer extends PluginBaseEntity{
|
||||
Logger logger = LoggerFactory.getLogger(MdmPluginInitializer.class);
|
||||
@Autowired
|
||||
private IMasterDataService masterDataService;
|
||||
|
||||
@Override
|
||||
public void initialize() {
|
||||
logger.info(getPluginLabel() + "執行初始化方法initialize()");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void destroy() {
|
||||
logger.info(getPluginLabel() + "執行銷毀方法destroy()");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPluginId() {
|
||||
return "MdmCustomerPlugin";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPluginName() {
|
||||
return "MdmCustomerPlugin插件";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPluginLabel() {
|
||||
return "MdmCustomerPlugin";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getPluginType() {
|
||||
return "1";
|
||||
}
|
||||
@Override
|
||||
public JsonResultEntity executeBusiness(JSONObject requestJson) {
|
||||
try {
|
||||
logger.info("======开始执行主数据信息同步========");
|
||||
return masterDataService.queryArchives(requestJson);
|
||||
}catch (Exception e){
|
||||
logger.info("======执行主数据同步失败:{}========",e.getMessage());
|
||||
e.printStackTrace();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
package com.hzya.frame.plugin.masterData.service;
|
||||
|
||||
import com.hzya.frame.plugin.masterData.entity.MdmEntity;
|
||||
import com.hzya.frame.basedao.service.IBaseService;
|
||||
/**
|
||||
* 客户档案(MdmCustomer)表服务接口
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-21 13:52:35
|
||||
*/
|
||||
public interface IMdmService extends IBaseService<MdmEntity, String>{
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
package com.hzya.frame.plugin.masterData.service.impl;
|
||||
|
||||
import com.hzya.frame.plugin.masterData.entity.MdmEntity;
|
||||
import com.hzya.frame.plugin.masterData.dao.IMdmDao;
|
||||
import com.hzya.frame.plugin.masterData.service.IMdmService;
|
||||
import com.hzya.frame.plugin.masterData.service.IMdmService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import com.hzya.frame.basedao.service.impl.BaseService;
|
||||
/**
|
||||
* 客户档案(MdmCustomer)表服务实现类
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-21 13:52:35
|
||||
*/
|
||||
public class MdmServiceImpl extends BaseService<MdmEntity, String> implements IMdmService {
|
||||
|
||||
private IMdmDao mdmCustomerDao;
|
||||
|
||||
@Autowired
|
||||
public void setMdmCustomerDao(IMdmDao dao) {
|
||||
this.mdmCustomerDao = dao;
|
||||
this.dao = dao;
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -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> {
|
||||
}
|
|
@ -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 {
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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>
|
||||
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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> {
|
||||
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
|
@ -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
|
|
@ -1,27 +0,0 @@
|
|||
#######################本地环境#######################
|
||||
logging:
|
||||
#日志级别 指定目录级别
|
||||
level:
|
||||
root: info
|
||||
encodings: UTF-8
|
||||
file:
|
||||
# 日志保存路径
|
||||
path: D:\yongansystem\kangarooDataCenter\v3\logs
|
||||
spring:
|
||||
datasource:
|
||||
dynamic:
|
||||
datasource:
|
||||
master:
|
||||
# url: jdbc:mysql://ufidahz.com.cn:9096/businesscenternew?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
|
||||
# username: root
|
||||
# password: bd993088e8a7c3dc5f44441617f9b4bf
|
||||
# driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
|
||||
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
|
||||
username: root
|
||||
password: 62e4295b615a30dbf3b8ee96f41c820b
|
||||
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
|
||||
savefile:
|
||||
# 文件保存路径
|
||||
path: D:\yongansystem\kangarooDataCenter\v3\logs
|
||||
zt:
|
||||
url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
|
|
@ -1,82 +0,0 @@
|
|||
#######################本地环境#######################
|
||||
logging:
|
||||
#日志级别 指定目录级别
|
||||
level:
|
||||
root: info
|
||||
encodings: UTF-8
|
||||
file:
|
||||
# 日志保存路径
|
||||
path: /Users/apple/Desktop/log/local
|
||||
spring:
|
||||
data:
|
||||
mongodb:
|
||||
# host: 192.168.2.237
|
||||
# port: 27017
|
||||
# database: businesscenter
|
||||
# auto-index-creation: true
|
||||
# password: hzya1314
|
||||
# username: hzya
|
||||
flyway:
|
||||
# 启动flyway migration, 默认为true
|
||||
enabled: false
|
||||
datasource:
|
||||
dynamic:
|
||||
druid:
|
||||
filters: stat,log4j2
|
||||
datasource:
|
||||
master:
|
||||
# url: jdbc:dm://hzya.ufyct.com:9040?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
|
||||
# username: hzyazt
|
||||
# password: 62e4295b615a30dbf3b8ee96f41c820b
|
||||
# driver-class-name: dm.jdbc.driver.DmDriver
|
||||
# type: com.alibaba.druid.pool.DruidDataSource
|
||||
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
|
||||
username: root
|
||||
password: 62e4295b615a30dbf3b8ee96f41c820b
|
||||
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
|
||||
# url: jdbc:dm://hzya.ufyct.com:9040/businesscenter?zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8
|
||||
# url: jdbc:dm://hzya.ufyct.com:9040?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
|
||||
# username: hzyazt
|
||||
# password: 62e4295b615a30dbf3b8ee96f41c820b
|
||||
# driver-class-name: dm.jdbc.driver.DmDriver
|
||||
savefile:
|
||||
# 文件保存路径
|
||||
path: /Users/apple/Desktop/log/local
|
||||
tomcatpath: /Users/apple/Desktop/log/local
|
||||
pluginpath: /Users/apple/Desktop/log/local
|
||||
zt:
|
||||
url: http://127.0.0.1:10086/kangarooDataCenterV3/entranceController/externalCallInterface
|
||||
cbs8:
|
||||
appId: 1P4AGrpz
|
||||
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
|
||||
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
|
||||
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
|
||||
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
|
||||
# 这个私钥到时候上传到cbs,和下面到是同一对
|
||||
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
|
||||
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
|
||||
cbs_public_key: 0469146F06BF3B01236E84632441E826
|
||||
#电子回单下载临时存放位置
|
||||
elec_path: /Users/xiangerlin/Downloads/
|
||||
OA:
|
||||
data_source_code: yc_oa
|
||||
server:
|
||||
port: 10086
|
||||
|
||||
# mysqldump -d mylm -hhzya.ufyct.com -p9096 -uroot -phzya1314 >%dirName%\table_view.sql
|
||||
|
||||
|
||||
database:
|
||||
databaseName: businesscenter
|
||||
host: 192.168.2.237
|
||||
port: 3306
|
||||
username: root
|
||||
password: hzya@1314
|
||||
filePase: /Users/apple/Desktop/log
|
||||
fileName: data.sql
|
||||
#sftp:
|
||||
# host: 192.168.2.237
|
||||
# port: 9091
|
||||
# username: cs237
|
||||
# password: hzya@1314
|
||||
# filePase: /databaseBack
|
|
@ -1,90 +0,0 @@
|
|||
#logging:
|
||||
# #日志级别 指定目录级别
|
||||
# level:
|
||||
# root: info
|
||||
# encodings: UTF-8
|
||||
# file:
|
||||
# # 日志保存路径
|
||||
# path: /zt/log
|
||||
#spring:
|
||||
# flyway:
|
||||
# # 启动flyway migration, 默认为true
|
||||
# enabled: false
|
||||
# datasource:
|
||||
# dynamic:
|
||||
# druid:
|
||||
# filters: stat,log4j2
|
||||
# datasource:
|
||||
# master:
|
||||
# url: jdbc:dm://10.75.51.82:5238?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
|
||||
# username: businesscenter
|
||||
# password: 6842568689469adad597d144ee104063
|
||||
# driver-class-name: dm.jdbc.driver.DmDriver
|
||||
#savefile:
|
||||
# # 文件保存路径
|
||||
# path: /zt/file
|
||||
#公司mysql
|
||||
#ax:
|
||||
# url: http://127.0.0.1:9999/kangarooDataCenterV3/entranceController/externalCallInterface
|
||||
#logging:
|
||||
# #日志级别 指定目录级别warn
|
||||
# level:
|
||||
# root: info
|
||||
# encodings: UTF-8
|
||||
# file:
|
||||
# # 日志保存路径
|
||||
# path: /home/webservice/zt/log
|
||||
#spring:
|
||||
# datasource:
|
||||
# dynamic:
|
||||
# datasource:
|
||||
# master:
|
||||
# url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
|
||||
# username: root
|
||||
# password: 62e4295b615a30dbf3b8ee96f41c820b
|
||||
# driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
|
||||
#savefile:
|
||||
# # 文件保存路径
|
||||
# path: /home/webservice/zt/file
|
||||
|
||||
|
||||
#公司服务器达梦
|
||||
logging:
|
||||
#日志级别 指定目录级别
|
||||
level:
|
||||
root: info
|
||||
encodings: UTF-8
|
||||
file:
|
||||
# 日志保存路径
|
||||
path: /zt/log
|
||||
spring:
|
||||
flyway:
|
||||
# 启动flyway migration, 默认为true
|
||||
enabled: false
|
||||
datasource:
|
||||
dynamic:
|
||||
druid:
|
||||
filters: stat,log4j2
|
||||
datasource:
|
||||
master:
|
||||
url: jdbc:dm://ufidahz.com.cn:9040?schema=businesscenter&zeroDateTimeBehavior=convertToNull&useUnicode=true&characterEncoding=utf-8&compatibleMode=oracle
|
||||
username: hzyazt
|
||||
password: 62e4295b615a30dbf3b8ee96f41c820b
|
||||
driver-class-name: dm.jdbc.driver.DmDriver
|
||||
savefile:
|
||||
# 文件保存路径
|
||||
path: /zt/file
|
||||
cbs8:
|
||||
appId: 1P4AGrpz
|
||||
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
|
||||
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
|
||||
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
|
||||
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
|
||||
# 这个私钥到时候上传到cbs,和下面到是同一对
|
||||
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
|
||||
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
|
||||
cbs_public_key: 0469146F06BF3B01236E84632441E826
|
||||
#电子回单下载临时存放位置
|
||||
elec_path: /zt/elecfile
|
||||
OA:
|
||||
data_source_code: yc_oa
|
|
@ -1,31 +0,0 @@
|
|||
#######################本地环境#######################
|
||||
logging:
|
||||
#日志级别 指定目录级别
|
||||
level:
|
||||
root: info
|
||||
encodings: UTF-8
|
||||
file:
|
||||
# 日志保存路径
|
||||
path: /Users/xiangerlin/work/app/logs/yuecheng
|
||||
spring:
|
||||
datasource:
|
||||
dynamic:
|
||||
datasource:
|
||||
master:
|
||||
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
|
||||
username: root
|
||||
password: 62e4295b615a30dbf3b8ee96f41c820b
|
||||
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
|
||||
savefile:
|
||||
# 文件保存路径
|
||||
path: /Users/xiangerlin/work/app/logs/yuecheng
|
||||
cbs8:
|
||||
appId: 1P4AGrpz
|
||||
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
|
||||
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
|
||||
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
|
||||
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
|
||||
# 这个私钥到时候上传到cbs,和下面到是同一对
|
||||
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
|
||||
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
|
||||
cbs_public_key: 0469146F06BF3B01236E84632441E826F3067A6B93BC3839C836A06007869CD351FBBE388B51F742859388BBC1DE089923AAFBC69E448F15141DDF30EE6CE90185
|
|
@ -1,39 +0,0 @@
|
|||
#######################zqtlocal环境#######################
|
||||
logging:
|
||||
#日志级别 指定目录级别
|
||||
level:
|
||||
root: info
|
||||
encodings: UTF-8
|
||||
file:
|
||||
# 日志保存路径
|
||||
path: D:/local/logs/
|
||||
spring:
|
||||
datasource:
|
||||
dynamic:
|
||||
datasource:
|
||||
master:
|
||||
url: jdbc:mysql://ufidahz.com.cn:9014/businesscenter?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowLoadLocalInfile=false&autoReconnect=true&failOverReadOnly=false&connectTimeout=30000&socketTimeout=30000&autoReconnectForPools=true
|
||||
username: root
|
||||
password: 62e4295b615a30dbf3b8ee96f41c820b
|
||||
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
|
||||
savefile:
|
||||
# 文件保存路径
|
||||
path: D:/local/upload/
|
||||
pluginpath : D:/local/plugin/
|
||||
tomcatpath: E:\apache-tomcat-9.0.27\webapps\kangarooDataCenterV3\WEB-INF\classes\
|
||||
cbs8:
|
||||
appId: 1P4AGrpz
|
||||
appSecret: 2c2369ae5dc04382844bbe3a5abf39e1bea9cd3a
|
||||
url: https://cbs8-openapi-reprd.csuat.cmburl.cn
|
||||
# 测试用这个 这个是银行给的,和下面的公钥不是一对密钥
|
||||
ya_private_key: 83BA7EC821D35F4CB31FF9A51C1EFA520FC52AF828C2337F88E91CF119B07F44
|
||||
# 这个私钥到时候上传到cbs,和下面到是同一对
|
||||
#ya_private_key: e1eacfdee9b8d4184437d5a2071e17ce31befc3d93395f9f05709ed562e8dc46
|
||||
ya_public_key: 044fa399d2223760f17b81b863cb482b009294c4516f8a605dea1475ec09e720eaa98468715e5ad509a592a0b426061551c5a3df236966c23253a7d894eac0dcde
|
||||
cbs_public_key: 0469146F06BF3B01236E84632441E826
|
||||
#电子回单下载临时存放位置
|
||||
elec_path: /Users/xiangerlin/Downloads/
|
||||
OA:
|
||||
data_source_code: yc_oa
|
||||
zt:
|
||||
url: http://127.0.0.1:10086/kangarooDataCenterV3/entranceController/externalCallInterface
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<plugin>
|
||||
<id>BackUpDatabasePlugin</id>
|
||||
<name>BackUpDatabasePlugin插件</name>
|
||||
<category>20241021</category>
|
||||
</plugin>
|
|
@ -1,5 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
|
||||
<beans default-autowire="byName">
|
||||
<bean name="backUpDatabaseInitializer" class="com.hzya.frame.plugin.BackUpDatabase.plugin.BackUpDatabaseInitializer" />
|
||||
</beans>
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<plugin>
|
||||
<id>MdmPlugin</id>
|
||||
<name>MdmPlugin插件</name>
|
||||
<category>90000001</category>
|
||||
</plugin>
|
|
@ -1,5 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
|
||||
<beans default-autowire="byName">
|
||||
<bean name="mdmCustomerDao" class="com.hzya.frame.plugin.masterData.dao.impl.MdmDaoImpl" />
|
||||
</beans>
|
|
@ -1,5 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
|
||||
<beans default-autowire="byName">
|
||||
<bean name="mdmCustomerInitializer" class="com.hzya.frame.plugin.masterData.plugin.MdmPluginInitializer" />
|
||||
</beans>
|
|
@ -1,5 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
|
||||
<beans default-autowire="byName">
|
||||
<bean name="mdmCustomerService" class="com.hzya.frame.plugin.masterData.service.impl.MdmServiceImpl" />
|
||||
</beans>
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<plugin>
|
||||
<id>MdmModulePlugin</id>
|
||||
<name>MdmModulePlugin插件</name>
|
||||
<category>90000001</category>
|
||||
</plugin>
|
File diff suppressed because it is too large
Load Diff
|
@ -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;
|
||||
|
||||
|
|
@ -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;
|
||||
|
||||
|
|
@ -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;
|
||||
|
||||
|
|
@ -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;
|
||||
|
||||
|
|
@ -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 it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -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;
|
||||
|
||||
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -1,55 +0,0 @@
|
|||
package com.hzya.frame.datasource;
|
||||
|
||||
import com.alibaba.druid.pool.DruidDataSource;
|
||||
import com.baomidou.dynamic.datasource.DynamicRoutingDataSource;
|
||||
import com.hzya.frame.web.entity.BaseEntity;
|
||||
import com.hzya.frame.web.exception.BaseSystemException;
|
||||
import org.apache.ibatis.mapping.DatabaseIdProvider;
|
||||
import org.apache.ibatis.mapping.VendorDatabaseIdProvider;
|
||||
import org.apache.ibatis.session.SqlSession;
|
||||
import org.apache.ibatis.session.SqlSessionFactory;
|
||||
import org.mybatis.spring.SqlSessionFactoryBean;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Lazy;
|
||||
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import javax.sql.DataSource;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Properties;
|
||||
|
||||
/**
|
||||
* @Auther: xiang2lin
|
||||
* @Date: 2020/3/31 10:25
|
||||
* 数据源工具类
|
||||
*/
|
||||
@Component
|
||||
public class DataSourceUtil {
|
||||
@Bean
|
||||
public DatabaseIdProvider getDatabaseIdProvider() {
|
||||
//DBMS 后缀
|
||||
//Oracle oracle
|
||||
//DB2 db2
|
||||
//MSSQLServer mssql
|
||||
//MySQL mysql
|
||||
//PostgreSQL postgre
|
||||
//Firebird firebird
|
||||
//MaxDB maxdb
|
||||
//HSQL hsql
|
||||
//Derby derby
|
||||
//H2 h2
|
||||
//Sybase(1.0.43以后) sybase
|
||||
VendorDatabaseIdProvider dbProvider = new VendorDatabaseIdProvider();
|
||||
Properties setPro = new Properties();
|
||||
//此处可以添加其他的数据库型号.如MySQL这类厂商标识一定不要写错!!
|
||||
setPro.setProperty("MySQL", "mysql"); //MySQL必须这样写,但是mysql可以随意写,后面代码同此处.
|
||||
setPro.setProperty("Oracle", "oracle");
|
||||
setPro.setProperty("DM DBMS", "dm");
|
||||
dbProvider.setProperties(setPro);
|
||||
return dbProvider;
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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();
|
||||
}
|
|
@ -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);
|
||||
}
|
|
@ -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();
|
||||
}
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -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> {
|
||||
|
||||
}
|
||||
|
|
@ -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{
|
||||
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -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>
|
||||
|
|
@ -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>{
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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> {
|
||||
|
||||
}
|
||||
|
|
@ -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{
|
||||
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -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>{
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -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> {
|
||||
|
||||
}
|
||||
|
|
@ -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{
|
||||
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -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>
|
||||
|
|
@ -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>{
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -1,78 +0,0 @@
|
|||
package com.hzya.frame.mdm.entity;
|
||||
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MdmDataDto {
|
||||
|
||||
private String mdmId;
|
||||
private String id;
|
||||
private String tableName;
|
||||
private String documentRule;
|
||||
private Integer documentRuleNum;
|
||||
/**
|
||||
* 类型 1、主表 2、明细
|
||||
*/
|
||||
private String dbType;
|
||||
|
||||
private List<MdmDataFiledDto> mdmDataFiledDtos;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getTableName() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
public void setTableName(String tableName) {
|
||||
this.tableName = tableName;
|
||||
}
|
||||
|
||||
public List<MdmDataFiledDto> getMdmDataFiledDtos() {
|
||||
return mdmDataFiledDtos;
|
||||
}
|
||||
|
||||
public void setMdmDataFiledDtos(List<MdmDataFiledDto> mdmDataFiledDtos) {
|
||||
this.mdmDataFiledDtos = mdmDataFiledDtos;
|
||||
}
|
||||
|
||||
public String getDocumentRule() {
|
||||
return documentRule;
|
||||
}
|
||||
|
||||
public void setDocumentRule(String documentRule) {
|
||||
this.documentRule = documentRule;
|
||||
}
|
||||
|
||||
public Integer getDocumentRuleNum() {
|
||||
return documentRuleNum;
|
||||
}
|
||||
|
||||
public void setDocumentRuleNum(Integer documentRuleNum) {
|
||||
this.documentRuleNum = documentRuleNum;
|
||||
}
|
||||
|
||||
public String getDbType() {
|
||||
return dbType;
|
||||
}
|
||||
|
||||
public void setDbType(String dbType) {
|
||||
this.dbType = dbType;
|
||||
}
|
||||
|
||||
public String getMdmId() {
|
||||
return mdmId;
|
||||
}
|
||||
|
||||
public void setMdmId(String mdmId) {
|
||||
this.mdmId = mdmId;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
package com.hzya.frame.mdm.entity;
|
||||
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MdmDataFiledDto {
|
||||
|
||||
private String filedsName;
|
||||
private String filedsValue;
|
||||
|
||||
public String getFiledsName() {
|
||||
return filedsName;
|
||||
}
|
||||
|
||||
public void setFiledsName(String filedsName) {
|
||||
this.filedsName = filedsName;
|
||||
}
|
||||
|
||||
public String getFiledsValue() {
|
||||
return filedsValue;
|
||||
}
|
||||
|
||||
public void setFiledsValue(String filedsValue) {
|
||||
this.filedsValue = filedsValue;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
package com.hzya.frame.mdm.entity;
|
||||
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleDistribute.entity.MdmModuleDistributeEntity;
|
||||
import java.util.List;
|
||||
|
||||
public class MdmDistributeDto {
|
||||
|
||||
|
||||
//主数据编码
|
||||
private Long mdmCode;
|
||||
|
||||
private List<MdmModuleDistributeEntity> mdmModuleDistributeEntities;
|
||||
|
||||
public List<MdmModuleDistributeEntity> getMdmModuleDistributeEntities() {
|
||||
return mdmModuleDistributeEntities;
|
||||
}
|
||||
|
||||
public void setMdmModuleDistributeEntities(List<MdmModuleDistributeEntity> mdmModuleDistributeEntities) {
|
||||
this.mdmModuleDistributeEntities = mdmModuleDistributeEntities;
|
||||
}
|
||||
|
||||
public Long getMdmCode() {
|
||||
return mdmCode;
|
||||
}
|
||||
|
||||
public void setMdmCode(Long mdmCode) {
|
||||
this.mdmCode = mdmCode;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,236 +0,0 @@
|
|||
package com.hzya.frame.mdm.entity;
|
||||
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity;
|
||||
import com.hzya.frame.mdm.mdmTableCodeRule.entity.MdmTableCodeRuleEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MdmDto {
|
||||
|
||||
//主数据编码
|
||||
private Long mdmCode;
|
||||
//单据编码规则
|
||||
private List<MdmTableCodeRuleEntity> mdmTableCodeRuleEntityList;
|
||||
//字段规则
|
||||
private List<MdmModuleDbFiledsRuleEntity> mdmModuleDbFiledsRuleEntities;
|
||||
//主数据主表
|
||||
private MdmModuleDbEntity mainMdmModuleDb;
|
||||
//主数据子表
|
||||
private List<MdmModuleDbEntity> sublistMdmModuleDb;
|
||||
|
||||
|
||||
//id
|
||||
private String id;
|
||||
//id
|
||||
private String fieldId;
|
||||
//id
|
||||
private String dbId;
|
||||
//3、新增4、修改 5、查看
|
||||
private String showType;
|
||||
//分页
|
||||
private Integer pageNum;
|
||||
private Integer pageSize;
|
||||
/**
|
||||
* 显示字段
|
||||
*/
|
||||
private String viewFiled;
|
||||
/**
|
||||
* 上级id字段
|
||||
*/
|
||||
private String upIdFiled;
|
||||
//主数据名称
|
||||
private String mdmName;
|
||||
//主数据类型
|
||||
private String mdmType;
|
||||
//描述
|
||||
private String remark;
|
||||
//描述
|
||||
private String[] ids;
|
||||
|
||||
private String tableName;
|
||||
private String value;
|
||||
|
||||
private String label;
|
||||
private String lableValue;
|
||||
|
||||
private String upId;
|
||||
|
||||
public Long getMdmCode() {
|
||||
return mdmCode;
|
||||
}
|
||||
|
||||
public void setMdmCode(Long mdmCode) {
|
||||
this.mdmCode = mdmCode;
|
||||
}
|
||||
|
||||
public List<MdmTableCodeRuleEntity> getMdmTableCodeRuleEntityList() {
|
||||
return mdmTableCodeRuleEntityList;
|
||||
}
|
||||
|
||||
public void setMdmTableCodeRuleEntityList(List<MdmTableCodeRuleEntity> mdmTableCodeRuleEntityList) {
|
||||
this.mdmTableCodeRuleEntityList = mdmTableCodeRuleEntityList;
|
||||
}
|
||||
|
||||
public MdmModuleDbEntity getMainMdmModuleDb() {
|
||||
return mainMdmModuleDb;
|
||||
}
|
||||
|
||||
public void setMainMdmModuleDb(MdmModuleDbEntity mainMdmModuleDb) {
|
||||
this.mainMdmModuleDb = mainMdmModuleDb;
|
||||
}
|
||||
|
||||
public List<MdmModuleDbEntity> getSublistMdmModuleDb() {
|
||||
return sublistMdmModuleDb;
|
||||
}
|
||||
|
||||
public void setSublistMdmModuleDb(List<MdmModuleDbEntity> sublistMdmModuleDb) {
|
||||
this.sublistMdmModuleDb = sublistMdmModuleDb;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getShowType() {
|
||||
return showType;
|
||||
}
|
||||
|
||||
public void setShowType(String showType) {
|
||||
this.showType = showType;
|
||||
}
|
||||
|
||||
public Integer getPageNum() {
|
||||
return pageNum;
|
||||
}
|
||||
|
||||
public void setPageNum(Integer pageNum) {
|
||||
this.pageNum = pageNum;
|
||||
}
|
||||
|
||||
public Integer getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(Integer pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public String getViewFiled() {
|
||||
return viewFiled;
|
||||
}
|
||||
|
||||
public void setViewFiled(String viewFiled) {
|
||||
this.viewFiled = viewFiled;
|
||||
}
|
||||
|
||||
public String getUpIdFiled() {
|
||||
return upIdFiled;
|
||||
}
|
||||
|
||||
public void setUpIdFiled(String upIdFiled) {
|
||||
this.upIdFiled = upIdFiled;
|
||||
}
|
||||
|
||||
public String getMdmName() {
|
||||
return mdmName;
|
||||
}
|
||||
|
||||
public void setMdmName(String mdmName) {
|
||||
this.mdmName = mdmName;
|
||||
}
|
||||
|
||||
public String getMdmType() {
|
||||
return mdmType;
|
||||
}
|
||||
|
||||
public void setMdmType(String mdmType) {
|
||||
this.mdmType = mdmType;
|
||||
}
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String[] getIds() {
|
||||
return ids;
|
||||
}
|
||||
|
||||
public void setIds(String[] ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
|
||||
public String getTableName() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
public void setTableName(String tableName) {
|
||||
this.tableName = tableName;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
public String getLableValue() {
|
||||
return lableValue;
|
||||
}
|
||||
|
||||
public void setLableValue(String lableValue) {
|
||||
this.lableValue = lableValue;
|
||||
}
|
||||
|
||||
public String getUpId() {
|
||||
return upId;
|
||||
}
|
||||
|
||||
public void setUpId(String upId) {
|
||||
this.upId = upId;
|
||||
}
|
||||
|
||||
public List<MdmModuleDbFiledsRuleEntity> getMdmModuleDbFiledsRuleEntities() {
|
||||
return mdmModuleDbFiledsRuleEntities;
|
||||
}
|
||||
|
||||
public void setMdmModuleDbFiledsRuleEntities(List<MdmModuleDbFiledsRuleEntity> mdmModuleDbFiledsRuleEntities) {
|
||||
this.mdmModuleDbFiledsRuleEntities = mdmModuleDbFiledsRuleEntities;
|
||||
}
|
||||
|
||||
public String getFieldId() {
|
||||
return fieldId;
|
||||
}
|
||||
|
||||
public void setFieldId(String fieldId) {
|
||||
this.fieldId = fieldId;
|
||||
}
|
||||
|
||||
public String getDbId() {
|
||||
return dbId;
|
||||
}
|
||||
|
||||
public void setDbId(String dbId) {
|
||||
this.dbId = dbId;
|
||||
}
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,89 +0,0 @@
|
|||
package com.hzya.frame.mdm.entity;
|
||||
|
||||
|
||||
import com.hzya.frame.sys.entity.TemplateKeyValue;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MdmQuery {
|
||||
|
||||
//分页
|
||||
private Integer pageNum;
|
||||
//分页
|
||||
private Long mdmCode;
|
||||
private Integer pageSize;
|
||||
//表名
|
||||
private String tableName;
|
||||
//查询条件
|
||||
private List<TemplateKeyValue> queryCondition;
|
||||
//返回字段
|
||||
private List<String> returnField;
|
||||
//明细表查询条件
|
||||
private List<MdmQuery> detailQueryCondition;
|
||||
//小写字段
|
||||
private List<String> fields;
|
||||
|
||||
public Integer getPageNum() {
|
||||
return pageNum;
|
||||
}
|
||||
|
||||
public void setPageNum(Integer pageNum) {
|
||||
this.pageNum = pageNum;
|
||||
}
|
||||
|
||||
public Integer getPageSize() {
|
||||
return pageSize;
|
||||
}
|
||||
|
||||
public void setPageSize(Integer pageSize) {
|
||||
this.pageSize = pageSize;
|
||||
}
|
||||
|
||||
public String getTableName() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
public void setTableName(String tableName) {
|
||||
this.tableName = tableName;
|
||||
}
|
||||
|
||||
public List<TemplateKeyValue> getQueryCondition() {
|
||||
return queryCondition;
|
||||
}
|
||||
|
||||
public void setQueryCondition(List<TemplateKeyValue> queryCondition) {
|
||||
this.queryCondition = queryCondition;
|
||||
}
|
||||
|
||||
public List<String> getReturnField() {
|
||||
return returnField;
|
||||
}
|
||||
|
||||
public void setReturnField(List<String> returnField) {
|
||||
this.returnField = returnField;
|
||||
}
|
||||
|
||||
public List<MdmQuery> getDetailQueryCondition() {
|
||||
return detailQueryCondition;
|
||||
}
|
||||
|
||||
public void setDetailQueryCondition(List<MdmQuery> detailQueryCondition) {
|
||||
this.detailQueryCondition = detailQueryCondition;
|
||||
}
|
||||
|
||||
public Long getMdmCode() {
|
||||
return mdmCode;
|
||||
}
|
||||
|
||||
public void setMdmCode(Long mdmCode) {
|
||||
this.mdmCode = mdmCode;
|
||||
}
|
||||
|
||||
public List<String> getFields() {
|
||||
return fields;
|
||||
}
|
||||
|
||||
public void setFields(List<String> fields) {
|
||||
this.fields = fields;
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
package com.hzya.frame.mdm.entity;
|
||||
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleDistribute.entity.MdmModuleDistributeEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleSource.entity.MdmModuleSourceEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MdmSourceDto {
|
||||
|
||||
|
||||
//主数据编码
|
||||
private Long mdmCode;
|
||||
|
||||
private List<MdmModuleSourceEntity> mdmModuleSourceEntities;
|
||||
|
||||
|
||||
public List<MdmModuleSourceEntity> getMdmModuleSourceEntities() {
|
||||
return mdmModuleSourceEntities;
|
||||
}
|
||||
|
||||
public void setMdmModuleSourceEntities(List<MdmModuleSourceEntity> mdmModuleSourceEntities) {
|
||||
this.mdmModuleSourceEntities = mdmModuleSourceEntities;
|
||||
}
|
||||
|
||||
public Long getMdmCode() {
|
||||
return mdmCode;
|
||||
}
|
||||
|
||||
public void setMdmCode(Long mdmCode) {
|
||||
this.mdmCode = mdmCode;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,114 +0,0 @@
|
|||
package com.hzya.frame.mdm.entity;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModule.entity.MdmModuleEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleDbFiledsRule.entity.MdmModuleDbFiledsRuleEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleView.entity.MdmModuleViewEntity;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class MdmViewFiledVo {
|
||||
|
||||
//字段id
|
||||
private String id;
|
||||
//表名
|
||||
private String dbName;
|
||||
//类型 1、主表 2、明细
|
||||
private String dbType;
|
||||
//主数据模版ID
|
||||
private String mdmId;
|
||||
//模版数据库id
|
||||
private String dbId;
|
||||
//中文名
|
||||
private String chName;
|
||||
//英文名
|
||||
private String enName;
|
||||
//排序
|
||||
private Integer sorts;
|
||||
/**
|
||||
* 字段类型 1、BIGINT 2、DECIMAL 3、VARCHAR 4、DATETIME
|
||||
*/
|
||||
private String filedType;
|
||||
//字段规则
|
||||
private List<MdmModuleDbFiledsRuleEntity> ruleList;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getDbName() {
|
||||
return dbName;
|
||||
}
|
||||
|
||||
public void setDbName(String dbName) {
|
||||
this.dbName = dbName;
|
||||
}
|
||||
|
||||
public String getDbType() {
|
||||
return dbType;
|
||||
}
|
||||
|
||||
public void setDbType(String dbType) {
|
||||
this.dbType = dbType;
|
||||
}
|
||||
|
||||
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 getChName() {
|
||||
return chName;
|
||||
}
|
||||
|
||||
public void setChName(String chName) {
|
||||
this.chName = chName;
|
||||
}
|
||||
|
||||
public String getEnName() {
|
||||
return enName;
|
||||
}
|
||||
|
||||
public void setEnName(String enName) {
|
||||
this.enName = enName;
|
||||
}
|
||||
|
||||
public List<MdmModuleDbFiledsRuleEntity> getRuleList() {
|
||||
return ruleList;
|
||||
}
|
||||
|
||||
public void setRuleList(List<MdmModuleDbFiledsRuleEntity> ruleList) {
|
||||
this.ruleList = ruleList;
|
||||
}
|
||||
|
||||
public Integer getSorts() {
|
||||
return sorts;
|
||||
}
|
||||
|
||||
public void setSorts(Integer sorts) {
|
||||
this.sorts = sorts;
|
||||
}
|
||||
|
||||
public String getFiledType() {
|
||||
return filedType;
|
||||
}
|
||||
|
||||
public void setFiledType(String filedType) {
|
||||
this.filedType = filedType;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,64 +0,0 @@
|
|||
package com.hzya.frame.mdm.entity;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.hzya.frame.mdm.mdmModule.entity.MdmModuleEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleView.entity.MdmModuleViewEntity;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public class MdmViewVo {
|
||||
|
||||
private String id;
|
||||
//模版信息
|
||||
private MdmModuleEntity mdmModuleEntity;
|
||||
//模版展示信息
|
||||
private MdmModuleViewEntity mdmModuleViewEntity;
|
||||
//查询条件
|
||||
private List<MdmViewFiledVo> queryList;
|
||||
//列表
|
||||
private List<MdmViewFiledVo> listList;
|
||||
|
||||
public List<MdmViewFiledVo> getQueryList() {
|
||||
return queryList;
|
||||
}
|
||||
|
||||
public void setQueryList(List<MdmViewFiledVo> queryList) {
|
||||
this.queryList = queryList;
|
||||
}
|
||||
|
||||
public List<MdmViewFiledVo> getListList() {
|
||||
return listList;
|
||||
}
|
||||
|
||||
public void setListList(List<MdmViewFiledVo> listList) {
|
||||
this.listList = listList;
|
||||
}
|
||||
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public MdmModuleEntity getMdmModuleEntity() {
|
||||
return mdmModuleEntity;
|
||||
}
|
||||
|
||||
public void setMdmModuleEntity(MdmModuleEntity mdmModuleEntity) {
|
||||
this.mdmModuleEntity = mdmModuleEntity;
|
||||
}
|
||||
|
||||
public MdmModuleViewEntity getMdmModuleViewEntity() {
|
||||
return mdmModuleViewEntity;
|
||||
}
|
||||
|
||||
public void setMdmModuleViewEntity(MdmModuleViewEntity mdmModuleViewEntity) {
|
||||
this.mdmModuleViewEntity = mdmModuleViewEntity;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModule.dao;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.hzya.frame.mdm.entity.MdmDataDto;
|
||||
import com.hzya.frame.mdm.entity.MdmDto;
|
||||
import com.hzya.frame.mdm.entity.MdmFiledsRuleDto;
|
||||
import com.hzya.frame.mdm.entity.MdmQuery;
|
||||
import com.hzya.frame.mdm.mdmModule.entity.MdmModuleEntity;
|
||||
import com.hzya.frame.basedao.dao.IBaseDao;
|
||||
import com.hzya.frame.mdm.mdmModuleDbFileds.entity.MdmModuleDbFiledsEntity;
|
||||
import com.hzya.frame.sys.entity.FormmainDeleteDto;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 主数据模版(mdm_module: table)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-03 08:46:29
|
||||
*/
|
||||
public interface IMdmModuleDao extends IBaseDao<MdmModuleEntity, String> {
|
||||
|
||||
List<MdmModuleEntity> queryMdm(MdmModuleEntity entity);
|
||||
|
||||
MdmModuleEntity getByMdmCode(Long mdmCode);
|
||||
|
||||
Integer checkTable(Map<String, String> maps);
|
||||
Integer createTable(Map<String, Object> maps);
|
||||
Integer alterTable(Map<String, Object> maps);
|
||||
Integer alterTableField(MdmModuleDbFiledsEntity entity);
|
||||
Integer alterTableName(Map<String, String> maps);
|
||||
List<HashMap<String, Object>> queryMdmShowData(MdmQuery entity);
|
||||
List<HashMap<String, Object>> queryTemplateDataMore(MdmDto entity);
|
||||
HashMap<String, Object> queryTemplateDataOne(MdmDto entity);
|
||||
Integer checkData(Map<String, String> map);
|
||||
Integer updateForm(MdmDataDto mdmDataDto);
|
||||
Integer saveForm(MdmDataDto mdmDataDto);
|
||||
Integer deleteTemplateById(FormmainDeleteDto formmainDeleteDto);
|
||||
Integer deleteChilder(FormmainDeleteDto formmainDeleteDto);
|
||||
List<HashMap<String, Object>> querySelectData(MdmDto entity);
|
||||
|
||||
List<HashMap<String, Object>> queryDataAll(MdmDto entity);
|
||||
|
||||
Integer deleteMdmModuleEntity(MdmModuleEntity entity);
|
||||
|
||||
Integer queryMainCount(MdmQuery mdmQuery);
|
||||
|
||||
Integer deleteTable(Map<String, Object> maps);
|
||||
|
||||
|
||||
JSONObject queryMdmST(Map<String, Object> maps);
|
||||
List<JSONObject> queryMdmSTDetail(Map<String, Object> maps);
|
||||
|
||||
List<JSONObject> queryMdmSTs(Map<String, Object> map);
|
||||
|
||||
void updateMdmSTs(Map<String, Object> updateMap);
|
||||
/****
|
||||
* 查询主数据字段
|
||||
* @content:
|
||||
* @author 👻👻👻👻👻👻👻👻 gjh
|
||||
* @date 2024-06-27 16:26
|
||||
* @param
|
||||
* @return java.util.List<java.lang.Object>
|
||||
**/
|
||||
List<String> queryMdMFields(Map<String, Object> maps);
|
||||
|
||||
void updataTreeUpData(Map<String, String> updateMaps);
|
||||
|
||||
void updataTreeUpDataDetail(Map<String, String> updateMaps);
|
||||
|
||||
MdmFiledsRuleDto queryDataId(MdmFiledsRuleDto mdmFiledsRuleDto);
|
||||
}
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModule.dao.impl;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||
import com.hzya.frame.mdm.entity.MdmDataDto;
|
||||
import com.hzya.frame.mdm.entity.MdmDto;
|
||||
import com.hzya.frame.mdm.entity.MdmFiledsRuleDto;
|
||||
import com.hzya.frame.mdm.entity.MdmQuery;
|
||||
import com.hzya.frame.mdm.mdmModule.dao.IMdmModuleDao;
|
||||
import com.hzya.frame.mdm.mdmModule.entity.MdmModuleEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleDbFileds.entity.MdmModuleDbFiledsEntity;
|
||||
import com.hzya.frame.sys.entity.FormmainDeleteDto;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 主数据模版(MdmModule)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-03 08:46:29
|
||||
*/
|
||||
@Repository(value = "MdmModuleDaoImpl")
|
||||
public class MdmModuleDaoImpl extends MybatisGenericDao<MdmModuleEntity, String> implements IMdmModuleDao{
|
||||
|
||||
@Override
|
||||
public List<MdmModuleEntity> queryMdm(MdmModuleEntity entity) {
|
||||
List<MdmModuleEntity> o = (List<MdmModuleEntity>) super.selectList(getSqlIdPrifx() + "queryMdm", entity);
|
||||
return o;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public MdmModuleEntity getByMdmCode(Long mdmCode) {
|
||||
MdmModuleEntity mdmModuleEntity = (MdmModuleEntity) super.selectOne(getSqlIdPrifx() + "getByMdmCode",mdmCode);
|
||||
return mdmModuleEntity;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer checkTable(Map<String, String> maps) {
|
||||
Integer o = (Integer) super.selectOne(getSqlIdPrifx() + "checkTable", maps);
|
||||
return o;
|
||||
|
||||
}
|
||||
@Override
|
||||
public List<HashMap<String, Object>> queryDataAll(MdmDto entity) {
|
||||
List<HashMap<String, Object>> o = (List<HashMap<String, Object>>) super.selectList(getSqlIdPrifx() + "queryDataAll", entity);
|
||||
return o;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer deleteMdmModuleEntity(MdmModuleEntity entity) {
|
||||
Integer o = (Integer) super.delete(getSqlIdPrifx() + "deleteMdmModuleEntity", entity);
|
||||
return o;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer queryMainCount(MdmQuery entity) {
|
||||
Integer o = (Integer) super.getCount(getSqlIdPrifx() + "queryMainCount", entity);
|
||||
return o;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer checkData(Map<String, String> maps) {
|
||||
Integer o = (Integer) super.selectOne(getSqlIdPrifx() + "checkData", maps);
|
||||
return o;
|
||||
|
||||
}
|
||||
@Override
|
||||
public Integer updateForm(MdmDataDto mdmDataDto) {
|
||||
Integer o = super.update(getSqlIdPrifx() + "updateForm", mdmDataDto);
|
||||
return o;
|
||||
|
||||
}
|
||||
@Override
|
||||
public List<HashMap<String, Object>> querySelectData(MdmDto entity) {
|
||||
List<HashMap<String, Object>> o = (List<HashMap<String, Object>>) super.selectList(getSqlIdPrifx() + "querySelectData", entity);
|
||||
return o;
|
||||
|
||||
}
|
||||
@Override
|
||||
public Integer deleteChilder(FormmainDeleteDto entity) {
|
||||
Integer o = super.delete(getSqlIdPrifx() + "deleteChilder", entity);
|
||||
return o;
|
||||
|
||||
}
|
||||
@Override
|
||||
public Integer deleteTemplateById(FormmainDeleteDto entity) {
|
||||
Integer o = super.delete(getSqlIdPrifx() + "deleteTemplateById", entity);
|
||||
return o;
|
||||
|
||||
}
|
||||
@Override
|
||||
public Integer saveForm(MdmDataDto mdmDataDto) {
|
||||
Integer o = super.update(getSqlIdPrifx() + "saveForm", mdmDataDto);
|
||||
return o;
|
||||
|
||||
}
|
||||
@Override
|
||||
public List<HashMap<String, Object>> queryTemplateDataMore(MdmDto entity) {
|
||||
List<HashMap<String, Object>> o = (List<HashMap<String, Object>>) super.selectList(getSqlIdPrifx() + "queryTemplateDataMore", entity);
|
||||
return o;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public HashMap<String, Object> queryTemplateDataOne(MdmDto entity) {
|
||||
HashMap<String, Object> o = (HashMap<String, Object>) super.selectOne(getSqlIdPrifx() + "queryTemplateDataOne", entity);
|
||||
return o;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<HashMap<String, Object>> queryMdmShowData(MdmQuery entity) {
|
||||
//HashMap<String, Object> maps = new HashMap<>();
|
||||
//maps.put("tableName",entity.getTableName());
|
||||
//List<String> fields = queryMdMFields(maps);
|
||||
//entity.setFields(fields);
|
||||
List<HashMap<String, Object>> o = (List<HashMap<String, Object>>) super.selectList(getSqlIdPrifx() + "queryMdmShowData", entity);
|
||||
return o;
|
||||
}
|
||||
@Override
|
||||
public Integer createTable(Map<String, Object> maps) {
|
||||
Integer o = (Integer) super.selectOne(getSqlIdPrifx() + "createTable", maps);
|
||||
return o;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer deleteTable(Map<String, Object> maps) {
|
||||
Integer o = (Integer) super.delete(getSqlIdPrifx() + "deleteTable", maps);
|
||||
return o;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public Integer alterTable(Map<String, Object> maps) {
|
||||
Integer o = (Integer) super.selectOne(getSqlIdPrifx() + "alterTable", maps);
|
||||
return o;
|
||||
}
|
||||
@Override
|
||||
public Integer alterTableField(MdmModuleDbFiledsEntity entity) {
|
||||
Integer o = (Integer) super.selectOne(getSqlIdPrifx() + "alterTableField", entity);
|
||||
return o;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Integer alterTableName(Map<String, String> maps) {
|
||||
Integer o = (Integer) super.selectOne(getSqlIdPrifx() + "alterTableName", maps);
|
||||
return o;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public JSONObject queryMdmST(Map<String, Object> maps) {
|
||||
//List<String> fields = queryMdMFields(maps);
|
||||
//maps.put("fields",fields);
|
||||
JSONObject o = (JSONObject) super.selectOne(getSqlIdPrifx() + "queryMdmST", maps);
|
||||
return o;
|
||||
}
|
||||
@Override
|
||||
public List<JSONObject> queryMdmSTs(Map<String, Object> maps) {
|
||||
List<JSONObject> o = (List<JSONObject>) super.selectList(getSqlIdPrifx() + "queryMdmST", maps);
|
||||
return o;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateMdmSTs(Map<String, Object> maps) {
|
||||
super.update(getSqlIdPrifx() + "updateMdmSTs", maps);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updataTreeUpData(Map<String, String> maps) {
|
||||
super.update(getSqlIdPrifx() + "updataTreeUpData", maps);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updataTreeUpDataDetail(Map<String, String> maps) {
|
||||
super.update(getSqlIdPrifx() + "updataTreeUpDataDetail", maps);
|
||||
}
|
||||
|
||||
@Override
|
||||
public MdmFiledsRuleDto queryDataId(MdmFiledsRuleDto mdmFiledsRuleDto) {
|
||||
MdmFiledsRuleDto o = (MdmFiledsRuleDto) super.selectOne(getSqlIdPrifx() + "queryDataId", mdmFiledsRuleDto);
|
||||
return o;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> queryMdMFields(Map<String, Object> maps) {
|
||||
List<String> o = (List<String>) super.selectList(getSqlIdPrifx() + "queryMdMFields", maps);
|
||||
return o;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<JSONObject> queryMdmSTDetail(Map<String, Object> maps) {
|
||||
//List<String> fields = queryMdMFields(maps);
|
||||
//maps.put("fields", fields );
|
||||
List<JSONObject> o = (List<JSONObject>) super.selectList(getSqlIdPrifx() + "queryMdmSTDetail", maps);
|
||||
return o;
|
||||
}
|
||||
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -1,400 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModule.service;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.hzya.frame.mdm.mdmModule.entity.MdmModuleEntity;
|
||||
import com.hzya.frame.basedao.service.IBaseService;
|
||||
import com.hzya.frame.web.entity.JsonResultEntity;
|
||||
|
||||
/**
|
||||
* 主数据模版(MdmModule)表服务接口
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-03 08:46:29
|
||||
*/
|
||||
public interface IMdmModuleService extends IBaseService<MdmModuleEntity, String>{
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 查询所有主数据
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdm(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 删除主数据
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity deleteMdm(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-基本信息获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity getMdm(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-基本信息新增
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveMdm(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-基本信息修改(同步修改菜单名称)
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity updateMdm(JSONObject jsonObject);
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-单据规则获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity getMdmTableCodeRule(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-单据规则新增或修改
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveOrUpdateMdmTableCodeRule(JSONObject jsonObject);
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmDb(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表新增
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveMdmDb(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表修改
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity updateMdmDb(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表删除
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity deleteMdmDb(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表字段获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmDbField(JSONObject jsonObject);
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表字段明细
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmDbFieldDetail(JSONObject jsonObject);
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表字段新增
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveMdmDbField(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表字段修改
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity updateMdmDbField(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表字段删除
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity deleteMdmDbField(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表字段规则获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmDbFieldRule(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-数据表字段规则修改
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity updateMdmDbFieldRule(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-显示信息-显示类型获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmView(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-显示信息-显示类型保存
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveMdmView(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-显示信息-显示类型修改
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity updateMdmView(JSONObject jsonObject);
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-显示信息-显示字段获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmViewField(JSONObject jsonObject);
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-显示信息-显示字段设置保存
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveOrUpdateMdmViewField(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-显示信息-显示按钮获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmViewButton(JSONObject jsonObject);
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-显示信息-显示按钮保存
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveOrUpdateMdmViewButton(JSONObject jsonObject);
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据来源-列表获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmSource(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据来源保存
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveMdmSource(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据来源获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity getMdmSource(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据来源修改
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity updateMdmSource(JSONObject jsonObject);
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据来源删除
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity deleteMdmSource(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-分发设置-列表获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmDistribute(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-分发设置保存
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity saveMdmDistribute(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-分发设置获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity getMdmDistribute(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-分发设置修改
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity updateMdmDistribute(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-分发设置删除
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity deleteMdmDistribute(JSONObject jsonObject);
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-写入日志-列表获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmOptionLogPage(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-下发日志-列表获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmDistributeLogPage(JSONObject jsonObject);
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-服务获取(只获取主表)
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmService(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-服务字段获取(只获取主表)
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmServiceField(JSONObject jsonObject);
|
||||
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-分发-只获取主表
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmMainDB(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-数据源-只获取主表字段
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmMainDBField(JSONObject jsonObject);
|
||||
|
||||
/**
|
||||
* @Author lvleigang
|
||||
* @Description 主数据-分发设置-列表获取
|
||||
* @Date 11:43 上午 2024/6/11
|
||||
* @param jsonObject
|
||||
* @return com.hzya.frame.web.entity.JsonResultEntity
|
||||
**/
|
||||
JsonResultEntity queryMdmDistributeByMdmCode(JSONObject jsonObject);
|
||||
}
|
File diff suppressed because it is too large
Load Diff
|
@ -1,23 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleDb.dao;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity;
|
||||
import com.hzya.frame.basedao.dao.IBaseDao;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 模版数据库表(mdm_module_db: table)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-03 08:46:48
|
||||
*/
|
||||
public interface IMdmModuleDbDao extends IBaseDao<MdmModuleDbEntity, String> {
|
||||
HashMap<String, Object> getServiceDataById(Map<String, Object> queryData);
|
||||
List<HashMap<String, Object>> getServiceByFormmainId(Map<String, Object> queryData);
|
||||
List<HashMap<String, Object>> getServiceByDistributeId(Map<String, Object> queryData);
|
||||
|
||||
int deleteMdmModuleDb(MdmModuleDbEntity mdmModuleDbEntity);
|
||||
}
|
||||
|
|
@ -1,47 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleDb.dao.impl;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleDb.dao.IMdmModuleDbDao;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* 模版数据库表(MdmModuleDb)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-03 08:46:50
|
||||
*/
|
||||
@Repository(value = "MdmModuleDbDaoImpl")
|
||||
public class MdmModuleDbDaoImpl extends MybatisGenericDao<MdmModuleDbEntity, String> implements IMdmModuleDbDao{
|
||||
@Override
|
||||
public HashMap<String, Object> getServiceDataById(Map<String, Object> maps) {
|
||||
HashMap<String, Object> o = (HashMap<String, Object>) super.selectOne(getSqlIdPrifx() + "getServiceDataById", maps);
|
||||
return o;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<HashMap<String, Object>> getServiceByFormmainId(Map<String, Object> maps) {
|
||||
List<HashMap<String, Object>> o = (List<HashMap<String, Object>>) super.selectList(getSqlIdPrifx() + "getServiceByFormmainId", maps);
|
||||
return o;
|
||||
|
||||
}
|
||||
@Override
|
||||
public List<HashMap<String, Object>> getServiceByDistributeId(Map<String, Object> maps) {
|
||||
List<HashMap<String, Object>> o = (List<HashMap<String, Object>>) super.selectList(getSqlIdPrifx() + "getServiceByDistributeId", maps);
|
||||
return o;
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public int deleteMdmModuleDb(MdmModuleDbEntity entity) {
|
||||
Integer o = (Integer) super.delete(getSqlIdPrifx() + "deleteMdmModuleDb", entity);
|
||||
return o;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,322 +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.mdmModuleDb.dao.impl.MdmModuleDbDaoImpl">
|
||||
|
||||
<resultMap id="get-MdmModuleDbEntity-result" type="com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
<result property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="mdmId" column="mdm_id" jdbcType="VARCHAR"/>
|
||||
<result property="dbName" column="db_name" jdbcType="VARCHAR"/>
|
||||
<result property="dbType" column="db_type" jdbcType="VARCHAR"/>
|
||||
<result property="remark" column="remark" 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="MdmModuleDbEntity_Base_Column_List">
|
||||
id
|
||||
,mdm_id
|
||||
,db_name
|
||||
,db_type
|
||||
,remark
|
||||
,sorts
|
||||
,create_user_id
|
||||
,create_time
|
||||
,modify_user_id
|
||||
,modify_time
|
||||
,sts
|
||||
,org_id
|
||||
,company_id
|
||||
</sql>
|
||||
<!-- 查询 采用==查询 -->
|
||||
<select id="entity_list_base" resultMap="get-MdmModuleDbEntity-result"
|
||||
parameterType="com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
select
|
||||
<include refid="MdmModuleDbEntity_Base_Column_List"/>
|
||||
from mdm_module_db
|
||||
<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="dbName != null and dbName != ''">and db_name = #{dbName}</if>
|
||||
<if test="dbType != null and dbType != ''">and db_type = #{dbType}</if>
|
||||
<if test="remark != null and remark != ''">and remark = #{remark}</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.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
select count(1) from mdm_module_db
|
||||
<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="dbName != null and dbName != ''">and db_name = #{dbName}</if>
|
||||
<if test="dbType != null and dbType != ''">and db_type = #{dbType}</if>
|
||||
<if test="remark != null and remark != ''">and remark = #{remark}</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-MdmModuleDbEntity-result"
|
||||
parameterType="com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
select
|
||||
<include refid="MdmModuleDbEntity_Base_Column_List"/>
|
||||
from mdm_module_db
|
||||
<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="dbName != null and dbName != ''">and db_name like concat('%',#{dbName},'%')</if>
|
||||
<if test="dbType != null and dbType != ''">and db_type like concat('%',#{dbType},'%')</if>
|
||||
<if test="remark != null and remark != ''">and remark like concat('%',#{remark},'%')</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="MdmModuleDbentity_list_or" resultMap="get-MdmModuleDbEntity-result"
|
||||
parameterType="com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
select
|
||||
<include refid="MdmModuleDbEntity_Base_Column_List"/>
|
||||
from mdm_module_db
|
||||
<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="dbName != null and dbName != ''">or db_name = #{dbName}</if>
|
||||
<if test="dbType != null and dbType != ''">or db_type = #{dbType}</if>
|
||||
<if test="remark != null and remark != ''">or remark = #{remark}</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.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
insert into mdm_module_db(
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="id != null and id != ''">id ,</if>
|
||||
<if test="mdmId != null and mdmId != ''">mdm_id ,</if>
|
||||
<if test="dbName != null and dbName != ''">db_name ,</if>
|
||||
<if test="dbType != null and dbType != ''">db_type ,</if>
|
||||
<if test="remark != null and remark != ''">remark ,</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="dbName != null and dbName != ''">#{dbName} ,</if>
|
||||
<if test="dbType != null and dbType != ''">#{dbType} ,</if>
|
||||
<if test="remark != null and remark != ''">#{remark} ,</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(mdm_id, db_name, db_type, remark, 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.dbName},#{entity.dbType},#{entity.remark},#{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(mdm_id, db_name, db_type, remark, 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.dbName},#{entity.dbType},#{entity.remark},#{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),
|
||||
db_name = values(db_name),
|
||||
db_type = values(db_type),
|
||||
remark = values(remark),
|
||||
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.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
update mdm_module_db set
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="mdmId != null and mdmId != ''">mdm_id = #{mdmId},</if>
|
||||
<if test="dbName != null and dbName != ''">db_name = #{dbName},</if>
|
||||
<if test="dbType != null and dbType != ''">db_type = #{dbType},</if>
|
||||
<if test="remark != null and remark != ''">remark = #{remark},</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.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
update mdm_module_db 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.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
update mdm_module_db 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="dbName != null and dbName != ''">and db_name = #{dbName}</if>
|
||||
<if test="dbType != null and dbType != ''">and db_type = #{dbType}</if>
|
||||
<if test="remark != null and remark != ''">and remark = #{remark}</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 where id = #{id}
|
||||
</delete>
|
||||
<select id="getServiceDataById" resultType="java.util.HashMap" parameterType="java.util.HashMap">
|
||||
select
|
||||
*
|
||||
from ${tableName}
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="detailFlag">
|
||||
and formmain_id = #{id}
|
||||
</if>
|
||||
<if test="!detailFlag">
|
||||
and id = #{id}
|
||||
</if>
|
||||
and data_status != 'N'
|
||||
and sts = 'Y'
|
||||
</trim>
|
||||
</select>
|
||||
|
||||
<!-- 分页查询列表 采用like格式 -->
|
||||
<select id="getServiceByFormmainId" resultType="java.util.HashMap" parameterType="java.util.HashMap">
|
||||
select
|
||||
*
|
||||
from ${tableName}
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="detailFlag">
|
||||
and formmain_id = #{id}
|
||||
</if>
|
||||
<if test="!detailFlag">
|
||||
and id = #{id}
|
||||
</if>
|
||||
and sts = 'Y'
|
||||
and data_status != 'N'
|
||||
</trim>
|
||||
order by sorts asc
|
||||
</select>
|
||||
|
||||
<!-- 分页查询列表 采用like格式 -->
|
||||
<select id="getServiceByDistributeId" resultType="java.util.HashMap" parameterType="java.util.HashMap">
|
||||
select
|
||||
id,
|
||||
formmain_id,
|
||||
app_id,
|
||||
CASE
|
||||
status
|
||||
WHEN '1' THEN '发送成功'
|
||||
WHEN '2' THEN '发送中'
|
||||
WHEN '3' THEN '发送失败'
|
||||
ELSE ''
|
||||
END status,
|
||||
msg,
|
||||
sorts,
|
||||
create_user_id,
|
||||
create_time,
|
||||
modify_user_id,
|
||||
modify_time,
|
||||
sts,
|
||||
org_id
|
||||
from ${tableName}
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
and formmain_id = #{id}
|
||||
and sts = 'Y'
|
||||
</trim>
|
||||
order by sorts asc
|
||||
</select>
|
||||
|
||||
<!--通过mdmCode删除-->
|
||||
<delete id="deleteMdmModuleDb" parameterType="com.hzya.frame.mdm.mdmModuleDb.entity.MdmModuleDbEntity">
|
||||
delete from mdm_module_db where mdm_id = #{mdmId}
|
||||
</delete>
|
||||
</mapper>
|
||||
|
|
@ -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>
|
||||
|
|
@ -1,159 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleDistribute.entity;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity;
|
||||
import com.hzya.frame.web.entity.BaseEntity;
|
||||
/**
|
||||
* 主数据功能应用分发表(MdmModuleDistribute)实体类
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-18 11:39:46
|
||||
*/
|
||||
public class MdmModuleDistributeEntity extends BaseEntity {
|
||||
|
||||
/** 主数据模版ID */
|
||||
private String mdmId;
|
||||
/** 应用id */
|
||||
private String appId;
|
||||
/** 应用id */
|
||||
private Long mdmCode;
|
||||
/** 触发类型 0、手动1、自动 */
|
||||
private String enabledType;
|
||||
/** 修改接口 */
|
||||
private String updateApi;
|
||||
/** 修改插件 */
|
||||
private String updateScript;
|
||||
/** 新增接口 */
|
||||
private String addApi;
|
||||
/** 新增插件 */
|
||||
private String addScript;
|
||||
/** 删除接口 */
|
||||
private String deleteApi;
|
||||
/** 删除插件 */
|
||||
private String deleteScript;
|
||||
/** 启用停用 0、停用1、启用 */
|
||||
private String enabledState;
|
||||
/** 主表ID */
|
||||
private String dbId;
|
||||
/** 公司id */
|
||||
private String companyId;
|
||||
/** 公司id */
|
||||
private List<MdmModuleDistributeDetailEntity> mdmModuleDistributeDetailEntities;
|
||||
|
||||
public Long getMdmCode() {
|
||||
return mdmCode;
|
||||
}
|
||||
|
||||
public void setMdmCode(Long mdmCode) {
|
||||
this.mdmCode = mdmCode;
|
||||
}
|
||||
|
||||
public String getMdmId() {
|
||||
return mdmId;
|
||||
}
|
||||
|
||||
public void setMdmId(String mdmId) {
|
||||
this.mdmId = mdmId;
|
||||
}
|
||||
|
||||
public String getAppId() {
|
||||
return appId;
|
||||
}
|
||||
|
||||
public void setAppId(String appId) {
|
||||
this.appId = appId;
|
||||
}
|
||||
|
||||
public String getEnabledType() {
|
||||
return enabledType;
|
||||
}
|
||||
|
||||
public void setEnabledType(String enabledType) {
|
||||
this.enabledType = enabledType;
|
||||
}
|
||||
|
||||
public String getUpdateApi() {
|
||||
return updateApi;
|
||||
}
|
||||
|
||||
public void setUpdateApi(String updateApi) {
|
||||
this.updateApi = updateApi;
|
||||
}
|
||||
|
||||
public String getUpdateScript() {
|
||||
return updateScript;
|
||||
}
|
||||
|
||||
public void setUpdateScript(String updateScript) {
|
||||
this.updateScript = updateScript;
|
||||
}
|
||||
|
||||
public String getAddApi() {
|
||||
return addApi;
|
||||
}
|
||||
|
||||
public void setAddApi(String addApi) {
|
||||
this.addApi = addApi;
|
||||
}
|
||||
|
||||
public String getAddScript() {
|
||||
return addScript;
|
||||
}
|
||||
|
||||
public void setAddScript(String addScript) {
|
||||
this.addScript = addScript;
|
||||
}
|
||||
|
||||
public String getDeleteApi() {
|
||||
return deleteApi;
|
||||
}
|
||||
|
||||
public void setDeleteApi(String deleteApi) {
|
||||
this.deleteApi = deleteApi;
|
||||
}
|
||||
|
||||
public String getDeleteScript() {
|
||||
return deleteScript;
|
||||
}
|
||||
|
||||
public void setDeleteScript(String deleteScript) {
|
||||
this.deleteScript = deleteScript;
|
||||
}
|
||||
|
||||
public String getEnabledState() {
|
||||
return enabledState;
|
||||
}
|
||||
|
||||
public void setEnabledState(String enabledState) {
|
||||
this.enabledState = enabledState;
|
||||
}
|
||||
|
||||
public String getDbId() {
|
||||
return dbId;
|
||||
}
|
||||
|
||||
public void setDbId(String dbId) {
|
||||
this.dbId = dbId;
|
||||
}
|
||||
|
||||
public String getCompanyId() {
|
||||
return companyId;
|
||||
}
|
||||
|
||||
public void setCompanyId(String companyId) {
|
||||
this.companyId = companyId;
|
||||
}
|
||||
|
||||
public List<MdmModuleDistributeDetailEntity> getMdmModuleDistributeDetailEntities() {
|
||||
return mdmModuleDistributeDetailEntities;
|
||||
}
|
||||
|
||||
public void setMdmModuleDistributeDetailEntities(List<MdmModuleDistributeDetailEntity> mdmModuleDistributeDetailEntities) {
|
||||
this.mdmModuleDistributeDetailEntities = mdmModuleDistributeDetailEntities;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
@ -1,356 +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.mdmModuleDistributeDetail.dao.impl.MdmModuleDistributeDetailDaoImpl">
|
||||
|
||||
<resultMap id="get-MdmModuleDistributeDetailEntity-result"
|
||||
type="com.hzya.frame.mdm.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
<result property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="mdmId" column="mdm_id" jdbcType="VARCHAR"/>
|
||||
<result property="distributeId" column="distribute_id" jdbcType="VARCHAR"/>
|
||||
<result property="apiId" column="api_id" jdbcType="VARCHAR"/>
|
||||
<result property="dataType" column="data_type" jdbcType="VARCHAR"/>
|
||||
<result property="leftBracket" column="left_bracket" jdbcType="VARCHAR"/>
|
||||
<result property="filedId" column="filed_id" jdbcType="VARCHAR"/>
|
||||
<result property="filedName" column="filed_name" jdbcType="VARCHAR"/>
|
||||
<result property="compareType" column="compare_type" jdbcType="VARCHAR"/>
|
||||
<result property="filedVaule" column="filed_vaule" jdbcType="VARCHAR"/>
|
||||
<result property="connectionSymbol" column="connection_symbol" jdbcType="VARCHAR"/>
|
||||
<result property="rightParenthesis" column="right_parenthesis" 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="MdmModuleDistributeDetailEntity_Base_Column_List">
|
||||
id
|
||||
,mdm_id
|
||||
,distribute_id
|
||||
,api_id
|
||||
,data_type
|
||||
,left_bracket
|
||||
,filed_id
|
||||
,filed_name
|
||||
,compare_type
|
||||
,filed_vaule
|
||||
,connection_symbol
|
||||
,right_parenthesis
|
||||
,sorts
|
||||
,create_user_id
|
||||
,create_time
|
||||
,modify_user_id
|
||||
,modify_time
|
||||
,sts
|
||||
,org_id
|
||||
,company_id
|
||||
</sql>
|
||||
<!-- 查询 采用==查询 -->
|
||||
<select id="entity_list_base" resultMap="get-MdmModuleDistributeDetailEntity-result"
|
||||
parameterType="com.hzya.frame.mdm.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
select
|
||||
<include refid="MdmModuleDistributeDetailEntity_Base_Column_List"/>
|
||||
from mdm_module_distribute_detail
|
||||
<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="distributeId != null and distributeId != ''">and distribute_id = #{distributeId}</if>
|
||||
<if test="apiId != null and apiId != ''">and api_id = #{apiId}</if>
|
||||
<if test="dataType != null and dataType != ''">and data_type = #{dataType}</if>
|
||||
<if test="leftBracket != null and leftBracket != ''">and left_bracket = #{leftBracket}</if>
|
||||
<if test="filedId != null and filedId != ''">and filed_id = #{filedId}</if>
|
||||
<if test="filedName != null and filedName != ''">and filed_name = #{filedName}</if>
|
||||
<if test="compareType != null and compareType != ''">and compare_type = #{compareType}</if>
|
||||
<if test="filedVaule != null and filedVaule != ''">and filed_vaule = #{filedVaule}</if>
|
||||
<if test="connectionSymbol != null and connectionSymbol != ''">and connection_symbol = #{connectionSymbol}
|
||||
</if>
|
||||
<if test="rightParenthesis != null and rightParenthesis != ''">and right_parenthesis = #{rightParenthesis}
|
||||
</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.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
select count(1) from mdm_module_distribute_detail
|
||||
<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="distributeId != null and distributeId != ''">and distribute_id = #{distributeId}</if>
|
||||
<if test="apiId != null and apiId != ''">and api_id = #{apiId}</if>
|
||||
<if test="dataType != null and dataType != ''">and data_type = #{dataType}</if>
|
||||
<if test="leftBracket != null and leftBracket != ''">and left_bracket = #{leftBracket}</if>
|
||||
<if test="filedId != null and filedId != ''">and filed_id = #{filedId}</if>
|
||||
<if test="filedName != null and filedName != ''">and filed_name = #{filedName}</if>
|
||||
<if test="compareType != null and compareType != ''">and compare_type = #{compareType}</if>
|
||||
<if test="filedVaule != null and filedVaule != ''">and filed_vaule = #{filedVaule}</if>
|
||||
<if test="connectionSymbol != null and connectionSymbol != ''">and connection_symbol = #{connectionSymbol}
|
||||
</if>
|
||||
<if test="rightParenthesis != null and rightParenthesis != ''">and right_parenthesis = #{rightParenthesis}
|
||||
</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-MdmModuleDistributeDetailEntity-result"
|
||||
parameterType="com.hzya.frame.mdm.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
select
|
||||
<include refid="MdmModuleDistributeDetailEntity_Base_Column_List"/>
|
||||
from mdm_module_distribute_detail
|
||||
<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="distributeId != null and distributeId != ''">and distribute_id like
|
||||
concat('%',#{distributeId},'%')
|
||||
</if>
|
||||
<if test="apiId != null and apiId != ''">and api_id like concat('%',#{apiId},'%')</if>
|
||||
<if test="dataType != null and dataType != ''">and data_type like concat('%',#{dataType},'%')</if>
|
||||
<if test="leftBracket != null and leftBracket != ''">and left_bracket like concat('%',#{leftBracket},'%')
|
||||
</if>
|
||||
<if test="filedId != null and filedId != ''">and filed_id like concat('%',#{filedId},'%')</if>
|
||||
<if test="filedName != null and filedName != ''">and filed_name like concat('%',#{filedName},'%')</if>
|
||||
<if test="compareType != null and compareType != ''">and compare_type like concat('%',#{compareType},'%')
|
||||
</if>
|
||||
<if test="filedVaule != null and filedVaule != ''">and filed_vaule like concat('%',#{filedVaule},'%')</if>
|
||||
<if test="connectionSymbol != null and connectionSymbol != ''">and connection_symbol like
|
||||
concat('%',#{connectionSymbol},'%')
|
||||
</if>
|
||||
<if test="rightParenthesis != null and rightParenthesis != ''">and right_parenthesis like
|
||||
concat('%',#{rightParenthesis},'%')
|
||||
</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="MdmModuleDistributeDetailentity_list_or" resultMap="get-MdmModuleDistributeDetailEntity-result"
|
||||
parameterType="com.hzya.frame.mdm.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
select
|
||||
<include refid="MdmModuleDistributeDetailEntity_Base_Column_List"/>
|
||||
from mdm_module_distribute_detail
|
||||
<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="distributeId != null and distributeId != ''">or distribute_id = #{distributeId}</if>
|
||||
<if test="apiId != null and apiId != ''">or api_id = #{apiId}</if>
|
||||
<if test="dataType != null and dataType != ''">or data_type = #{dataType}</if>
|
||||
<if test="leftBracket != null and leftBracket != ''">or left_bracket = #{leftBracket}</if>
|
||||
<if test="filedId != null and filedId != ''">or filed_id = #{filedId}</if>
|
||||
<if test="filedName != null and filedName != ''">or filed_name = #{filedName}</if>
|
||||
<if test="compareType != null and compareType != ''">or compare_type = #{compareType}</if>
|
||||
<if test="filedVaule != null and filedVaule != ''">or filed_vaule = #{filedVaule}</if>
|
||||
<if test="connectionSymbol != null and connectionSymbol != ''">or connection_symbol = #{connectionSymbol}
|
||||
</if>
|
||||
<if test="rightParenthesis != null and rightParenthesis != ''">or right_parenthesis = #{rightParenthesis}
|
||||
</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.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
insert into mdm_module_distribute_detail(
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="id != null and id != ''">id ,</if>
|
||||
<if test="mdmId != null and mdmId != ''">mdm_id ,</if>
|
||||
<if test="distributeId != null and distributeId != ''">distribute_id ,</if>
|
||||
<if test="apiId != null and apiId != ''">api_id ,</if>
|
||||
<if test="dataType != null and dataType != ''">data_type ,</if>
|
||||
<if test="leftBracket != null and leftBracket != ''">left_bracket ,</if>
|
||||
<if test="filedId != null and filedId != ''">filed_id ,</if>
|
||||
<if test="filedName != null and filedName != ''">filed_name ,</if>
|
||||
<if test="compareType != null and compareType != ''">compare_type ,</if>
|
||||
<if test="filedVaule != null and filedVaule != ''">filed_vaule ,</if>
|
||||
<if test="connectionSymbol != null and connectionSymbol != ''">connection_symbol ,</if>
|
||||
<if test="rightParenthesis != null and rightParenthesis != ''">right_parenthesis ,</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="distributeId != null and distributeId != ''">#{distributeId} ,</if>
|
||||
<if test="apiId != null and apiId != ''">#{apiId} ,</if>
|
||||
<if test="dataType != null and dataType != ''">#{dataType} ,</if>
|
||||
<if test="leftBracket != null and leftBracket != ''">#{leftBracket} ,</if>
|
||||
<if test="filedId != null and filedId != ''">#{filedId} ,</if>
|
||||
<if test="filedName != null and filedName != ''">#{filedName} ,</if>
|
||||
<if test="compareType != null and compareType != ''">#{compareType} ,</if>
|
||||
<if test="filedVaule != null and filedVaule != ''">#{filedVaule} ,</if>
|
||||
<if test="connectionSymbol != null and connectionSymbol != ''">#{connectionSymbol} ,</if>
|
||||
<if test="rightParenthesis != null and rightParenthesis != ''">#{rightParenthesis} ,</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_distribute_detail(mdm_id, distribute_id, api_id, data_type, left_bracket, filed_id,
|
||||
filed_name, compare_type, filed_vaule, connection_symbol, right_parenthesis, 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.distributeId},#{entity.apiId},#{entity.dataType},#{entity.leftBracket},#{entity.filedId},#{entity.filedName},#{entity.compareType},#{entity.filedVaule},#{entity.connectionSymbol},#{entity.rightParenthesis},#{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_distribute_detail(mdm_id, distribute_id, api_id, data_type, left_bracket, filed_id,
|
||||
filed_name, compare_type, filed_vaule, connection_symbol, right_parenthesis, 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.distributeId},#{entity.apiId},#{entity.dataType},#{entity.leftBracket},#{entity.filedId},#{entity.filedName},#{entity.compareType},#{entity.filedVaule},#{entity.connectionSymbol},#{entity.rightParenthesis},#{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),
|
||||
distribute_id = values(distribute_id),
|
||||
api_id = values(api_id),
|
||||
data_type = values(data_type),
|
||||
left_bracket = values(left_bracket),
|
||||
filed_id = values(filed_id),
|
||||
filed_name = values(filed_name),
|
||||
compare_type = values(compare_type),
|
||||
filed_vaule = values(filed_vaule),
|
||||
connection_symbol = values(connection_symbol),
|
||||
right_parenthesis = values(right_parenthesis),
|
||||
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.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
update mdm_module_distribute_detail set
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="mdmId != null and mdmId != ''">mdm_id = #{mdmId},</if>
|
||||
<if test="distributeId != null and distributeId != ''">distribute_id = #{distributeId},</if>
|
||||
<if test="apiId != null and apiId != ''">api_id = #{apiId},</if>
|
||||
<if test="dataType != null and dataType != ''">data_type = #{dataType},</if>
|
||||
left_bracket = #{leftBracket},
|
||||
filed_id = #{filedId},
|
||||
filed_name = #{filedName},
|
||||
compare_type = #{compareType},
|
||||
filed_vaule = #{filedVaule},
|
||||
connection_symbol = #{connectionSymbol},
|
||||
right_parenthesis = #{rightParenthesis},
|
||||
<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.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
update mdm_module_distribute_detail 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.mdmModuleDistributeDetail.entity.MdmModuleDistributeDetailEntity">
|
||||
update mdm_module_distribute_detail 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="distributeId != null and distributeId != ''">and distribute_id = #{distributeId}</if>
|
||||
<if test="apiId != null and apiId != ''">and api_id = #{apiId}</if>
|
||||
<if test="dataType != null and dataType != ''">and data_type = #{dataType}</if>
|
||||
<if test="leftBracket != null and leftBracket != ''">and left_bracket = #{leftBracket}</if>
|
||||
<if test="filedId != null and filedId != ''">and filed_id = #{filedId}</if>
|
||||
<if test="filedName != null and filedName != ''">and filed_name = #{filedName}</if>
|
||||
<if test="compareType != null and compareType != ''">and compare_type = #{compareType}</if>
|
||||
<if test="filedVaule != null and filedVaule != ''">and filed_vaule = #{filedVaule}</if>
|
||||
<if test="connectionSymbol != null and connectionSymbol != ''">and connection_symbol = #{connectionSymbol}
|
||||
</if>
|
||||
<if test="rightParenthesis != null and rightParenthesis != ''">and right_parenthesis = #{rightParenthesis}
|
||||
</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_distribute_detail where id = #{id}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
||||
|
|
@ -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);
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -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>{
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleOptionLog.dao;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity;
|
||||
import com.hzya.frame.basedao.dao.IBaseDao;
|
||||
|
||||
/**
|
||||
* 主数据模版(mdm_module_option_log: table)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-05 16:10:31
|
||||
*/
|
||||
public interface IMdmModuleOptionLogDao extends IBaseDao<MdmModuleOptionLogEntity, String> {
|
||||
|
||||
}
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleOptionLog.dao.impl;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleOptionLog.dao.IMdmModuleOptionLogDao;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||
/**
|
||||
* 主数据模版(MdmModuleOptionLog)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-05 16:10:31
|
||||
*/
|
||||
@Repository(value = "MdmModuleOptionLogDaoImpl")
|
||||
public class MdmModuleOptionLogDaoImpl extends MybatisGenericDao<MdmModuleOptionLogEntity, String> implements IMdmModuleOptionLogDao{
|
||||
|
||||
}
|
||||
|
|
@ -1,124 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleOptionLog.entity;
|
||||
|
||||
import java.util.Date;
|
||||
import com.hzya.frame.web.entity.BaseEntity;
|
||||
/**
|
||||
* 主数据模版(MdmModuleOptionLog)实体类
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-05 16:10:32
|
||||
*/
|
||||
public class MdmModuleOptionLogEntity extends BaseEntity {
|
||||
//主数据表名
|
||||
private String tableName;
|
||||
//主数据编码
|
||||
private Long mdmCode;
|
||||
/** 主表id */
|
||||
private String formmainId;
|
||||
/** 来源名称 */
|
||||
private String sourceName;
|
||||
/** 状态 1、成功2、失败 */
|
||||
private String dataType;
|
||||
/** 备注 */
|
||||
private String remark;
|
||||
/** 编码 */
|
||||
private String code;
|
||||
/** source_data */
|
||||
private String sourceData;
|
||||
/** 操作类型 */
|
||||
private String optionType;
|
||||
/** 操作人 */
|
||||
private String optionName;
|
||||
/** 公司id */
|
||||
private String companyId;
|
||||
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getDataType() {
|
||||
return dataType;
|
||||
}
|
||||
|
||||
public void setDataType(String dataType) {
|
||||
this.dataType = dataType;
|
||||
}
|
||||
|
||||
public String getFormmainId() {
|
||||
return formmainId;
|
||||
}
|
||||
|
||||
public void setFormmainId(String formmainId) {
|
||||
this.formmainId = formmainId;
|
||||
}
|
||||
|
||||
public String getSourceName() {
|
||||
return sourceName;
|
||||
}
|
||||
|
||||
public void setSourceName(String sourceName) {
|
||||
this.sourceName = sourceName;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getSourceData() {
|
||||
return sourceData;
|
||||
}
|
||||
|
||||
public void setSourceData(String sourceData) {
|
||||
this.sourceData = sourceData;
|
||||
}
|
||||
|
||||
public String getOptionType() {
|
||||
return optionType;
|
||||
}
|
||||
|
||||
public void setOptionType(String optionType) {
|
||||
this.optionType = optionType;
|
||||
}
|
||||
|
||||
public String getOptionName() {
|
||||
return optionName;
|
||||
}
|
||||
|
||||
public void setOptionName(String optionName) {
|
||||
this.optionName = optionName;
|
||||
}
|
||||
|
||||
public String getCompanyId() {
|
||||
return companyId;
|
||||
}
|
||||
|
||||
public void setCompanyId(String companyId) {
|
||||
this.companyId = companyId;
|
||||
}
|
||||
|
||||
public String getTableName() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
public void setTableName(String tableName) {
|
||||
this.tableName = tableName;
|
||||
}
|
||||
|
||||
public Long getMdmCode() {
|
||||
return mdmCode;
|
||||
}
|
||||
|
||||
public void setMdmCode(Long mdmCode) {
|
||||
this.mdmCode = mdmCode;
|
||||
}
|
||||
}
|
||||
|
|
@ -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.mdm.mdmModuleOptionLog.dao.impl.MdmModuleOptionLogDaoImpl">
|
||||
|
||||
<resultMap id="get-MdmModuleOptionLogEntity-result" type="com.hzya.frame.mdm.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity" >
|
||||
<result property="id" column="id" jdbcType="VARCHAR"/>
|
||||
<result property="formmainId" column="formmain_id" jdbcType="VARCHAR"/>
|
||||
<result property="sourceName" column="source_name" jdbcType="VARCHAR"/>
|
||||
<result property="dataType" column="data_type" jdbcType="VARCHAR"/>
|
||||
<result property="code" column="code" jdbcType="VARCHAR"/>
|
||||
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
||||
<result property="sourceData" column="source_data" jdbcType="VARCHAR"/>
|
||||
<result property="optionType" column="option_type" jdbcType="VARCHAR"/>
|
||||
<result property="optionName" column="option_name" 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 = "MdmModuleOptionLogEntity_Base_Column_List">
|
||||
id
|
||||
,formmain_id
|
||||
,source_name
|
||||
,data_type
|
||||
,code
|
||||
,remark
|
||||
,source_data
|
||||
,option_type
|
||||
,option_name
|
||||
,sorts
|
||||
,create_user_id
|
||||
,create_time
|
||||
,modify_user_id
|
||||
,modify_time
|
||||
,sts
|
||||
,org_id
|
||||
,company_id
|
||||
</sql>
|
||||
<select id="entity_get" resultMap="get-MdmModuleOptionLogEntity-result">
|
||||
select
|
||||
<include refid="MdmModuleOptionLogEntity_Base_Column_List" />
|
||||
from ${tableName} where id = #{ id } and sts='Y'
|
||||
</select>
|
||||
<!-- 查询 采用==查询 -->
|
||||
<select id="entity_list_base" resultMap="get-MdmModuleOptionLogEntity-result" parameterType = "com.hzya.frame.mdm.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity">
|
||||
select
|
||||
<include refid="MdmModuleOptionLogEntity_Base_Column_List" />
|
||||
from ${tableName}
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||
<if test="formmainId != null and formmainId != ''"> and formmain_id = #{formmainId} </if>
|
||||
<if test="sourceName != null and sourceName != ''"> and source_name = #{sourceName} </if>
|
||||
<if test="dataType != null and dataType != ''"> and data_type = #{dataType} </if>
|
||||
<if test="code != null and code != ''"> and code = #{code} </if>
|
||||
<if test="remark != null and remark != ''"> and remark = #{remark} </if>
|
||||
<if test="sourceData != null and sourceData != ''"> and source_data = #{sourceData} </if>
|
||||
<if test="optionType != null and optionType != ''"> and option_type = #{optionType} </if>
|
||||
<if test="optionName != null and optionName != ''"> and option_name = #{optionName} </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.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity">
|
||||
select count(1) from ${tableName}
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> and id = #{id} </if>
|
||||
<if test="formmainId != null and formmainId != ''"> and formmain_id = #{formmainId} </if>
|
||||
<if test="sourceName != null and sourceName != ''"> and source_name = #{sourceName} </if>
|
||||
<if test="dataType != null and dataType != ''"> and data_type = #{dataType} </if>
|
||||
<if test="code != null and code != ''"> and code = #{code} </if>
|
||||
<if test="remark != null and remark != ''"> and remark = #{remark} </if>
|
||||
<if test="sourceData != null and sourceData != ''"> and source_data = #{sourceData} </if>
|
||||
<if test="optionType != null and optionType != ''"> and option_type = #{optionType} </if>
|
||||
<if test="optionName != null and optionName != ''"> and option_name = #{optionName} </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-MdmModuleOptionLogEntity-result" parameterType = "com.hzya.frame.mdm.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity">
|
||||
select
|
||||
<include refid="MdmModuleOptionLogEntity_Base_Column_List" />
|
||||
from ${tableName}
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> and id like concat('%',#{id},'%') </if>
|
||||
<if test="formmainId != null and formmainId != ''"> and formmain_id like concat('%',#{formmainId},'%') </if>
|
||||
<if test="sourceName != null and sourceName != ''"> and source_name like concat('%',#{sourceName},'%') </if>
|
||||
<if test="dataType != null and dataType != ''"> and data_type like concat('%',#{dataType},'%') </if>
|
||||
<if test="code != null and code != ''"> and code like concat('%',#{code},'%') </if>
|
||||
<if test="remark != null and remark != ''"> and remark like concat('%',#{remark},'%') </if>
|
||||
<if test="sourceData != null and sourceData != ''"> and source_data like concat('%',#{sourceData},'%') </if>
|
||||
<if test="optionType != null and optionType != ''"> and option_type like concat('%',#{optionType},'%') </if>
|
||||
<if test="optionName != null and optionName != ''"> and option_name like concat('%',#{optionName},'%') </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 desc</if>
|
||||
<if test=" sort !='' and sort!=null and order !='' and order!=null ">order by ${sort} ${order}</if>
|
||||
</select>
|
||||
|
||||
<!-- 查询列表 字段采用or格式 -->
|
||||
<select id="MdmModuleOptionLogentity_list_or" resultMap="get-MdmModuleOptionLogEntity-result" parameterType = "com.hzya.frame.mdm.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity">
|
||||
select
|
||||
<include refid="MdmModuleOptionLogEntity_Base_Column_List" />
|
||||
from ${tableName}
|
||||
<trim prefix="where" prefixOverrides="and">
|
||||
<if test="id != null and id != ''"> or id = #{id} </if>
|
||||
<if test="formmainId != null and formmainId != ''"> or formmain_id = #{formmainId} </if>
|
||||
<if test="sourceName != null and sourceName != ''"> or source_name = #{sourceName} </if>
|
||||
<if test="dataType != null and dataType != ''"> or data_type = #{dataType} </if>
|
||||
<if test="code != null and code != ''"> or code = #{code} </if>
|
||||
<if test="remark != null and remark != ''"> or remark = #{remark} </if>
|
||||
<if test="sourceData != null and sourceData != ''"> or source_data = #{sourceData} </if>
|
||||
<if test="optionType != null and optionType != ''"> or option_type = #{optionType} </if>
|
||||
<if test="optionName != null and optionName != ''"> or option_name = #{optionName} </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.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity" >
|
||||
insert into ${tableName}(
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="id != null and id != ''"> id , </if>
|
||||
<if test="formmainId != null and formmainId != ''"> formmain_id , </if>
|
||||
<if test="sourceName != null and sourceName != ''"> source_name , </if>
|
||||
<if test="dataType != null and dataType != ''"> data_type , </if>
|
||||
<if test="code != null and code != ''"> code , </if>
|
||||
<if test="remark != null and remark != ''"> remark , </if>
|
||||
<if test="sourceData != null and sourceData != ''"> source_data , </if>
|
||||
<if test="optionType != null and optionType != ''"> option_type , </if>
|
||||
<if test="optionName != null and optionName != ''"> option_name , </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="formmainId != null and formmainId != ''"> #{formmainId} ,</if>
|
||||
<if test="sourceName != null and sourceName != ''"> #{sourceName} ,</if>
|
||||
<if test="dataType != null and dataType != ''"> #{dataType} ,</if>
|
||||
<if test="code != null and code != ''"> #{code} ,</if>
|
||||
<if test="remark != null and remark != ''"> #{remark} ,</if>
|
||||
<if test="sourceData != null and sourceData != ''"> #{sourceData} ,</if>
|
||||
<if test="optionType != null and optionType != ''"> #{optionType} ,</if>
|
||||
<if test="optionName != null and optionName != ''"> #{optionName} ,</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 ${tableName}(formmain_id, source_name,data_type, code,remark, source_data, option_type, option_name, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id, sts)
|
||||
values
|
||||
<foreach collection="entities" item="entity" separator=",">
|
||||
(#{entity.formmainId},#{entity.sourceName},#{entity.dataType},#{entity.code},#{entity.remark},#{entity.sourceData},#{entity.optionType},#{entity.optionName},#{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 ${tableName}(formmain_id, source_name,data_type, code, remark, source_data, option_type, option_name, create_user_id, create_time, modify_user_id, modify_time, sts, org_id, company_id)
|
||||
values
|
||||
<foreach collection="entities" item="entity" separator=",">
|
||||
(#{entity.formmainId},#{entity.sourceName},#{entity.dataType},#{entity.code},#{entity.remark},#{entity.sourceData},#{entity.optionType},#{entity.optionName},#{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
|
||||
formmain_id = values(formmain_id),
|
||||
source_name = values(source_name),
|
||||
data_type = values(data_type),
|
||||
code = values(code),
|
||||
remark = values(remark),
|
||||
source_data = values(source_data),
|
||||
option_type = values(option_type),
|
||||
option_name = values(option_name),
|
||||
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.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity" >
|
||||
update ${tableName} set
|
||||
<trim suffix="" suffixOverrides=",">
|
||||
<if test="formmainId != null and formmainId != ''"> formmain_id = #{formmainId},</if>
|
||||
<if test="sourceName != null and sourceName != ''"> source_name = #{sourceName},</if>
|
||||
<if test="dataType != null and dataType != ''"> data_type = #{dataType},</if>
|
||||
<if test="code != null and code != ''"> code = #{code},</if>
|
||||
<if test="remark != null and remark != ''"> remark = #{remark},</if>
|
||||
<if test="sourceData != null and sourceData != ''"> source_data = #{sourceData},</if>
|
||||
<if test="optionType != null and optionType != ''"> option_type = #{optionType},</if>
|
||||
<if test="optionName != null and optionName != ''"> option_name = #{optionName},</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.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity" >
|
||||
update ${tableName} 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.mdmModuleOptionLog.entity.MdmModuleOptionLogEntity" >
|
||||
update ${tableName} 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="formmainId != null and formmainId != ''"> and formmain_id = #{formmainId} </if>
|
||||
<if test="sourceName != null and sourceName != ''"> and source_name = #{sourceName} </if>
|
||||
<if test="dataType != null and dataType != ''"> and data_type = #{dataType} </if>
|
||||
<if test="code != null and code != ''"> and code = #{code} </if>
|
||||
<if test="remark != null and remark != ''"> and remark = #{remark} </if>
|
||||
<if test="sourceData != null and sourceData != ''"> and source_data = #{sourceData} </if>
|
||||
<if test="optionType != null and optionType != ''"> and option_type = #{optionType} </if>
|
||||
<if test="optionName != null and optionName != ''"> and option_name = #{optionName} </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 ${tableName} where id = #{id}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleSendLog.dao;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleSendLog.entity.MdmModuleSendLogEntity;
|
||||
import com.hzya.frame.basedao.dao.IBaseDao;
|
||||
|
||||
/**
|
||||
* 主数据模版(mdm_module_send_log: table)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-05 16:11:09
|
||||
*/
|
||||
public interface IMdmModuleSendLogDao extends IBaseDao<MdmModuleSendLogEntity, String> {
|
||||
|
||||
}
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleSendLog.dao.impl;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleSendLog.entity.MdmModuleSendLogEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleSendLog.dao.IMdmModuleSendLogDao;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||
/**
|
||||
* 主数据模版(MdmModuleSendLog)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-05 16:11:09
|
||||
*/
|
||||
@Repository(value = "MdmModuleSendLogDaoImpl")
|
||||
public class MdmModuleSendLogDaoImpl extends MybatisGenericDao<MdmModuleSendLogEntity, String> implements IMdmModuleSendLogDao{
|
||||
|
||||
}
|
||||
|
|
@ -1,143 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleSendLog.entity;
|
||||
|
||||
import java.util.Date;
|
||||
import com.hzya.frame.web.entity.BaseEntity;
|
||||
/**
|
||||
* 主数据模版(MdmModuleSendLog)实体类
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-05 16:11:10
|
||||
*/
|
||||
public class MdmModuleSendLogEntity extends BaseEntity {
|
||||
//主数据表名
|
||||
private String tableName;
|
||||
//主数据编码
|
||||
private Long mdmCode;
|
||||
/** 主表id */
|
||||
private String formmainId;
|
||||
/** 目标应用 */
|
||||
private String targetApp;
|
||||
/** 目标api */
|
||||
private String targetApi;
|
||||
/** 源数据 */
|
||||
private String sourceData;
|
||||
/** 状态 1、成功2、失败 */
|
||||
private String dataType;
|
||||
/** 备注 */
|
||||
private String remark;
|
||||
/** 操作类型 1新增2、修改3、删除*/
|
||||
private String optionType;
|
||||
/** 公司id */
|
||||
private String companyId;
|
||||
/** 下发表id */
|
||||
private String distributeId;
|
||||
/** 应用id */
|
||||
private String appId;
|
||||
/** apiID */
|
||||
private String apiId;
|
||||
|
||||
public String getRemark() {
|
||||
return remark;
|
||||
}
|
||||
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
public String getDataType() {
|
||||
return dataType;
|
||||
}
|
||||
|
||||
public void setDataType(String dataType) {
|
||||
this.dataType = dataType;
|
||||
}
|
||||
|
||||
public String getFormmainId() {
|
||||
return formmainId;
|
||||
}
|
||||
|
||||
public void setFormmainId(String formmainId) {
|
||||
this.formmainId = formmainId;
|
||||
}
|
||||
|
||||
public String getTargetApp() {
|
||||
return targetApp;
|
||||
}
|
||||
|
||||
public void setTargetApp(String targetApp) {
|
||||
this.targetApp = targetApp;
|
||||
}
|
||||
|
||||
public String getTargetApi() {
|
||||
return targetApi;
|
||||
}
|
||||
|
||||
public void setTargetApi(String targetApi) {
|
||||
this.targetApi = targetApi;
|
||||
}
|
||||
|
||||
public String getSourceData() {
|
||||
return sourceData;
|
||||
}
|
||||
|
||||
public void setSourceData(String sourceData) {
|
||||
this.sourceData = sourceData;
|
||||
}
|
||||
|
||||
public String getOptionType() {
|
||||
return optionType;
|
||||
}
|
||||
|
||||
public void setOptionType(String optionType) {
|
||||
this.optionType = optionType;
|
||||
}
|
||||
|
||||
public String getCompanyId() {
|
||||
return companyId;
|
||||
}
|
||||
|
||||
public void setCompanyId(String companyId) {
|
||||
this.companyId = companyId;
|
||||
}
|
||||
|
||||
public String getTableName() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
public void setTableName(String tableName) {
|
||||
this.tableName = tableName;
|
||||
}
|
||||
|
||||
public Long getMdmCode() {
|
||||
return mdmCode;
|
||||
}
|
||||
|
||||
public void setMdmCode(Long mdmCode) {
|
||||
this.mdmCode = mdmCode;
|
||||
}
|
||||
|
||||
public String getDistributeId() {
|
||||
return distributeId;
|
||||
}
|
||||
|
||||
public void setDistributeId(String distributeId) {
|
||||
this.distributeId = distributeId;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleSource.dao;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleSource.entity.MdmModuleSourceEntity;
|
||||
import com.hzya.frame.basedao.dao.IBaseDao;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 主数据数据来源(mdm_module_source: table)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-19 09:11:50
|
||||
*/
|
||||
public interface IMdmModuleSourceDao extends IBaseDao<MdmModuleSourceEntity, String> {
|
||||
/**
|
||||
*
|
||||
* @content 根据数据来源内类型是插件的应用类型做分组
|
||||
* @Param
|
||||
* @Return
|
||||
* @Author hecan
|
||||
* @Date 2024/6/6 10:43
|
||||
* **/
|
||||
List<MdmModuleSourceEntity> MdmModuleSourceentityGroupByType();
|
||||
}
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
package com.hzya.frame.mdm.mdmModuleSource.dao.impl;
|
||||
|
||||
import com.hzya.frame.mdm.mdmModuleSource.entity.MdmModuleSourceEntity;
|
||||
import com.hzya.frame.mdm.mdmModuleSource.dao.IMdmModuleSourceDao;
|
||||
import org.springframework.stereotype.Repository;
|
||||
import com.hzya.frame.basedao.dao.MybatisGenericDao;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 主数据数据来源(MdmModuleSource)表数据库访问层
|
||||
*
|
||||
* @author makejava
|
||||
* @since 2024-06-19 09:11:50
|
||||
*/
|
||||
@Repository(value = "MdmModuleSourceDaoImpl")
|
||||
public class MdmModuleSourceDaoImpl extends MybatisGenericDao<MdmModuleSourceEntity, String> implements IMdmModuleSourceDao{
|
||||
|
||||
//根据数据来源内类型是插件的应用类型做分组
|
||||
@Override
|
||||
public List<MdmModuleSourceEntity> MdmModuleSourceentityGroupByType() {
|
||||
List<MdmModuleSourceEntity> list =(List<MdmModuleSourceEntity>) super.selectList(getSqlIdPrifx() + "queryMdmModuleSourceentityGroupByType", "");
|
||||
return list;
|
||||
}
|
||||
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue