提交 | 用户 | 时间 | ||
a6de49 | 1 | package com.iailab.module.data.ind.dao; |
H | 2 | |
3 | import com.iailab.framework.common.dao.BaseDao; | |
0fbd01 | 4 | import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
a6de49 | 5 | import com.iailab.module.data.ind.entity.IndItemCalEntity; |
H | 6 | import org.apache.ibatis.annotations.Mapper; |
7 | ||
8 | /** | |
9 | * @author PanZhibao | |
10 | * @Description | |
11 | * @createTime 2024年05月25日 | |
12 | */ | |
0fbd01 | 13 | @TenantDS |
a6de49 | 14 | @Mapper |
H | 15 | public interface IndItemCalDao extends BaseDao<IndItemCalEntity> { |
16 | } |