UserCollect.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package WebsiteES.myBatis;
  2. public class UserCollect {
  3. /**
  4. * This field was generated by MyBatis Generator.
  5. * This field corresponds to the database column user_collect.user_collect_Id
  6. *
  7. * @mbggenerated
  8. */
  9. private Long userCollectId;
  10. /**
  11. * This field was generated by MyBatis Generator.
  12. * This field corresponds to the database column user_collect.goodId
  13. *
  14. * @mbggenerated
  15. */
  16. private Long goodid;
  17. /**
  18. * This method was generated by MyBatis Generator.
  19. * This method returns the value of the database column user_collect.user_collect_Id
  20. *
  21. * @return the value of user_collect.user_collect_Id
  22. *
  23. * @mbggenerated
  24. */
  25. public Long getUserCollectId() {
  26. return userCollectId;
  27. }
  28. /**
  29. * This method was generated by MyBatis Generator.
  30. * This method sets the value of the database column user_collect.user_collect_Id
  31. *
  32. * @param userCollectId the value for user_collect.user_collect_Id
  33. *
  34. * @mbggenerated
  35. */
  36. public void setUserCollectId(Long userCollectId) {
  37. this.userCollectId = userCollectId;
  38. }
  39. /**
  40. * This method was generated by MyBatis Generator.
  41. * This method returns the value of the database column user_collect.goodId
  42. *
  43. * @return the value of user_collect.goodId
  44. *
  45. * @mbggenerated
  46. */
  47. public Long getGoodid() {
  48. return goodid;
  49. }
  50. /**
  51. * This method was generated by MyBatis Generator.
  52. * This method sets the value of the database column user_collect.goodId
  53. *
  54. * @param goodid the value for user_collect.goodId
  55. *
  56. * @mbggenerated
  57. */
  58. public void setGoodid(Long goodid) {
  59. this.goodid = goodid;
  60. }
  61. }