TaskAttributionLogMapper.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.goafanti.common.dao;
  2. import java.util.Date;
  3. import java.util.List;
  4. import org.apache.ibatis.annotations.Param;
  5. import com.goafanti.common.model.TaskAttributionLog;
  6. import com.goafanti.order.bo.taskAttributionLogBo;
  7. public interface TaskAttributionLogMapper {
  8. /**
  9. * This method was generated by MyBatis Generator. This method corresponds to the database table task_attribution_log
  10. * @mbg.generated Fri May 14 13:44:50 CST 2021
  11. */
  12. int deleteByPrimaryKey(Integer id);
  13. /**
  14. * This method was generated by MyBatis Generator. This method corresponds to the database table task_attribution_log
  15. * @mbg.generated Fri May 14 13:44:50 CST 2021
  16. */
  17. int insert(TaskAttributionLog record);
  18. /**
  19. * This method was generated by MyBatis Generator. This method corresponds to the database table task_attribution_log
  20. * @mbg.generated Fri May 14 13:44:50 CST 2021
  21. */
  22. int insertSelective(TaskAttributionLog record);
  23. /**
  24. * This method was generated by MyBatis Generator. This method corresponds to the database table task_attribution_log
  25. * @mbg.generated Fri May 14 13:44:50 CST 2021
  26. */
  27. TaskAttributionLog selectByPrimaryKey(Integer id);
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table task_attribution_log
  30. * @mbg.generated Fri May 14 13:44:50 CST 2021
  31. */
  32. int updateByPrimaryKeySelective(TaskAttributionLog record);
  33. /**
  34. * This method was generated by MyBatis Generator. This method corresponds to the database table task_attribution_log
  35. * @mbg.generated Fri May 14 13:44:50 CST 2021
  36. */
  37. int updateByPrimaryKey(TaskAttributionLog record);
  38. List<taskAttributionLogBo> selectByTid(Integer tid);
  39. void insertList(@Param("aid")String aid, @Param("transferId")String transferId, @Param("date")Date date);
  40. }