UserHitPrize.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.qs.mp.user.domain;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableName;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. import lombok.Data;
  9. /**
  10. * @describe 用户中奖记录实体类
  11. * @auther quanshu
  12. * @create 2022-03-07 20:45:43
  13. */
  14. @TableName("mp_user_hit_prize")
  15. @Data
  16. public class UserHitPrize implements Serializable {
  17. private static final long serialVersionUID = 1L;
  18. /**
  19. * 主键
  20. */
  21. @TableId(value = "id", type = IdType.AUTO)
  22. private Long id;
  23. /**
  24. * 用户ID
  25. */
  26. @TableField("user_id")
  27. private Long userId;
  28. /**
  29. * 购买订单ID
  30. */
  31. @TableField("order_id")
  32. private String orderId;
  33. /**
  34. * 购买订单明细ID
  35. */
  36. @TableField("order_item_id")
  37. private String orderItemId;
  38. /**
  39. * 盲票ID
  40. */
  41. @TableField("ticket_id")
  42. private String ticketId;
  43. /**
  44. * 奖项ID
  45. */
  46. @TableField("awards_id")
  47. private String awardsId;
  48. /**
  49. * 奖品ID
  50. */
  51. @TableField("prize_id")
  52. private String prizeId;
  53. /**
  54. * 创建时间
  55. */
  56. @TableField("created_time")
  57. private Date createdTime;
  58. /**
  59. * 更新时间
  60. */
  61. @TableField("updated_time")
  62. private Date updatedTime;
  63. }