Linjiajia
2023-04-04 a1d1fb7c44e33c4baeb52964a027932018bc1325
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
package com.application.zhangshi_app_android.bean;
 
import java.util.HashMap;
import java.util.Map;
 
/**
 * @author Ljj
 * @date 2023.03.28. 15:57
 * @desc
 */
public class FamilyMemorabiliaRequestBean {
    private String people;
    private String address;
    private String remark;
    private String title;
 
    private String createTime;
    private int pageNum = 1;
    private int pageSize = 20;
 
    public String getPeople() {
        return people;
    }
 
    public void setPeople(String people) {
        this.people = people;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public int getPageNum() {
        return pageNum;
    }
 
    public void setPageNum(int pageNum) {
        this.pageNum = pageNum;
    }
 
    public int getPageSize() {
        return pageSize;
    }
 
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public Map<String, Object> getMap() {
        Map<String, Object> map = new HashMap<>();
        if (people == null) {
            people = "";
        }
        if (address == null) {
            address = "";
        }
        if (remark == null) {
            remark = "";
        }
        if (title == null) {
            title = "";
        }
        if (createTime == null) {
            createTime = "";
        }
        map.put("people", people);
        map.put("address", address);
        map.put("remark", remark);
        map.put("title", title);
        map.put("createTime", createTime);
        map.put("pageNum", pageNum);
        map.put("pageSize", pageSize);
        return map;
    }
}