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.ProfitLossStatementEbit; import pwc.taxtech.atms.vat.entity.ProfitLossStatementEbitExample; @Mapper public interface ProfitLossStatementEbitMapper extends MyVatMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ long countByExample(ProfitLossStatementEbitExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ int deleteByExample(ProfitLossStatementEbitExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ int deleteByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ int insert(ProfitLossStatementEbit record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ int insertSelective(ProfitLossStatementEbit record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ List<ProfitLossStatementEbit> selectByExampleWithRowbounds(ProfitLossStatementEbitExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ List<ProfitLossStatementEbit> selectByExample(ProfitLossStatementEbitExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ ProfitLossStatementEbit selectByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ int updateByExampleSelective(@Param("record") ProfitLossStatementEbit record, @Param("example") ProfitLossStatementEbitExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ int updateByExample(@Param("record") ProfitLossStatementEbit record, @Param("example") ProfitLossStatementEbitExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ int updateByPrimaryKeySelective(ProfitLossStatementEbit record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table profit_loss_statement_ebit * * @mbg.generated */ int updateByPrimaryKey(ProfitLossStatementEbit record); }