jialh
2 天以前 dd6687b118561100e1677e88a9c2f5842a54c531
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
package com.java110.vo;
 
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.serializer.SerializerFeature;
 
import java.io.Serializable;
 
/**
 * @ClassName ResultVo
 * @Description TODO
 * @Author wuxw
 * @Date 2020/5/28 18:41
 * @Version 1.0
 * add by wuxw 2020/5/28
 **/
public class FeeDetailResultVo extends ResultVo implements Serializable {
 
    private double totalReceivedAmount;
    private double totalReceivableAmount;
 
    public FeeDetailResultVo() {
 
    }
 
    public FeeDetailResultVo(double totalReceivableAmount, double totalReceivedAmount, int records, int total, Object data) {
        this.totalReceivableAmount = totalReceivableAmount;
        this.totalReceivedAmount = totalReceivedAmount;
        this.setCode(CODE_OK);
        this.setMsg(MSG_OK);
        this.setRecords(records);
        this.setTotal(total);
        this.setData(data);
 
    }
 
    public double getTotalReceivedAmount() {
        return totalReceivedAmount;
    }
 
    public void setTotalReceivedAmount(double totalReceivedAmount) {
        this.totalReceivedAmount = totalReceivedAmount;
    }
 
    public double getTotalReceivableAmount() {
        return totalReceivableAmount;
    }
 
    public void setTotalReceivableAmount(double totalReceivableAmount) {
        this.totalReceivableAmount = totalReceivableAmount;
    }
 
    @Override
    public String toString() {
        return JSONObject.toJSONString(this, SerializerFeature.DisableCircularReferenceDetect, SerializerFeature.WriteDateUseDateFormat);
    }
 
}