feat: 暂存

dev_drug_dm
chenhc 1 week ago
parent ca3bbe0d20
commit 5422136499

@ -1,5 +1,8 @@
package com.glxp.api.entity.monitor;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.util.Date;

@ -1,12 +1,16 @@
package com.glxp.api.entity.system;
import lombok.Data;
import com.baomidou.mybatisplus.annotation.TableField;
@Data
public class ScheduledEntity {
private int id;
@TableField(value = "cron_name")
private String cronName;
private String cron;
private String customerId;
}

@ -20,11 +20,11 @@ public class MybatisDmHandler implements Interceptor {
// 获取 SQL 语句
String sql = (String) metaObject.getValue("delegate.boundSql.sql");
System.out.println("拦截到的 SQL: " + sql);
// System.out.println("拦截到的 SQL: " + sql);
String processedSql = camelToSnake(sql);
// // 可在此对 SQL 进行处理,例如修改 SQL、添加日志等
// 可在此对 SQL 进行处理,例如修改 SQL、添加日志等
// String processedSql = sql.toUpperCase();
System.out.println("处理后的 SQL: " + processedSql);
// System.out.println("处理后的 SQL: " + processedSql);
metaObject.setValue("delegate.boundSql.sql", processedSql);
// 继续执行原方法
@ -42,8 +42,8 @@ public class MybatisDmHandler implements Interceptor {
// 可在此设置拦截器的属性
}
public String camelToSnake(String camelCase) {
// 使用正则表达式替换大写字母为下划线加小写字母
return camelCase.replaceAll("(?<=[a-z])([A-Z])", "_$1").toLowerCase();
// 先去除所有反引号,再将驼峰转换为蛇形并转小写
return camelCase.replaceAll("`", "").replaceAll("(?<=[a-z])([A-Z])", "_$1").toLowerCase();
}
}

@ -1,6 +1,7 @@
package com.glxp.api.service.monitor.impl;
import cn.hutool.core.bean.BeanUtil;
import cn.hutool.core.util.IdUtil;
import com.glxp.api.dao.monitor.SysOperLogMapper;
import com.glxp.api.entity.monitor.OperLogDTO;
import com.glxp.api.entity.monitor.SysOperLog;
@ -56,6 +57,7 @@ public class SysOperLogServiceImpl implements ISysOperLogService, OperLogService
@Override
public void insertOperlog(SysOperLog operLog) {
operLog.setOperTime(new Date());
operLog.setOperId(IdUtil.getSnowflakeNextId());
baseMapper.insert(operLog);
}

@ -3,9 +3,9 @@ server:
spring:
datasource:
driver-class-name: dm.jdbc.driver.DmDriver
jdbc-url: jdbc:dm://127.0.0.1:5236/UDI_SPMS_DM?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&useSSL=false
jdbc-url: jdbc:dm://127.0.0.1:5236/UDI_SPMS_DM?CHARSET=UTF8&COLLATION_CONNECTION=utf8_general_ci
username: SYSDBA
password: Wykj@6066
password: Chc180069
hikari:
connection-timeout: 60000
maximum-pool-size: 60

@ -10,12 +10,17 @@ spring:
location: D:/tmp
mybatis-plus:
mapper-locations: classpath:mybatis/mapper/*/*.xml
global-config:
db-config:
column-underline: false # 开启驼峰转下划线
capital-mode: true # 开启强制大写(字段名全大写)
configuration:
use-generated-keys: true
use-column-label: true
map-underscore-to-camel-case: false
map-underscore-to-camel-case: true # 关闭 MyBatis 原生驼峰映射
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
pagehelper:
helperDialect: mysql
support-methods-arguments: false

@ -45,7 +45,7 @@
</select>
<select id="findByUserName" parameterType="hashmap" resultType="com.glxp.api.entity.auth.AuthAdmin">
SELECT *
SELECT *
FROM auth_user
<where>
binary userName = #{userName}

@ -42,7 +42,7 @@
</delete>
<insert id="insertBatch" keyProperty="id" parameterType="java.util.List">
<insert id="insertBatch" parameterType="java.util.List">
insert INTO auth_role_menu
(
role_id,menu_id

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save