UserTicketOrderItem.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 com.baomidou.mybatisplus.annotation.Version;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Data;
  10. /**
  11. * @describe 用户盲票订单明细实体类
  12. * @auther quanshu
  13. * @create 2022-03-07 20:45:43
  14. */
  15. @TableName("mp_user_ticket_order_item")
  16. @Data
  17. public class UserTicketOrderItem implements Serializable {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 主键
  21. */
  22. @TableId(value = "item_id", type = IdType.INPUT)
  23. private String itemId;
  24. /**
  25. * 订单ID
  26. */
  27. @TableField("order_id")
  28. private String orderId;
  29. /**
  30. * 用户ID
  31. */
  32. @TableField("user_id")
  33. private Long userId;
  34. /**
  35. * 盲票组ID
  36. */
  37. @TableField("box_id")
  38. private String boxId;
  39. /**
  40. * 盲票ID
  41. */
  42. @TableField("ticket_id")
  43. private String ticketId;
  44. /**
  45. * 线下购买渠道ID
  46. */
  47. @TableField("channel_id")
  48. private Long channelId;
  49. /**
  50. * 创建时间
  51. */
  52. @TableField("created_time")
  53. private Date createdTime;
  54. /**
  55. * 更新时间
  56. */
  57. @TableField("updated_time")
  58. @Version
  59. private Date updatedTime;
  60. }