commit | author | age
|
a18bfa
|
1 |
package com.changhong.epc.admin.mapper.centen.corres; |
Z |
2 |
|
|
3 |
import java.util.List; |
|
4 |
|
|
5 |
import org.apache.ibatis.annotations.Param; |
|
6 |
import com.changhong.epc.bean.admin.CorresElField; |
|
7 |
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper; |
|
8 |
|
|
9 |
public interface CorresElFieldMapper extends MybatisBaseMapper<CorresElField>{ |
|
10 |
|
|
11 |
//逻辑删除常量 |
|
12 |
int deleteCorres(@Param("corr") CorresElField corr); |
|
13 |
|
|
14 |
//通过常量获取mdcode |
|
15 |
List<String> getMdCode(@Param("bmcode") String bmcode); |
|
16 |
|
|
17 |
List<CorresElField> getCorresElField(@Param("corr") CorresElField corr); |
|
18 |
|
|
19 |
String getCodeByMeaning(@Param("flag")String flag); |
|
20 |
} |