package org.example.ssmico.demos.web.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @description t_money_log
|
* @author BEJSON
|
* @date 2024-04-12
|
*/
|
@Data
|
@TableName("T_MONEY_LOG")
|
public class TMoneyLog implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
/**
|
* UUID
|
*/
|
@TableId(type = IdType.AUTO)
|
private String uuid;
|
|
/**
|
* 日志详情
|
*/
|
private String log;
|
|
/**
|
* USDT
|
*/
|
private String wallettype;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 用户id
|
*/
|
private String partyId;
|
|
/**
|
* 操作金额
|
*/
|
private Double amount;
|
|
/**
|
* 原始金额
|
*/
|
private Double amountBefore;
|
|
/**
|
* 剩余金额
|
*/
|
private Double amountAfter;
|
|
/**
|
* 功能类型
|
*/
|
private String contentType;
|
|
/**
|
* 操作类型
|
*/
|
private String category;
|
|
public TMoneyLog() {}
|
}
|