wuxw
2024-01-04 2551631f71dbd6291794b84af8d2f7ded1463521
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 com.java110.dto.fee;
 
import com.java110.po.fee.PayFeeDetailPo;
 
import java.io.Serializable;
 
public class PayFeeDataDto extends PayFeeDetailPo implements Serializable {
 
    private String tempCycle;
 
    private String custEndTime;
 
    private FeeDto feeDto;
 
    private double accountAmount;
 
    private String acctId;
 
    private FeeConfigDto feeConfigDto;
 
    public String getTempCycle() {
        return tempCycle;
    }
 
    public void setTempCycle(String tempCycle) {
        this.tempCycle = tempCycle;
    }
 
    public String getCustEndTime() {
        return custEndTime;
    }
 
    public void setCustEndTime(String custEndTime) {
        this.custEndTime = custEndTime;
    }
 
    public FeeDto getFeeDto() {
        return feeDto;
    }
 
    public void setFeeDto(FeeDto feeDto) {
        this.feeDto = feeDto;
    }
 
    public FeeConfigDto getFeeConfigDto() {
        return feeConfigDto;
    }
 
    public void setFeeConfigDto(FeeConfigDto feeConfigDto) {
        this.feeConfigDto = feeConfigDto;
    }
 
    public double getAccountAmount() {
        return accountAmount;
    }
 
    public void setAccountAmount(double accountAmount) {
        this.accountAmount = accountAmount;
    }
 
    public String getAcctId() {
        return acctId;
    }
 
    public void setAcctId(String acctId) {
        this.acctId = acctId;
    }
}