package com.ruoyi.system.domain;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Data
|
public class FundsLog {
|
|
/**
|
* 主键ID
|
*/
|
private Long id;
|
|
/**
|
* 用户ID
|
*/
|
private Integer userId;
|
|
/**
|
* 账号
|
*/
|
private String account;
|
|
/**
|
* 操作类型
|
* 1-后台充值 2-后台扣款 3-用户下单 4-退款
|
*/
|
private Integer operationType;
|
|
/**
|
* 操作金额
|
*/
|
private BigDecimal amount;
|
|
/**
|
* 创建时间
|
*/
|
private LocalDateTime createTime;
|
|
/**
|
* 更新时间
|
*/
|
private LocalDateTime updateTime;
|
|
// 构造方法
|
public FundsLog() {
|
this.createTime = LocalDateTime.now();
|
this.updateTime = LocalDateTime.now();
|
}
|
|
}
|