PrizeOpportunityMapper.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.hssx.mapper;
  2. import com.hssx.entity.PrizeOpportunity;
  3. import com.hssx.entity.PrizeOpportunityExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface PrizeOpportunityMapper {
  7. /**
  8. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  9. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  10. */
  11. long countByExample(PrizeOpportunityExample example);
  12. /**
  13. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  14. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  15. */
  16. int deleteByExample(PrizeOpportunityExample example);
  17. /**
  18. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  19. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  20. */
  21. int deleteByPrimaryKey(Integer id);
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  24. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  25. */
  26. int insert(PrizeOpportunity record);
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  29. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  30. */
  31. int insertSelective(PrizeOpportunity record);
  32. /**
  33. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  34. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  35. */
  36. List<PrizeOpportunity> selectByExample(PrizeOpportunityExample example);
  37. /**
  38. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  39. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  40. */
  41. PrizeOpportunity selectByPrimaryKey(Integer id);
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  44. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  45. */
  46. int updateByExampleSelective(@Param("record") PrizeOpportunity record,
  47. @Param("example") PrizeOpportunityExample example);
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  50. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  51. */
  52. int updateByExample(@Param("record") PrizeOpportunity record, @Param("example") PrizeOpportunityExample example);
  53. /**
  54. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  55. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  56. */
  57. int updateByPrimaryKeySelective(PrizeOpportunity record);
  58. /**
  59. * This method was generated by MyBatis Generator. This method corresponds to the database table mini_prize_opportunity
  60. * @mbg.generated Mon Sep 23 14:20:05 CST 2019
  61. */
  62. int updateByPrimaryKey(PrizeOpportunity record);
  63. int selectCountByToday(@Param("uid")String uid);
  64. }