package pwc.taxtech.atms.vat.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyVatMapper; import pwc.taxtech.atms.vat.entity.TrialBalanceMapping; import pwc.taxtech.atms.vat.entity.TrialBalanceMappingExample; @Mapper public interface TrialBalanceMappingMapper extends MyVatMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ long countByExample(TrialBalanceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ int deleteByExample(TrialBalanceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ int deleteByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ int insert(TrialBalanceMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ int insertSelective(TrialBalanceMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ List<TrialBalanceMapping> selectByExampleWithRowbounds(TrialBalanceMappingExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ List<TrialBalanceMapping> selectByExample(TrialBalanceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ TrialBalanceMapping selectByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ int updateByExampleSelective(@Param("record") TrialBalanceMapping record, @Param("example") TrialBalanceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ int updateByExample(@Param("record") TrialBalanceMapping record, @Param("example") TrialBalanceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ int updateByPrimaryKeySelective(TrialBalanceMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table trial_balance_mapping * * @mbg.generated */ int updateByPrimaryKey(TrialBalanceMapping record); }