2019232
2022-12-13 11e14ba210ed19aaf89cade6d5b51b6c53ca38aa
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
package cc.mrbird.febs.dapp.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@ApiModel(value = "AdminSystemProfitFlowListVo", description = "动能队列-流水详情")
public class AdminSystemProfitFlowListVo {
    private String address;
 
    private BigDecimal amount;
 
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    private Integer status;
 
    private Integer type;
 
    private String fromHash;
}