提交 | 用户 | 时间
|
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.ProjectPackageHistoryModelEntity; |
D |
6 |
import org.apache.ibatis.annotations.Mapper; |
|
7 |
|
558ffc
|
8 |
import java.util.Collection; |
D |
9 |
|
449017
|
10 |
/** |
D |
11 |
* @description: |
|
12 |
* @author: dzd |
|
13 |
* @date: 2024/8/22 14:41 |
|
14 |
**/ |
8b3ee3
|
15 |
@TenantDS |
449017
|
16 |
@Mapper |
D |
17 |
public interface ProjectPackageHistoryModelDao extends BaseDao<ProjectPackageHistoryModelEntity> { |
558ffc
|
18 |
|
D |
19 |
void insertBatch(Collection<ProjectPackageHistoryModelEntity> entityList); |
449017
|
20 |
} |