PersonnelPromotionMapper.java 3.1 KB

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