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