租户管理的代码框架

This commit is contained in:
zhonghua1
2025-12-20 17:23:07 +08:00
parent 1c5a6eee8b
commit 08bc957bd0
5 changed files with 363 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.Tenant;
import org.apache.ibatis.annotations.Mapper;
/**
* <p>
* 租户表 Mapper 接口
* </p>
*
* @author 系统生成
* @since 2025-01-XX
*/
@Mapper
public interface TenantMapper extends BaseMapper<Tenant> {
}