ThirdPartyCompanyMapper.java 3.1 KB

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