peng
6 天以前 1fc2dd17221f97eb3da1b4f9d81225ac8743e0ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package cn.lili.modules.lmk.domain.vo;
 
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * lmk-shop-java
 *
 * @author : zxl
 * @date : 2025-09-12 15:19
 **/
@Data
public class CouponVirtualVOInfo {
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    private String orderId;
 
 
 
    private String itemOrderId;
 
 
    private String goodsId;
 
 
    private String skuId;
 
 
    private String skuName;
 
 
    private String couponId;
 
 
    private String couponNo;
 
 
    private String couponName;
 
 
    private String userId;
 
 
    private String userNickname;
 
    /** 领取时间 */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date claimTime;
 
    /** 领取时间 */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
    /** 名称 */
    private String name;
 
    /** 是否分享 */
    private String shareStatus;
 
    /** 是否领取 */
    private String claimStatus;
 
    private String goodsUrl;
}