提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.dao; |
潘 |
2 |
|
|
3 |
import com.iailab.framework.mybatis.core.mapper.BaseMapperX; |
58c749
|
4 |
import com.iailab.framework.tenant.core.db.dynamic.TenantDS; |
7fd198
|
5 |
import com.iailab.module.model.mcs.pre.entity.MmModelArithSettingsEntity; |
潘 |
6 |
import org.apache.ibatis.annotations.Mapper; |
|
7 |
|
|
8 |
import java.util.List; |
|
9 |
import java.util.Map; |
|
10 |
|
|
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @date 2021年04月27日 8:58 |
|
14 |
*/ |
58c749
|
15 |
@TenantDS |
7fd198
|
16 |
@Mapper |
潘 |
17 |
public interface MmModelArithSettingsDao extends BaseMapperX<MmModelArithSettingsEntity> { |
|
18 |
|
|
19 |
/** |
|
20 |
* getMmModelArithSettings |
|
21 |
* |
|
22 |
* @param params |
|
23 |
* @return |
|
24 |
*/ |
|
25 |
List<MmModelArithSettingsEntity> getMmModelArithSettings(Map<String, Object> params); |
|
26 |
|
|
27 |
/** |
|
28 |
* insertList |
|
29 |
* |
|
30 |
* @param list |
|
31 |
*/ |
|
32 |
void insertList(List<MmModelArithSettingsEntity> list); |
|
33 |
} |