From 0481353111afb43a2322e18530dde26f1d841ead Mon Sep 17 00:00:00 2001 From: yanghb <yanghb> Date: 星期五, 21 四月 2023 11:15:34 +0800 Subject: [PATCH] 代码调整 --- ManagementTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TCompany.java | 82 +--------------------------------------- 1 files changed, 3 insertions(+), 79 deletions(-) diff --git a/ManagementTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TCompany.java b/ManagementTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TCompany.java index 84ea895..fb97a7c 100644 --- a/ManagementTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TCompany.java +++ b/ManagementTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/model/TCompany.java @@ -29,7 +29,7 @@ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** - * 是否经营快车(1=是,2=否) + * 是否经营专车(1=是,2=否) */ private Integer isSpe; /** @@ -53,7 +53,7 @@ */ private Integer isCharter; /** - * 快车提成方式(1=比例,2=固定) + * 专车提成方式(1=比例,2=固定) */ private Integer isSpeFixedOrProportional; /** @@ -69,7 +69,7 @@ */ private Integer isSameLogisticsFixedOrProportional; /** - * 快车提成数值 + * 专车提成数值 */ private BigDecimal speMoney; /** @@ -241,66 +241,6 @@ 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; @@ -732,22 +672,6 @@ 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 -- Gitblit v1.7.1