old mode 100644
new mode 100755
| | |
| | | package com.java110.dto.rentingPool; |
| | | |
| | | import com.java110.dto.PageDto; |
| | | import com.java110.vo.api.junkRequirement.PhotoVo; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @ClassName FloorDto |
| | |
| | | public static final String STATE_PROXY_AUDIT = "1"; |
| | | public static final String STATE_PROXY_VIEW_ROOM = "2"; |
| | | public static final String STATE_TO_PAY = "3"; |
| | | public static final String STATE_OWNER_TO_PAY = "7"; |
| | | public static final String STATE_APPLY_AGREE = "4"; |
| | | public static final String STATE_ADMIN_AUDIT = "5"; |
| | | public static final String STATE_FINISH = "6"; |
| | | |
| | | //房屋服务费 redis前缀 |
| | | public static final String REDIS_PAY_RENTING = "PAY_RENTING_"; |
| | | |
| | | private String latitude; |
| | | private String ownerTel; |
| | |
| | | private String rentingId; |
| | | private String roomId; |
| | | private String roomName; |
| | | private String builtUpArea; |
| | | private String apartmentName; |
| | | private String section; |
| | | |
| | | private String paymentType; |
| | | private String paymentTypeName; |
| | | private String ownerName; |
| | |
| | | private String stateName; |
| | | private String[] states; |
| | | private String communityId; |
| | | private String communityName; |
| | | private String longitude; |
| | | |
| | | private String rentingType; |
| | |
| | | private Date createTime; |
| | | |
| | | private String statusCd = "0"; |
| | | |
| | | private String serviceOwnerRate; |
| | | private String serviceTenantRate; |
| | | private String adminSeparateRate; |
| | | private String proxySeparateRate; |
| | | private String propertySeparateRate; |
| | | private String servicePrice; |
| | | private String rentingFormula; |
| | | |
| | | List<String> photos; |
| | | |
| | | |
| | | public String getLatitude() { |
| | |
| | | public void setRoomName(String roomName) { |
| | | this.roomName = roomName; |
| | | } |
| | | |
| | | public String getServiceOwnerRate() { |
| | | return serviceOwnerRate; |
| | | } |
| | | |
| | | public void setServiceOwnerRate(String serviceOwnerRate) { |
| | | this.serviceOwnerRate = serviceOwnerRate; |
| | | } |
| | | |
| | | public String getServiceTenantRate() { |
| | | return serviceTenantRate; |
| | | } |
| | | |
| | | public void setServiceTenantRate(String serviceTenantRate) { |
| | | this.serviceTenantRate = serviceTenantRate; |
| | | } |
| | | |
| | | public String getAdminSeparateRate() { |
| | | return adminSeparateRate; |
| | | } |
| | | |
| | | public void setAdminSeparateRate(String adminSeparateRate) { |
| | | this.adminSeparateRate = adminSeparateRate; |
| | | } |
| | | |
| | | public String getProxySeparateRate() { |
| | | return proxySeparateRate; |
| | | } |
| | | |
| | | public void setProxySeparateRate(String proxySeparateRate) { |
| | | this.proxySeparateRate = proxySeparateRate; |
| | | } |
| | | |
| | | public String getPropertySeparateRate() { |
| | | return propertySeparateRate; |
| | | } |
| | | |
| | | public void setPropertySeparateRate(String propertySeparateRate) { |
| | | this.propertySeparateRate = propertySeparateRate; |
| | | } |
| | | |
| | | public String getServicePrice() { |
| | | return servicePrice; |
| | | } |
| | | |
| | | public void setServicePrice(String servicePrice) { |
| | | this.servicePrice = servicePrice; |
| | | } |
| | | |
| | | public String getRentingFormula() { |
| | | return rentingFormula; |
| | | } |
| | | |
| | | public void setRentingFormula(String rentingFormula) { |
| | | this.rentingFormula = rentingFormula; |
| | | } |
| | | |
| | | public String getBuiltUpArea() { |
| | | return builtUpArea; |
| | | } |
| | | |
| | | public void setBuiltUpArea(String builtUpArea) { |
| | | this.builtUpArea = builtUpArea; |
| | | } |
| | | |
| | | public String getSection() { |
| | | return section; |
| | | } |
| | | |
| | | public void setSection(String section) { |
| | | this.section = section; |
| | | } |
| | | |
| | | public String getCommunityName() { |
| | | return communityName; |
| | | } |
| | | |
| | | public void setCommunityName(String communityName) { |
| | | this.communityName = communityName; |
| | | } |
| | | |
| | | public String getApartmentName() { |
| | | return apartmentName; |
| | | } |
| | | |
| | | public void setApartmentName(String apartmentName) { |
| | | this.apartmentName = apartmentName; |
| | | } |
| | | |
| | | public List<String> getPhotos() { |
| | | return photos; |
| | | } |
| | | |
| | | public void setPhotos(List<String> photos) { |
| | | this.photos = photos; |
| | | } |
| | | } |