12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- package com.example.xiaoshiweixinback.domain;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- /**
- * 订单表
- * @TableName order
- */
- @TableName(value ="pay_order")
- @Data
- public class Order extends BaseEntity<Order> {
- /**
- * ID
- */
- private Integer id;
- /**
- * 订单号
- */
- private String tradeNo;
- /**
- * 商品类型 1会员 2订单
- */
- private Integer goodsType;
- /**
- *
- */
- private String goodUuid;
- /**
- * 订单状态
- */
- private Integer orderState;
- /**
- * 原始价格
- */
- private Double orgPrice;
- /**
- *
- */
- private Double discount;
- /**
- * 真实价格
- */
- private Double truePrice;
- /**
- *
- */
- private String personUuid;
- private Integer goodCount;
- /**
- *
- */
- private Date createTime;
- /**
- *
- */
- private Date payTime;
- /**
- * 订单支付参数
- */
- private String orderParameter;
- }
|