| | |
| | | package cc.mrbird.febs.mall.entity; |
| | | |
| | | import cc.mrbird.febs.common.entity.BaseEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | |
| | | `order_no` varchar(32) DEFAULT NULL COMMENT '订单号', |
| | | `pay_order_no` text COMMENT '支付订单号', |
| | | `wx_order_no` varchar(100) DEFAULT NULL COMMENT '微信订单编号', |
| | | `state` int(11) DEFAULT '1' COMMENT '订单状态 1-待支付 2-待使用 3-已使用 4-售后', |
| | | `fail_time` datetime DEFAULT NULL COMMENT '失效时间', |
| | | */ |
| | | |
| | | |
| | |
| | | private String orderNo; |
| | | private String payOrderNo; |
| | | private String wxOrderNo; |
| | | private Integer state; |
| | | private Date failTime; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | private String name;// |
| | | |
| | | @TableField(exist = false) |
| | | private String activityName;// |
| | | } |