wuxw
2022-07-16 2a389181fb40ffb75e629b1614e5c1a43c69020e
java110-bean/src/main/java/com/java110/dto/fee/FeeConfigDto.java
@@ -34,6 +34,8 @@
    public static final String CONFIG_ID_GOODS = "930000000000000000";//商品费用项
    public static final String COMPUTING_FORMULA_TEMP_CAR = "9999";
    public static final String COMPUTING_FORMULA_RANT_RATE = "1102"; // 租金递增
    public static final String COMPUTING_FORMULA_DYNAMIC = "4004"; // 租金递增
    public static final String PAYMENT_CD_PRE = "1200";
    public static final String PAYMENT_CD_AFTER = "2100";
@@ -72,6 +74,10 @@
    private String statusCd = "0";
    private String computingFormulaText;
    private String deductFrom = "Y";
    private double amount;
    public String getFeeTypeCd() {
@@ -267,4 +273,16 @@
    public void setFeeNameEq(String feeNameEq) {
        this.feeNameEq = feeNameEq;
    }
    public double getAmount() {
        return amount;
    }
    public void setAmount(double amount) {
        this.amount = amount;
    }
    public String getDeductFrom() { return deductFrom; }
    public void setDeductFrom(String deductFrom) { this.deductFrom = deductFrom; }
}