初始化规则引擎

master
Qin Dong Ming 2024-08-22 15:06:34 +08:00
parent 0e27f4771d
commit bfdb690f2b
4 changed files with 61 additions and 28 deletions

View File

@ -0,0 +1,14 @@
package com.muyu.mapper;
import org.apache.ibatis.annotations.Mapper;
/**
* @Authorqdm
* @Packagecom.muyu.mapper
* @Projectcloud-etl-engine
* @nameEngineMapper
* @Date2024/8/22 15:05
*/
@Mapper
public interface EngineMapper {
}

View File

@ -0,0 +1,6 @@
<?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.muyu.mapper.EngineMapper">
</mapper>

View File

@ -1,12 +1,19 @@
# Tomcat # Tomcat
server: server:
port: 9205 port: 10005
# nacos线上地址
nacos:
addr: 47.116.184.54:8848
user-name: nacos
password: nacos
namespace: cloud-2112
# Spring # Spring
spring: spring:
application: application:
# 应用名称 # 应用名称
name: cloud-etl name: cloud-etl-engine
profiles: profiles:
# 环境配置 # 环境配置
active: dev active: dev
@ -14,15 +21,41 @@ spring:
nacos: nacos:
discovery: discovery:
# 服务注册地址 # 服务注册地址
server-addr: 43.142.100.73:8848 server-addr: ${nacos.addr}
# nacos用户名
username: ${nacos.user-name}
# nacos密码
password: ${nacos.password}
# 命名空间
namespace: ${nacos.namespace}
config: config:
# 配置中心地址 # 服务注册地址
server-addr: 43.142.100.73:8848 server-addr: ${nacos.addr}
# nacos用户名
username: ${nacos.user-name}
# nacos密码
password: ${nacos.password}
# 命名空间
namespace: ${nacos.namespace}
# 配置文件格式 # 配置文件格式
file-extension: yml file-extension: yml
# 共享配置 # 共享配置
shared-configs: shared-configs:
# 系统共享配置
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
logging: # 系统环境Config共享配置
level: - application-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
com.muyu.etl.mapper: DEBUG
- application-xxl-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
# rabbit 配置文件
- application-rabbit-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 配置 MyBatis 的日志输出实现类,这里是输出到控制台
mapper-locations: classpath:/mapper/*.xml # MyBatis Mapper 文件的位置,这里假设是 XML 形式的 Mapper
global-config:
db-config:
id-type: auto # 主键生成策略,这里设置为自动增长
logic-delete-value: 1 # 逻辑删除标记值,例如设置为 1 表示已删除
logic-not-delete-value: 0 # 逻辑未删除标记值,例如设置为 0 表示未删除
banner: false # 关闭控制台打印的 MyBatis-Plus Banner

View File

@ -1,20 +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.muyu.mapper.EtlMapper">
<sql id="selectAssetDataDictVo">
select id, basic_id, dict_name, dict_type, remark, create_by, create_time, update_by, update_time from asset_data_dict
</sql>
<sql id="list">
select id, basic_id, dict_name, dict_type, remark, create_by, create_time, update_by, update_time from asset_data_dict
</sql>
<delete id="deleteAssetImpowerByIds">
<include refid="selectAssetDataDictVo"/>
where id = #{id}
</delete>
<select id="list" resultType="com.muyu.domain.AssetImpower">
<include refid="list"/>
where id = #{id}
</select>
</mapper>