org.zodiac.mybatisplus.constants.MyBatisPlusSystemPropertiesConstants Maven / Gradle / Ivy
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);
}