commit | author | age | ||
a18bfa | 1 | package com.changhong.epc.parsing.mapper.tenant.master; |
Z | 2 | |
3 | import com.changhong.epc.bean.tenant.master.MasterElement; | |
4 | import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper; | |
5 | import org.apache.ibatis.annotations.Param; | |
6 | ||
7 | import java.util.List; | |
8 | ||
9 | public interface MasterElementMapper extends MybatisBaseMapper<MasterElement> { | |
10 | ||
11 | List<MasterElement> selectEle(@Param("code") String code); | |
12 | } |