package com.xcong.excoin.modules.coin.parameter.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
@Data
|
@ApiModel(value = "UsdtToGusdVo", description = "返回参数类")
|
public class UsdtToGusdVo {
|
|
private Long memberId;
|
|
/**
|
* 金额
|
*/
|
private BigDecimal amount;
|
/**
|
* 记录内容
|
*/
|
private String content;
|
/**
|
* 状态【0:待审核 1:成功2:失败】
|
*/
|
private int status;
|
|
@ApiModelProperty(value = "时间")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createTime;
|
}
|