1
sunshine
2024-11-05 92a9e53e82c74d36a72eb92f93777bbb16e2db73
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
package com.nova.sankuai.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @author weikangdi
 * @create 2021/11/10
 */
@ApiModel("充值记录VO")
@Data
public class RechargeRecordVo {
 
    @ApiModelProperty(value = "主键")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;
 
    @ApiModelProperty(value = "机构手机号")
    private String phone;
 
    @ApiModelProperty(value = "机构ID")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long mechanismId;
 
    @ApiModelProperty(value = "机构名")
    private String mechanismName;
 
    @ApiModelProperty(value = "充值金额")
    private Double rechargeAmount;
 
    @ApiModelProperty(value = "消耗金额")
    private Double useAmount;
 
    @ApiModelProperty(value = "充值时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date creationDate;
 
    @ApiModelProperty(value = "状态 0-正常 1-退费")
    private Integer status;
 
    @ApiModelProperty(value = "备注")
    private String memo;
 
}