spring: application: name: ai-base profiles: active: local servlet: multipart: enabled: true max-file-size: 100MB max-request-size: 100MB server: tomcat: connection-timeout: 300000 servlet: session: timeout: 300000 # mybatis-plus 配置 mybatis-plus: global-config: db-config: # 全局逻辑删除的实体字段名(since 3.3.0,配置后可以忽略不配置步骤2) logic-delete-field: deleted # 逻辑已删除值(默认为 1) logic-delete-value: 1 # 逻辑未删除值(默认为 0) logic-not-delete-value: 0 configuration: map-underscore-to-camel-case: true auto-mapping-behavior: full log-impl: org.apache.ibatis.logging.stdout.StdOutImpl use-generated-keys: true mapper-locations: classpath*:mapper/**/*Mapper.xml type-aliases-package: com.jxyunge.oai.mybatis.entity