All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zodiac.mybatisplus.constants.MyBatisPlusSystemPropertiesConstants Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package org.zodiac.mybatisplus.constants;

public interface MyBatisPlusSystemPropertiesConstants {

    String MYBATIS_PLUS_PREFIX = "mybatis-plus";

    String MYBATIS_PLUS_SMART_ENUM = MYBATIS_PLUS_PREFIX + ".smart-enum";
    String MYBATIS_PLUS_JOIN_BATCH_SIZE = MYBATIS_PLUS_PREFIX + ".join-batch-size";

    /*The following are the official settings of MyBatis-Plus.*/
    String MYBATIS_PLUS_TYPE_HANDLERS_PACKAGE = String.format("%s.type-handlers-package", MYBATIS_PLUS_PREFIX);
    String MYBATIS_PLUS_GLOBAL_CONFIG_DB_CONFIG_ID_TYPE = String.format("%s.global-config.db-config.id-type", MYBATIS_PLUS_PREFIX);
    String MYBATIS_PLUS_GLOBAL_CONFIG_DB_CONFIG_LOGIC_NOT_DELETE_VALUE = String.format("%s.global-config.db-config.logic-not-delete-value", MYBATIS_PLUS_PREFIX);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy