PersonnelMidMapper.java 2.8 KB

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