提交 | 用户 | 时间
|
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; |
826d35
|
7 |
import org.apache.ibatis.annotations.Param; |
7fd198
|
8 |
|
潘 |
9 |
import java.util.List; |
|
10 |
import java.util.Map; |
|
11 |
|
|
12 |
/** |
|
13 |
* @author PanZhibao |
|
14 |
* @date 2021年04月27日 8:58 |
|
15 |
*/ |
58c749
|
16 |
@TenantDS |
7fd198
|
17 |
@Mapper |
潘 |
18 |
public interface MmModelArithSettingsDao extends BaseMapperX<MmModelArithSettingsEntity> { |
|
19 |
|
|
20 |
/** |
|
21 |
* getMmModelArithSettings |
|
22 |
* |
|
23 |
* @param params |
|
24 |
* @return |
|
25 |
*/ |
|
26 |
List<MmModelArithSettingsEntity> getMmModelArithSettings(Map<String, Object> params); |
|
27 |
|
|
28 |
/** |
|
29 |
* insertList |
|
30 |
* |
|
31 |
* @param list |
|
32 |
*/ |
|
33 |
void insertList(List<MmModelArithSettingsEntity> list); |
826d35
|
34 |
|
D |
35 |
void updatePyFile(@Param("likeValue") String likeValue,@Param("value") String value); |
7fd198
|
36 |
} |