java110
2022-06-23 3343885406b4fb874e82c5238bc31c0348e99ee7
java110-bean/src/main/java/com/java110/dto/fee/FeeDto.java
@@ -27,6 +27,7 @@
    public static final String FEE_FLAG_ONCE = "2006012";//一次性费用
    public static final String FEE_FLAG_CYCLE = "1003006";//周期性费用
    public static final String FEE_FLAG_CYCLE_ONCE = "4012024";//间接性费用
    public static final String REDIS_PAY_OWE_FEE = "PAY_OWE_FEE_";
    public static final String REDIS_PAY_TEMP_CAR_FEE = "PAY_TEMP_CAR_FEE_";
@@ -129,6 +130,10 @@
    private String cycle;
    private double feeTotalPrice;
    private String batchId;
    private String offlinePayFeeSwitch;
    private String deductFrom;
    public String getAmount() {
        return amount;
@@ -626,4 +631,16 @@
    public void setBatchId(String batchId) {
        this.batchId = batchId;
    }
    public String getOfflinePayFeeSwitch() {
        return offlinePayFeeSwitch;
    }
    public void setOfflinePayFeeSwitch(String offlinePayFeeSwitch) {
        this.offlinePayFeeSwitch = offlinePayFeeSwitch;
    }
    public String getDeductFrom() { return deductFrom; }
    public void setDeductFrom(String deductFrom) { this.deductFrom = deductFrom; }
}