| | |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 是否经营快车(1=是,2=否) |
| | | * 是否经营专车(1=是,2=否) |
| | | */ |
| | | private Integer isSpe; |
| | | /** |
| | |
| | | */ |
| | | private Integer isCharter; |
| | | /** |
| | | * 快车提成方式(1=比例,2=固定) |
| | | * 专车提成方式(1=比例,2=固定) |
| | | */ |
| | | private Integer isSpeFixedOrProportional; |
| | | /** |
| | |
| | | */ |
| | | private Integer isSameLogisticsFixedOrProportional; |
| | | /** |
| | | * 快车提成数值 |
| | | * 专车提成数值 |
| | | */ |
| | | private BigDecimal speMoney; |
| | | /** |
| | |
| | | private String idCardPositive; |
| | | //身份证反面 |
| | | private String idCardReverse; |
| | | |
| | | |
| | | //节假费 |
| | | private BigDecimal holidayFee; |
| | | |
| | | /** |
| | | * 是否经营95128电召(1=是,2=否) |
| | | */ |
| | | private Integer isOnCall; |
| | | /** |
| | | * 95128电召提成数值 |
| | | */ |
| | | private BigDecimal onCallMoney; |
| | | /** |
| | | * 95128电召提成方式(1=比例,2=固定) |
| | | */ |
| | | private Integer isOnCallFixedOrProportional; |
| | | /** |
| | | * 规模 |
| | | * @return |
| | | */ |
| | | private String scale; |
| | | /** |
| | | * 公司信息 |
| | | * @return |
| | | */ |
| | | private String companyInfo; |
| | | |
| | | |
| | | public Integer getIsOnCall() { |
| | | return isOnCall; |
| | | } |
| | | |
| | | public void setIsOnCall(Integer isOnCall) { |
| | | this.isOnCall = isOnCall; |
| | | } |
| | | |
| | | public BigDecimal getOnCallMoney() { |
| | | return onCallMoney; |
| | | } |
| | | |
| | | public void setOnCallMoney(BigDecimal onCallMoney) { |
| | | this.onCallMoney = onCallMoney; |
| | | } |
| | | |
| | | public Integer getIsOnCallFixedOrProportional() { |
| | | return isOnCallFixedOrProportional; |
| | | } |
| | | |
| | | public void setIsOnCallFixedOrProportional(Integer isOnCallFixedOrProportional) { |
| | | this.isOnCallFixedOrProportional = isOnCallFixedOrProportional; |
| | | } |
| | | |
| | | public BigDecimal getHolidayFee() { |
| | | return holidayFee; |
| | | } |
| | | |
| | | public void setHolidayFee(BigDecimal holidayFee) { |
| | | this.holidayFee = holidayFee; |
| | | } |
| | | |
| | | public String getIdCardPositive() { |
| | | return idCardPositive; |
| | |
| | | |
| | | public void setDetailAddress(String detailAddress) { |
| | | this.detailAddress = detailAddress; |
| | | } |
| | | |
| | | public String getScale() { |
| | | return scale; |
| | | } |
| | | |
| | | public void setScale(String scale) { |
| | | this.scale = scale; |
| | | } |
| | | |
| | | public String getCompanyInfo() { |
| | | return companyInfo; |
| | | } |
| | | |
| | | public void setCompanyInfo(String companyInfo) { |
| | | this.companyInfo = companyInfo; |
| | | } |
| | | |
| | | @Override |