| | |
| | | * 上次人脸识别时间 |
| | | */ |
| | | private Date lastFacialTime; |
| | | /** |
| | | * 专车抽成方式(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 setWithdrawPassword(String withdrawPassword) { |
| | | this.withdrawPassword = withdrawPassword; |
| | | } |
| | | |
| | | |
| | | public String getWechatPic() { |
| | | return wechatPic; |
| | | } |
| | | |
| | | public void setWechatPic(String wechatPic) { |
| | | this.wechatPic = wechatPic; |
| | | } |
| | | |
| | | public Integer getFailCount() { |
| | | return failCount; |
| | | } |
| | | |
| | | public void setFailCount(Integer failCount) { |
| | | this.failCount = failCount; |
| | | } |
| | | |
| | | public Integer getIsNeedFacial() { |
| | | return isNeedFacial; |
| | | } |
| | | |
| | | public void setIsNeedFacial(Integer isNeedFacial) { |
| | | this.isNeedFacial = isNeedFacial; |
| | | } |
| | | |
| | | public Date getLastFacialTime() { |
| | | return lastFacialTime; |
| | | } |
| | | |
| | | public void setLastFacialTime(Date lastFacialTime) { |
| | | this.lastFacialTime = lastFacialTime; |
| | | } |
| | | |
| | | 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{" + |