37 lines
969 B
Java
37 lines
969 B
Java
|
|
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<Basekpi> 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);
|
||
|
|
|
||
|
|
List<TreeModel>selectDPTree();
|
||
|
|
}
|