![JAR search and dependency download from the Maven repository](/logo.png)
org.zodiac.mybatisplus.constants.MyBatisPlusConstants Maven / Gradle / Ivy
package org.zodiac.mybatisplus.constants;
import org.zodiac.mybatis.constants.MyBatisConstants;
public interface MyBatisPlusConstants extends MyBatisConstants {
String ID_TYPE_AUTO = "auto";
Integer SEALED_FALSE = 0;
Integer SEALED_TRUE = 1;
/**
* 业务状态[1:正常]
*/
Integer DB_STATUS_NORMAL = 1;
/**
* 租户字段名
*/
String DB_TENANT_KEY = "tenantId";
/**
* 租户字段get方法
*/
String DB_TENANT_KEY_GET_METHOD = "getTenantId";
/**
* 租户字段set方法
*/
String DB_TENANT_KEY_SET_METHOD = "setTenantId";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy