Your Name
2023-01-24 110d6060625a25f2546c4de3b3a57117d9cf769a
java110-bean/src/main/java/com/java110/dto/fee/FeeDetailDto.java
@@ -44,6 +44,7 @@
    private String cycles;
    private String remark;
    private String receivedAmount;
    private String payableAmount;
    private String communityId;
    private String feeId;
    private String bId;
@@ -69,6 +70,8 @@
    private Date curReadingTime;
    private String ardId;
    private String[] states;
    private String payOrderId;
    private List<FeeAccountDetailDto> feeAccountDetailDtoList;
    private List<PayFeeDetailDiscountDto> payFeeDetailDiscountDtoList;
@@ -140,7 +143,6 @@
    public void setFeeId(String feeId) {
        this.feeId = feeId;
    }
    public Date getCreateTime() {
        return createTime;
@@ -341,4 +343,20 @@
    public void setPayFeeDetailDiscountDtoList(List<PayFeeDetailDiscountDto> payFeeDetailDiscountDtoList) {
        this.payFeeDetailDiscountDtoList = payFeeDetailDiscountDtoList;
    }
    public String getPayableAmount() {
        return payableAmount;
    }
    public void setPayableAmount(String payableAmount) {
        this.payableAmount = payableAmount;
    }
    public String getPayOrderId() {
        return payOrderId;
    }
    public void setPayOrderId(String payOrderId) {
        this.payOrderId = payOrderId;
    }
}