| 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; | 
| } |