From 65f31b6b5d5f94fa76e6ddc9df2e6f9b7ff5be6e Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期二, 06 十二月 2022 13:54:54 +0800
Subject: [PATCH] 加入代码
---
java110-bean/src/main/java/com/java110/dto/owner/OwnerCarDto.java | 112 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 111 insertions(+), 1 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..de5fa7d 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
@@ -26,6 +28,14 @@
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";//涓存椂杞�
+
private String carColor;
private String carBrand;
private String carType;
@@ -36,6 +46,7 @@
private String communityId;
private String psId;
private String[] psIds;
+ private String[] paIds;
private String remark;
private String ownerId;
private String userId;
@@ -69,8 +80,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() {
@@ -144,7 +168,6 @@
public void setCarId(String carId) {
this.carId = carId;
}
-
public Date getCreateTime() {
return createTime;
@@ -361,4 +384,91 @@
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