| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- 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<PaymentLog> 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<OutPaymentLog> selectByPid(Integer id);
- }
|