TaPointsExchange.java 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. package com.huiju.estateagents.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.experimental.Accessors;
  8. import java.io.Serializable;
  9. import java.time.LocalDateTime;
  10. /**
  11. * <p>
  12. * 积分兑换记录
  13. * </p>
  14. *
  15. * @author jobob
  16. * @since 2019-07-25
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. public class TaPointsExchange implements Serializable {
  22. private static final long serialVersionUID = 1L;
  23. /**
  24. * 记录ID
  25. */
  26. @TableId(value = "rec_id", type = IdType.AUTO)
  27. private Integer recId;
  28. /**
  29. * 兑换人
  30. */
  31. private String personId;
  32. /**
  33. * 兑换人姓名
  34. */
  35. private String personName;
  36. /**
  37. * 兑换人手机
  38. */
  39. private String phone;
  40. /**
  41. * 兑换人头像
  42. */
  43. private String avatar;
  44. /**
  45. * 兑换物品
  46. */
  47. private String targetId;
  48. /**
  49. * 物品名称
  50. */
  51. private String targetName;
  52. /**
  53. * 物品图片
  54. */
  55. private String image;
  56. /**
  57. * 消耗积分
  58. */
  59. private Integer points;
  60. /**
  61. * 领取地址
  62. */
  63. private String address;
  64. /**
  65. * 状态
  66. */
  67. private Integer status;
  68. /**
  69. * 过期时间
  70. */
  71. private LocalDateTime expiredDate;
  72. /**
  73. * 创建时间
  74. */
  75. private LocalDateTime createDate;
  76. /**
  77. * 领取时间
  78. */
  79. private LocalDateTime verifyDate;
  80. /**
  81. * 公司id
  82. */
  83. private Integer orgId;
  84. /**
  85. * 楼盘id
  86. */
  87. private String buildingId;
  88. @TableField(exist = false)
  89. private String personType;
  90. @TableField(exist = false)
  91. private String startCreateDate;
  92. @TableField(exist = false)
  93. private String endCreateDate;
  94. @TableField(exist = false)
  95. private String startVerifyDate;
  96. @TableField(exist = false)
  97. private String endVerifyDate;
  98. @TableField(exist = false)
  99. private String tel;
  100. @TableField(exist = false)
  101. private String roomInfo;
  102. @TableField(exist = false)
  103. private Integer propId;
  104. }