BranchOfficeInfoMapper.java 2.9 KB

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