package com.goafanti.common.dao; import com.goafanti.common.model.PaymentLog; import com.goafanti.common.model.PaymentLogExample; import com.goafanti.organization.bo.OutPaymentLog; import java.util.List; import org.apache.ibatis.annotations.Param; public interface PaymentLogMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ long countByExample(PaymentLogExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ int deleteByExample(PaymentLogExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ int insert(PaymentLog record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ int insertSelective(PaymentLog record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ List selectByExample(PaymentLogExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ PaymentLog selectByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ int updateByExampleSelective(@Param("record") PaymentLog record, @Param("example") PaymentLogExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ int updateByExample(@Param("record") PaymentLog record, @Param("example") PaymentLogExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ int updateByPrimaryKeySelective(PaymentLog record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table payment_log * * @mbg.generated Tue Jun 16 11:20:47 CST 2020 */ int updateByPrimaryKey(PaymentLog record); List selectByPid(Integer id); }