TKzyRelationClassMapper.java 1020 Bytes
package com.server.web.common.mapper;

import com.server.web.common.model.TKzyRelationClass;
import com.server.web.common.model.TKzyRelationClassExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface TKzyRelationClassMapper {
    long countByExample(TKzyRelationClassExample example);

    int deleteByExample(TKzyRelationClassExample example);

    int deleteByPrimaryKey(Long id);

    int insert(TKzyRelationClass record);

    int insertSelective(TKzyRelationClass record);

    List<TKzyRelationClass> selectByExample(TKzyRelationClassExample example);

    TKzyRelationClass selectByPrimaryKey(Long id);

    int updateByExampleSelective(@Param("record") TKzyRelationClass record, @Param("example") TKzyRelationClassExample example);

    int updateByExample(@Param("record") TKzyRelationClass record, @Param("example") TKzyRelationClassExample example);

    int updateByPrimaryKeySelective(TKzyRelationClass record);

    int updateByPrimaryKey(TKzyRelationClass record);
}