TChangeTaskMapper.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.TChangeTask;
  3. import com.goafanti.common.model.TChangeTaskExample;
  4. import com.goafanti.order.bo.TChangeTaskOut;
  5. import java.util.List;
  6. import org.apache.ibatis.annotations.Param;
  7. public interface TChangeTaskMapper {
  8. /**
  9. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  10. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  11. */
  12. long countByExample(TChangeTaskExample example);
  13. /**
  14. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  15. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  16. */
  17. int deleteByExample(TChangeTaskExample example);
  18. /**
  19. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  20. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  21. */
  22. int deleteByPrimaryKey(Integer id);
  23. /**
  24. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  25. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  26. */
  27. int insert(TChangeTask record);
  28. /**
  29. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  30. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  31. */
  32. int insertSelective(TChangeTask record);
  33. /**
  34. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  35. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  36. */
  37. List<TChangeTask> selectByExample(TChangeTaskExample example);
  38. /**
  39. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  40. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  41. */
  42. TChangeTask selectByPrimaryKey(Integer id);
  43. /**
  44. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  45. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  46. */
  47. int updateByExampleSelective(@Param("record") TChangeTask record, @Param("example") TChangeTaskExample example);
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  50. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  51. */
  52. int updateByExample(@Param("record") TChangeTask record, @Param("example") TChangeTaskExample example);
  53. /**
  54. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  55. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  56. */
  57. int updateByPrimaryKeySelective(TChangeTask record);
  58. /**
  59. * This method was generated by MyBatis Generator. This method corresponds to the database table t_changge_task
  60. * @mbg.generated Mon Jan 13 09:27:33 CST 2020
  61. */
  62. int updateByPrimaryKey(TChangeTask record);
  63. void insertSelectiveList(@Param("list")List<TChangeTask> list);
  64. List<TChangeTaskOut> selectByCid(Integer id);
  65. }