|
|
|
@@ -2,6 +2,7 @@ package com.iformall.domain.po; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField; |
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.iformall.domain.po.base.TenantEntity; |
|
|
|
import lombok.Data; |
|
|
|
import lombok.EqualsAndHashCode; |
|
|
|
@@ -30,6 +31,7 @@ public class WxCouponOrder extends TenantEntity { |
|
|
|
private Long bUserId; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "用户订单ID", name = "orderId") |
|
|
|
private Long orderId; |
|
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "该订单对应券的实际过期时间 ", name = "expiredTime") |
|
|
|
private Date expiredTime; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "状态:0-待使用 1-已核销 2-已过期 3-已作废 4-卡使用中 5-卡已过期 6-卡已用完 7-卡已线下退款 100-预核销", name = "couponOrderStatus") |
|
|
|
|