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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package io.better.toutiao.dto.account;
import io.better.toutiao.dto.BaseDTO;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 账号资金流水明细
*
* @author better create in 2019-05-07 17:06
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class AccountFundFlowDetailRespDTO extends BaseDTO {
/**
* 流水类型
*
* @see io.better.toutiao.enums.FlowType
*/
private String transactionType;
/**
* 流水产生时间
*/
private String createTime;
/**
* 交易总金额(单位元)
*/
private Double amount;
/**
* 冻结总金额(单位元)
*/
private Double frozen;
/**
* 现金总金额(单位元)
*/
private Double cash;
/**
* 赠款总金额(单位元)
*/
private Double grant;
/**
* 返货总金额(单位元)
*/
private Double returnGoods;
/**
* 交易流水号
*/
private Double transactionSeq;
/**
* 付款方,即广告主id
*/
private Long remitter;
/**
* 收款方,即广告主id
*/
private Long payee;
}