| package com.matrix.system.shopXcx.api.vo; | 
|   | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import com.matrix.core.anotations.Extend; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.util.Date; | 
|   | 
| /** | 
|  * @description 积分记录表页面展示对象 | 
|  */ | 
| @Data | 
| @ApiModel(value = "ScoreUseRecordVo", description = "积分记录") | 
| public class ScoreUseRecordVo { | 
|   | 
|     @Extend | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     @ApiModelProperty(value = "ID") | 
|     private Integer  id; | 
|   | 
|     @ApiModelProperty(value = "记录类型(1:现金消费2:员工划扣3赠送等)") | 
|     private Integer  recType; | 
|   | 
|     @ApiModelProperty(value = "调整时间") | 
|     @JsonFormat(pattern = "yyyy-MM-dd HH:mm", timezone="GMT+8") | 
|     private Date createTime; | 
|   | 
|   | 
|     @ApiModelProperty(value = "调整数量") | 
|     private Integer  recNum; | 
|   | 
|     @ApiModelProperty(value = "业务记录ID") | 
|     private Long  businessId; | 
|   | 
|   | 
|   | 
|     @ApiModelProperty(value = "调整后余额") | 
|     private Integer  nowScore; | 
|   | 
|     @ApiModelProperty(value = "操作人") | 
|     private String  optionName; | 
|   | 
|     @ApiModelProperty(value = "调整门店") | 
|     private String shopName; | 
|      | 
|   | 
|     @ApiModelProperty(value = "备注") | 
|     private String  remarks; | 
|   | 
|   | 
|   | 
|    | 
| } |