xiaoyong931011
2022-12-05 e1048126f8b32d263b92ffd891aaeb56e9de6a50
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;
}