| | |
| | | */ |
| | | @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() { |
| | |
| | | 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{" + |