package com.zteits.job.mapper; import com.zteits.job.domain.TpPBerths; import com.zteits.job.domain.TpPBerthsExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface TpPBerthsMapper { long countByExample(TpPBerthsExample example); int deleteByExample(TpPBerthsExample example); int deleteByPrimaryKey(Long id); int insert(TpPBerths record); int insertSelective(TpPBerths record); List selectByExample(TpPBerthsExample example); TpPBerths selectByPrimaryKey(Long id); int updateByExampleSelective(@Param("record") TpPBerths record, @Param("example") TpPBerthsExample example); int updateByExample(@Param("record") TpPBerths record, @Param("example") TpPBerthsExample example); int updateByPrimaryKeySelective(TpPBerths record); int updateByPrimaryKey(TpPBerths record); }