package com.rzyc.mapper; import com.rzyc.bean.Basekpi; import com.rzyc.bean.BasekpiExample; import com.rzyc.bean.TreeModel; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface BasekpiMapper { long countByExample(BasekpiExample example); int deleteByExample(BasekpiExample example); int deleteByPrimaryKey(String basekpiid); int insert(Basekpi record); int insertSelective(Basekpi record); List selectByExample(BasekpiExample example); Basekpi selectByPrimaryKey(String basekpiid); int updateByExampleSelective(@Param("record") Basekpi record, @Param("example") BasekpiExample example); int updateByExample(@Param("record") Basekpi record, @Param("example") BasekpiExample example); int updateByPrimaryKeySelective(Basekpi record); int updateByPrimaryKey(Basekpi record); ListselectDPTree(); }