Interface MyBatisPlusConfig.DbConfig

Enclosing interface:
MyBatisPlusConfig

public static interface MyBatisPlusConfig.DbConfig
  • Method Details

    • idType

      @WithName("id-type") @WithDefault("ASSIGN_ID") Optional<String> idType()
      MyBatis-plus globalConfig dbConfig idType
    • tablePrefix

      @WithName("table-prefix") Optional<String> tablePrefix()
      MyBatis-plus globalConfig dbConfig tablePrefix
    • schema

      @WithName("schema") Optional<String> schema()
      MyBatis-plus globalConfig dbConfig schema
    • columnFormat

      @WithName("column-format") Optional<String> columnFormat()
      MyBatis-plus globalConfig dbConfig columnFormat
    • tableFormat

      @WithName("table-format") Optional<String> tableFormat()
      MyBatis-plus globalConfig dbConfig tableFormat
    • propertyFormat

      @WithName("property-format") Optional<String> propertyFormat()
      MyBatis-plus globalConfig dbConfig propertyFormat
    • tableUnderline

      @WithName("table-underline") @WithDefault("true") boolean tableUnderline()
      MyBatis-plus globalConfig dbConfig tableUnderline
    • capitalMode

      @WithName("capital-mode") @WithDefault("false") boolean capitalMode()
      MyBatis-plus globalConfig dbConfig capitalMode
    • keyGenerator

      @WithName("key-generator") Optional<String> keyGenerator()
      MyBatis-plus globalConfig dbConfig keyGenerator
    • logicDeleteField

      @WithName("logic-delete-field") Optional<String> logicDeleteField()
      MyBatis-plus globalConfig dbConfig logicDeleteField
    • logicDeleteValue

      @WithName("logic-delete-value") @WithDefault("1") String logicDeleteValue()
      MyBatis-plus globalConfig dbConfig logicDeleteValue
    • logicNotDeleteValue

      @WithName("logic-not-delete-value") @WithDefault("0") String logicNotDeleteValue()
      MyBatis-plus globalConfig dbConfig logicNotDeleteValue
    • insertStrategy

      @WithName("insert-strategy") @WithDefault("NOT_NULL") String insertStrategy()
      MyBatis-plus globalConfig dbConfig insertStrategy
    • updateStrategy

      @WithName("update-strategy") @WithDefault("NOT_NULL") String updateStrategy()
      MyBatis-plus globalConfig dbConfig updateStrategy
    • whereStrategy

      @WithName("where-strategy") @WithDefault("NOT_NULL") String whereStrategy()
      MyBatis-plus globalConfig dbConfig whereStrategy