package com.moral.mapper; import java.util.List; import com.moral.common.mapper.BaseMapper; import com.moral.entity.RoleMenu; import tk.mybatis.mapper.entity.Example; public interface RoleMenuMapper extends BaseMapper { List getRoleMenuList(Example example); int deleteByPrimaryKeyOwn(Integer id); int updateByPrimaryKey(RoleMenu roleMenu); }