|
|
|
@@ -331,6 +331,50 @@ public class WxRentContract extends BaseEntity { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "上传文件名", name = "fileNames") |
|
|
|
private String fileNames; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "总租期(月)", name = "totalPeriodMonth") |
|
|
|
private Integer totalPeriodMonth; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "总租期(天)", name = "totalPeriodDay") |
|
|
|
private Integer totalPeriodDay; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "租赁单价", name = "rentPrice") |
|
|
|
private Integer rentPrice; |
|
|
|
|
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "租金单位1日2月3年", name = "priceUnit") |
|
|
|
private Integer priceUnit; |
|
|
|
|
|
|
|
public Integer getPriceUnit() { |
|
|
|
return priceUnit; |
|
|
|
} |
|
|
|
|
|
|
|
public void setPriceUnit(Integer priceUnit) { |
|
|
|
this.priceUnit = priceUnit; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getTotalPeriodMonth() { |
|
|
|
return totalPeriodMonth; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTotalPeriodMonth(Integer totalPeriodMonth) { |
|
|
|
this.totalPeriodMonth = totalPeriodMonth; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getTotalPeriodDay() { |
|
|
|
return totalPeriodDay; |
|
|
|
} |
|
|
|
|
|
|
|
public void setTotalPeriodDay(Integer totalPeriodDay) { |
|
|
|
this.totalPeriodDay = totalPeriodDay; |
|
|
|
} |
|
|
|
|
|
|
|
public Integer getRentPrice() { |
|
|
|
return rentPrice; |
|
|
|
} |
|
|
|
|
|
|
|
public void setRentPrice(Integer rentPrice) { |
|
|
|
this.rentPrice = rentPrice; |
|
|
|
} |
|
|
|
|
|
|
|
public String getRentInfo() { |
|
|
|
return rentInfo; |
|
|
|
} |
|
|
|
|