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;
|
}
|