OrganizationMapper.java 2.9 KB

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