package cc.mrbird.febs.mall.vo; 
 | 
  
 | 
import com.fasterxml.jackson.annotation.JsonFormat; 
 | 
import io.swagger.annotations.ApiModel; 
 | 
import lombok.Data; 
 | 
  
 | 
import java.util.Date; 
 | 
  
 | 
@Data 
 | 
@ApiModel(value = "AdminRankAwardVo", description = "信息返回类") 
 | 
public class AdminMemberOrderVo { 
 | 
  
 | 
    private Long orderId; 
 | 
  
 | 
    private String memberName; 
 | 
  
 | 
    private String memberPhone; 
 | 
  
 | 
    private String memberAddress; 
 | 
  
 | 
    private String orderNo; 
 | 
  
 | 
    private String orderAmount; 
 | 
  
 | 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") 
 | 
    private Date createdTime; 
 | 
  
 | 
} 
 |