Administrator
2025-05-09 5edd20eeb792e3dcad99554046f6e3c41a2af430
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
package cc.mrbird.febs.mall.vo.activity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class AdminHappyActivityOrderCheckVo {
 
    private String checkName;
    private String checkRealName;
    private String checkPhone;
 
    private Long id;
    private String code;
    private String name;
    private String phone;
    private String address;
    private Integer state;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date updatedTime;
}