From b941ea3592b9479549c82377d4c2b91fc419e5d4 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期四, 26 一月 2023 14:43:39 +0800
Subject: [PATCH] 加入业主入驻审核流程
---
java110-bean/src/main/java/com/java110/dto/owner/OwnerCarDto.java | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 113 insertions(+), 2 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/owner/OwnerCarDto.java b/java110-bean/src/main/java/com/java110/dto/owner/OwnerCarDto.java
index b0e5498..4b8be0d 100755
--- a/java110-bean/src/main/java/com/java110/dto/owner/OwnerCarDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/owner/OwnerCarDto.java
@@ -1,9 +1,11 @@
package com.java110.dto.owner;
import com.java110.dto.PageDto;
+import com.java110.dto.ownerCarAttr.OwnerCarAttrDto;
import java.io.Serializable;
import java.util.Date;
+import java.util.List;
/**
* @ClassName FloorDto
@@ -19,12 +21,21 @@
public static final String STATE_OWE = "2002";
public static final String STATE_FINISH = "3003";
-
public static final String CAR_TYPE_PRIMARY = "1001"; //涓昏溅杈�
public static final String CAR_TYPE_MEMBER = "1002"; //杞﹁締鎴愬憳
public static final String CAR_TYPE_TEMP = "1003"; //涓存椂杞�
public static final String CAR_TYPE_CD_TEMP = "1003";
+
+ public static final String LEASE_TYPE_MONTH = "H"; // 鏈堢杞�
+ public static final String LEASE_TYPE_SALE = "S"; // 鍑哄敭杞�
+ public static final String LEASE_TYPE_INNER = "I"; //鍐呴儴杞�
+ public static final String LEASE_TYPE_NO_MONEY = "NM"; //鍏嶈垂杞�
+ public static final String LEASE_TYPE_RESERVE = "R"; //棰勭害杞�
+
+ public static final String LEASE_TYPE_TEMP = "T";//涓存椂杞�
+
+ public static final String CAR_TYPE_CREDIT = "9906"; //淇$敤鏈熻溅鐗�
private String carColor;
private String carBrand;
@@ -36,6 +47,7 @@
private String communityId;
private String psId;
private String[] psIds;
+ private String[] paIds;
private String remark;
private String ownerId;
private String userId;
@@ -69,9 +81,21 @@
private String bId;
private String carTypeCd;
+ private String carTypeCdName;
private String[] carTypeCds;
private String memberId;
+ private String unitId;
+ private String floorNum;
+ private String unitNum;
+ private String roomNum;
+ private String oweAmount;
+ private String leaseType;
+ private String[] leaseTypes;
+
+ private String leaseTypeName;
+
+ private List<OwnerCarAttrDto> ownerCarAttrDto;
public String getCarColor() {
return carColor;
@@ -144,7 +168,6 @@
public void setCarId(String carId) {
this.carId = carId;
}
-
public Date getCreateTime() {
return createTime;
@@ -361,4 +384,92 @@
public void setSpaceSate(String spaceSate) {
this.spaceSate = spaceSate;
}
+
+ public String getUnitId() {
+ return unitId;
+ }
+
+ public void setUnitId(String unitId) {
+ this.unitId = unitId;
+ }
+
+ public String getFloorNum() {
+ return floorNum;
+ }
+
+ public void setFloorNum(String floorNum) {
+ this.floorNum = floorNum;
+ }
+
+ public String getUnitNum() {
+ return unitNum;
+ }
+
+ public void setUnitNum(String unitNum) {
+ this.unitNum = unitNum;
+ }
+
+ public String getRoomNum() {
+ return roomNum;
+ }
+
+ public void setRoomNum(String roomNum) {
+ this.roomNum = roomNum;
+ }
+
+ public String getOweAmount() {
+ return oweAmount;
+ }
+
+ public void setOweAmount(String oweAmount) {
+ this.oweAmount = oweAmount;
+ }
+
+ public List<OwnerCarAttrDto> getOwnerCarAttrDto() {
+ return ownerCarAttrDto;
+ }
+
+ public void setOwnerCarAttrDto(List<OwnerCarAttrDto> ownerCarAttrDto) {
+ this.ownerCarAttrDto = ownerCarAttrDto;
+ }
+
+ public String getLeaseType() {
+ return leaseType;
+ }
+
+ public void setLeaseType(String leaseType) {
+ this.leaseType = leaseType;
+ }
+
+ public String getLeaseTypeName() {
+ return leaseTypeName;
+ }
+
+ public void setLeaseTypeName(String leaseTypeName) {
+ this.leaseTypeName = leaseTypeName;
+ }
+
+ public String[] getPaIds() {
+ return paIds;
+ }
+
+ public void setPaIds(String[] paIds) {
+ this.paIds = paIds;
+ }
+
+ public String getCarTypeCdName() {
+ return carTypeCdName;
+ }
+
+ public void setCarTypeCdName(String carTypeCdName) {
+ this.carTypeCdName = carTypeCdName;
+ }
+
+ public String[] getLeaseTypes() {
+ return leaseTypes;
+ }
+
+ public void setLeaseTypes(String[] leaseTypes) {
+ this.leaseTypes = leaseTypes;
+ }
}
--
Gitblit v1.8.0