package com.changhong.epc.tenant.mapper.tenant.norm; import java.util.List; import org.apache.ibatis.annotations.Param; import com.changhong.epc.bean.tenant.master.MasterElement; import com.changhong.epc.bean.tenant.master.extend.MasterElementExtend; import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper; public interface MasterElementMapper extends MybatisBaseMapper { List selectByCode(@Param("code") String defineCode); List elementInfos(@Param("code") String code); String geteleCode(@Param("code") String code,@Param("type")String type); int deleteAll(); Integer updateAlias(@Param("defineCode")String defineCode,@Param("eleCode")String eleCode,@Param("alias")String alias); List valueToCode(@Param("code")String code); }