Your Name
2023-04-17 da3b5c72fa45bc26a9868c2b26e3efda14845179
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
package com.java110.dto.data;
 
import com.java110.dto.RoomDto;
import com.java110.dto.contract.ContractDto;
import com.java110.dto.owner.OwnerCarDto;
import com.java110.dto.owner.OwnerDto;
import com.java110.dto.repair.RepairDto;
import com.java110.dto.user.UserDto;
import com.java110.dto.visit.VisitDto;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 搜索数据封装
 */
public class SearchDataDto implements Serializable {
 
    private String communityId;
 
    private String storeId;
 
    private String searchValue;
 
    private String tel;
 
    private List<RoomDto> rooms;
 
    private List<OwnerDto> owners;
 
    private List<OwnerDto> ownerMembers;
 
    private List<OwnerCarDto> cars;
 
    private List<OwnerCarDto> carMembers;
 
    private List<RepairDto> repairs;
 
    private List<ContractDto> contracts;
 
    private List<VisitDto> visitDtos;
 
    private List<UserDto> staffs;
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getSearchValue() {
        return searchValue;
    }
 
    public void setSearchValue(String searchValue) {
        this.searchValue = searchValue;
    }
 
    public String getTel() {
        return tel;
    }
 
    public void setTel(String tel) {
        this.tel = tel;
    }
 
    public List<RoomDto> getRooms() {
        return rooms;
    }
 
    public void setRooms(List<RoomDto> rooms) {
        this.rooms = rooms;
    }
 
    public List<OwnerDto> getOwners() {
        return owners;
    }
 
    public void setOwners(List<OwnerDto> owners) {
        this.owners = owners;
    }
 
    public List<OwnerDto> getOwnerMembers() {
        return ownerMembers;
    }
 
    public void setOwnerMembers(List<OwnerDto> ownerMembers) {
        this.ownerMembers = ownerMembers;
    }
 
    public List<OwnerCarDto> getCars() {
        return cars;
    }
 
    public void setCars(List<OwnerCarDto> cars) {
        this.cars = cars;
    }
 
    public List<OwnerCarDto> getCarMembers() {
        return carMembers;
    }
 
    public void setCarMembers(List<OwnerCarDto> carMembers) {
        this.carMembers = carMembers;
    }
 
    public List<RepairDto> getRepairs() {
        return repairs;
    }
 
    public void setRepairs(List<RepairDto> repairs) {
        this.repairs = repairs;
    }
 
    public List<ContractDto> getContracts() {
        return contracts;
    }
 
    public void setContracts(List<ContractDto> contracts) {
        this.contracts = contracts;
    }
 
    public List<VisitDto> getVisitDtos() {
        return visitDtos;
    }
 
    public void setVisitDtos(List<VisitDto> visitDtos) {
        this.visitDtos = visitDtos;
    }
 
    public List<UserDto> getStaffs() {
        return staffs;
    }
 
    public void setStaffs(List<UserDto> staffs) {
        this.staffs = staffs;
    }
 
    public String getStoreId() {
        return storeId;
    }
 
    public void setStoreId(String storeId) {
        this.storeId = storeId;
    }
}