feat: 流程工具架构开发
This commit is contained in:
@@ -4,4 +4,28 @@ server:
|
||||
|
||||
spring:
|
||||
application:
|
||||
name: metis
|
||||
name: metis
|
||||
profiles:
|
||||
active: dev
|
||||
|
||||
# MyBatis Plus 配置
|
||||
mybatis-plus:
|
||||
global-config:
|
||||
# 关闭MP3.0自带的banner
|
||||
banner: false
|
||||
db-config:
|
||||
#主键类型 0:"数据库ID自增", 1:"不操作", 2:"用户输入ID",3:"数字型snowflake", 4:"全局唯一ID UUID", 5:"字符串型snowflake";
|
||||
id-type: 3
|
||||
#字段策略
|
||||
insert-strategy: not_null
|
||||
update-strategy: not_null
|
||||
select-strategy: not_null
|
||||
#驼峰下划线转换
|
||||
table-underline: true
|
||||
logic-delete-field: is_deleted # 全局逻辑删除字段名
|
||||
logic-delete-value: 1 # 逻辑已删除值
|
||||
logic-not-delete-value: 0 # 逻辑未删除值
|
||||
configuration:
|
||||
map-underscore-to-camel-case: true
|
||||
cache-enabled: false
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
Reference in New Issue
Block a user