Pu Zhibing
2024-12-15 40b94a2b7afb9acc38fcda17b5375a47ec928da8
UserAHTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/Driver.java
@@ -329,6 +329,26 @@
     */
    @TableField("appletsOpenId")
    private String appletsOpenId;
    /**
     * 专车抽成方式(1=比例,2=固定金额)
     */
    private Integer specialCarCommissionType;
    /**
     * 专车抽成金额
     */
    private Double specialCarCommission;
    /**
     * 城际抽成方式(1=比例,2=固定金额)
     */
    private Integer intercityCommissionType;
    /**
     * 城际抽成金额
     */
    private Double intercityCommission;
    /**
     * 提现冻结金额
     */
    private Double withdrawFrozenAmount;
    @Override
    public Integer getId() {
@@ -827,7 +847,47 @@
    public void setAppletsOpenId(String appletsOpenId) {
        this.appletsOpenId = appletsOpenId;
    }
    public Integer getSpecialCarCommissionType() {
        return specialCarCommissionType;
    }
    public void setSpecialCarCommissionType(Integer specialCarCommissionType) {
        this.specialCarCommissionType = specialCarCommissionType;
    }
    public Double getSpecialCarCommission() {
        return specialCarCommission;
    }
    public void setSpecialCarCommission(Double specialCarCommission) {
        this.specialCarCommission = specialCarCommission;
    }
    public Integer getIntercityCommissionType() {
        return intercityCommissionType;
    }
    public void setIntercityCommissionType(Integer intercityCommissionType) {
        this.intercityCommissionType = intercityCommissionType;
    }
    public Double getIntercityCommission() {
        return intercityCommission;
    }
    public void setIntercityCommission(Double intercityCommission) {
        this.intercityCommission = intercityCommission;
    }
    public Double getWithdrawFrozenAmount() {
        return withdrawFrozenAmount;
    }
    public void setWithdrawFrozenAmount(Double withdrawFrozenAmount) {
        this.withdrawFrozenAmount = withdrawFrozenAmount;
    }
    @Override
    public String toString() {
        return "Driver{" +