Administrator
2025-05-15 1fc8fde81cbf79ebe95e927f9099cf94c2ccc6e5
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;
}