TBaseSecondClassMapper.java 1004 Bytes
package com.server.web.common.mapper;

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

public interface TBaseSecondClassMapper {
    long countByExample(TBaseSecondClassExample example);

    int deleteByExample(TBaseSecondClassExample example);

    int deleteByPrimaryKey(Long id);

    int insert(TBaseSecondClass record);

    int insertSelective(TBaseSecondClass record);

    List<TBaseSecondClass> selectByExample(TBaseSecondClassExample example);

    TBaseSecondClass selectByPrimaryKey(Long id);

    int updateByExampleSelective(@Param("record") TBaseSecondClass record, @Param("example") TBaseSecondClassExample example);

    int updateByExample(@Param("record") TBaseSecondClass record, @Param("example") TBaseSecondClassExample example);

    int updateByPrimaryKeySelective(TBaseSecondClass record);

    int updateByPrimaryKey(TBaseSecondClass record);
}