#数据库连接
spring:datasource:driver-class-name: com.mysql.cj.jdbc.Driverurl: jdbc:mysql://localhost:3306/mp_high?userSSL=false&characterEnconding=UTF-8&serverTimezone=GMT%2B8username: rootpassword: root
# 日志管理
logging:level:root: warncom.gblfy.mp.high.dao: tracepattern:console: '%p%m%n'
#扫描 全局逻辑删除=配置+ @TableLogic
mybatis-plus:# 扫描 mapper.xmlmapper-locations: classpath:/mapper/*Mapper.xmlglobal-config:db-config:logic-not-delete-value: 0 #默认值0logic-delete-value: 1 #默认值1