1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.iailab.module.model.mpk.dao;
|
| import com.iailab.framework.common.dao.BaseDao;
| import com.iailab.framework.tenant.core.db.dynamic.TenantDS;
| import com.iailab.module.model.mpk.entity.GeneratorCodeHistoryEntity;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @description: 生成代码记录表
| * @author: dzd
| * @date: 2024/8/20 11:49
| **/
| @TenantDS
| @Mapper
| public interface GeneratorCodeHistoryDao extends BaseDao<GeneratorCodeHistoryEntity> {
|
| }
|
|