图例相关接口完善等

This commit is contained in:
mi9688
2024-10-11 12:29:15 +08:00
parent 04def663c1
commit eefc4e9a45
30 changed files with 835 additions and 117 deletions

View File

@ -16,6 +16,12 @@
</description>
<dependencies>
<!-- 单元测试-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- spring-boot-devtools -->
<dependency>

View File

@ -115,12 +115,16 @@ token:
mybatis-plus:
typeAliasesPackage: com.fastbee.**.domain # 搜索指定包别名
mapperLocations: classpath*:mapper/**/*Mapper.xml # 配置mapper的扫描找到所有的mapper.xml映射文件
configLocation: classpath:mybatis/mybatis-config.xml # 加载全局的配置文件
configLocation: classpath:mybatis/mybatis-config.xml
# 加载全局的配置文件
global-config:
db-config:
id-type: ASSIGN_ID
logic-delete-value: 1 # 逻辑已删除值(默认为 1)
logic-delete-field: del_flag
logic-delete-value: 2 # 逻辑已删除值(默认为 1)
logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
configuration:
log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
# PageHelper分页插件
pagehelper:

View File

@ -12,7 +12,8 @@
<!-- 配置默认的执行器.SIMPLE就是普通执行器;REUSE执行器会重用预处理语句(prepared statements);BATCH执行器将重用语句并执行批量更新 -->
<setting name="defaultExecutorType" value="SIMPLE" />
<!-- 指定 MyBatis 所用日志的具体实现 -->
<setting name="logImpl" value="SLF4J" />
<!-- <setting name="logImpl" value="SLF4J" />-->
<setting name="logImpl" value="org.apache.ibatis.logging.nologging.NoLoggingImpl" />
<!-- 使用驼峰命名法转换字段 -->
<!-- <setting name="mapUnderscoreToCamelCase" value="true"/> -->
</settings>