Air
2024-11-04 2016903d06e308f44b9463fcd4029850ababf152
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
package com.nova.sankuai.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author weikangdi
 * @create 2021/11/10
 */
@Data
@ApiModel("扣款记录")
public class DeductionRecord {
 
    /**
     * 正常扣费
     */
    public static int STATUS_NORMAL = 0;
    /**
     * 系统扣费
     */
    public static int STATUS_REFUND = 1;
 
    @ApiModelProperty(value = "主键")
    @TableId
    private Long id;
 
    @ApiModelProperty(value = "机构ID")
    private Long mechanismId;
 
    @ApiModelProperty(value = "扣款金额")
    private Double deductionAmount;
 
    @ApiModelProperty(value = "创建时间")
    private Date creationDate;
 
    @ApiModelProperty(value = "客户记录Id")
    private Long customerRecordId;
 
    @ApiModelProperty(value = "状态 0-正常 1-系统扣费")
    private Integer status;
 
    @ApiModelProperty(value = "备注")
    private String memo;
}