jyy
2021-04-09 1443f8eb9f3b001e84f101852aa5f6ec7f49f4c9
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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;
 
 
 
  
}