package com.farriver.bwf.data.master.mapper; import com.farriver.bwf.data.master.model.SystemMenu; import com.farriver.bwf.data.master.model.SystemMenuExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface SystemMenuMapper { long countByExample(SystemMenuExample example); int deleteByExample(SystemMenuExample example); int deleteByPrimaryKey(String id); int insert(SystemMenu record); int insertSelective(SystemMenu record); List selectByExample(SystemMenuExample example); SystemMenu selectByPrimaryKey(String id); int updateByExampleSelective(@Param("record") SystemMenu record, @Param("example") SystemMenuExample example); int updateByExample(@Param("record") SystemMenu record, @Param("example") SystemMenuExample example); int updateByPrimaryKeySelective(SystemMenu record); int updateByPrimaryKey(SystemMenu record); }