DS
潘志宝
2024-08-23 0fbd01c6fe5386e454d4053df161b01e8b42f423
1
2
3
4
5
6
7
8
9
10
11
12
package com.iailab.module.data.http.dao;
 
import com.iailab.framework.common.dao.BaseDao;
import com.iailab.framework.tenant.core.db.dynamic.TenantDS;
import com.iailab.module.data.http.entity.HttpTokenEntity;
import org.apache.ibatis.annotations.Mapper;
 
@TenantDS
@Mapper
public interface HttpTokenDao extends BaseDao<HttpTokenEntity> {
 
}