提交 | 用户 | 时间 | ||
a6de49 | 1 | package com.iailab.module.data.http.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.http.entity.HttpApiEntity; |
H | 6 | import org.apache.ibatis.annotations.Mapper; |
7 | ||
0fbd01 | 8 | @TenantDS |
a6de49 | 9 | @Mapper |
H | 10 | public interface HttpApiDao extends BaseDao<HttpApiEntity> { |
11 | } |