UserPrizeCount.java 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package com.hssx.entity;
  2. import java.util.Date;
  3. public class UserPrizeCount {
  4. /**
  5. * This field was generated by MyBatis Generator. This field corresponds to the database column mini_user_prize_count.id
  6. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  7. */
  8. private Integer id;
  9. /**
  10. * This field was generated by MyBatis Generator. This field corresponds to the database column mini_user_prize_count.user_id
  11. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  12. */
  13. private String userId;
  14. /**
  15. * This field was generated by MyBatis Generator. This field corresponds to the database column mini_user_prize_count.indate
  16. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  17. */
  18. private Date indate;
  19. /**
  20. * This method was generated by MyBatis Generator. This method returns the value of the database column mini_user_prize_count.id
  21. * @return the value of mini_user_prize_count.id
  22. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  23. */
  24. public Integer getId() {
  25. return id;
  26. }
  27. /**
  28. * This method was generated by MyBatis Generator. This method sets the value of the database column mini_user_prize_count.id
  29. * @param id the value for mini_user_prize_count.id
  30. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  31. */
  32. public void setId(Integer id) {
  33. this.id = id;
  34. }
  35. /**
  36. * This method was generated by MyBatis Generator. This method returns the value of the database column mini_user_prize_count.user_id
  37. * @return the value of mini_user_prize_count.user_id
  38. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  39. */
  40. public String getUserId() {
  41. return userId;
  42. }
  43. /**
  44. * This method was generated by MyBatis Generator. This method sets the value of the database column mini_user_prize_count.user_id
  45. * @param userId the value for mini_user_prize_count.user_id
  46. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  47. */
  48. public void setUserId(String userId) {
  49. this.userId = userId;
  50. }
  51. /**
  52. * This method was generated by MyBatis Generator. This method returns the value of the database column mini_user_prize_count.indate
  53. * @return the value of mini_user_prize_count.indate
  54. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  55. */
  56. public Date getIndate() {
  57. return indate;
  58. }
  59. /**
  60. * This method was generated by MyBatis Generator. This method sets the value of the database column mini_user_prize_count.indate
  61. * @param indate the value for mini_user_prize_count.indate
  62. * @mbg.generated Mon Sep 23 14:30:35 CST 2019
  63. */
  64. public void setIndate(Date indate) {
  65. this.indate = indate;
  66. }
  67. }