提交 | 用户 | 时间 | ||
200ade | 1 | package com.iailab.module.model.mpk.dao; |
D | 2 | |
3 | import com.iailab.framework.common.dao.BaseDao; | |
4 | import com.iailab.framework.tenant.core.db.dynamic.TenantDS; | |
5 | import com.iailab.module.model.mpk.entity.ChartEntity; | |
6 | import org.apache.ibatis.annotations.Mapper; | |
7 | ||
8 | /** | |
9 | * @description: | |
10 | * @author: dzd | |
11 | * @date: 2024/11/5 11:19 | |
12 | **/ | |
13 | @TenantDS | |
14 | @Mapper | |
15 | public interface ChartDao extends BaseDao<ChartEntity> { | |
16 | ||
17 | } |