Linjiajia
2023-04-24 fcdddf8b9b34f9930bec454b5fffe41c0e33ba3c
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
package com.application.zhangshi_app_android.bean;
 
import java.io.Serializable;
 
/**
 * @author Ljj
 * @date 2023.04.16. 19:13
 * @desc 保洁收纳 bean
 */
public class CleanStorageBean implements Serializable {
    //序号
    private int id;
    //类型
    private String type;
    //适用人
    private String suitablePeople;
    //类别
    private String category;
    //保洁方法
    private String cleanMethod;
    //材料存放地
    private String materialStorageLocation;
    //放置地点
    private String placementLocation;
    //备注
    private String remark;
    private String url;
 
    public CleanStorageBean(int id, String type, String suitablePeople, String category, String cleanMethod, String materialStorageLocation, String placementLocation, String remark, String url) {
        this.id = id;
        this.type = type;
        this.suitablePeople = suitablePeople;
        this.category = category;
        this.cleanMethod = cleanMethod;
        this.materialStorageLocation = materialStorageLocation;
        this.placementLocation = placementLocation;
        this.remark = remark;
        this.url = url;
    }
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getSuitablePeople() {
        return suitablePeople;
    }
 
    public void setSuitablePeople(String suitablePeople) {
        this.suitablePeople = suitablePeople;
    }
 
    public String getCategory() {
        return category;
    }
 
    public void setCategory(String category) {
        this.category = category;
    }
 
    public String getCleanMethod() {
        return cleanMethod;
    }
 
    public void setCleanMethod(String cleanMethod) {
        this.cleanMethod = cleanMethod;
    }
 
    public String getMaterialStorageLocation() {
        return materialStorageLocation;
    }
 
    public void setMaterialStorageLocation(String materialStorageLocation) {
        this.materialStorageLocation = materialStorageLocation;
    }
 
    public String getPlacementLocation() {
        return placementLocation;
    }
 
    public void setPlacementLocation(String placementLocation) {
        this.placementLocation = placementLocation;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
}