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