Order.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package com.example.xiaoshiweixinback.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. * 订单表
  11. * @TableName order
  12. */
  13. @TableName(value ="pay_order")
  14. @Data
  15. public class Order extends BaseEntity<Order> {
  16. /**
  17. * ID
  18. */
  19. private Integer id;
  20. /**
  21. * 订单号
  22. */
  23. private String tradeNo;
  24. /**
  25. * 商品类型 1会员 2订单
  26. */
  27. private Integer goodsType;
  28. /**
  29. *
  30. */
  31. private String goodUuid;
  32. /**
  33. * 订单状态
  34. */
  35. private Integer orderState;
  36. /**
  37. * 原始价格
  38. */
  39. private Double orgPrice;
  40. /**
  41. *
  42. */
  43. private Double discount;
  44. /**
  45. * 真实价格
  46. */
  47. private Double truePrice;
  48. /**
  49. *
  50. */
  51. private String personUuid;
  52. private Integer goodCount;
  53. /**
  54. *
  55. */
  56. private Date createTime;
  57. /**
  58. *
  59. */
  60. private Date payTime;
  61. /**
  62. * 订单支付参数
  63. */
  64. private String orderParameter;
  65. }