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

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

There is a newer version: 1.6.8
Show newest version
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