jialh
1 天以前 dd6687b118561100e1677e88a9c2f5842a54c531
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
package com.java110.dto.importData;
 
import java.io.Serializable;
 
/**
 * {"machineId":"","machineName":"1-1-1智能水表","address":"1212","meterType":"102023062029980006","machineModel":"2002","roomId":"75202305221015270788000231",
 * "roomName":"1-1-1001","feeConfigId":"922023062058050004",
 * "implBean":"1","readDay":"1","readHours":"1",
 * "communityId":"2023052267100146"
 * }
 */
public class ImportMeterMachineDto implements Serializable {
 
    private String machineName;
    private String address;
    private String meterType;
    private String machineModel;
    private String roomName;
    private String feeName;
    private String implBean;
 
    private String communityId;
 
    private String value1;
 
    private String userId;
 
    public String getMachineName() {
        return machineName;
    }
 
    public void setMachineName(String machineName) {
        this.machineName = machineName;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.address = address;
    }
 
    public String getMeterType() {
        return meterType;
    }
 
    public void setMeterType(String meterType) {
        this.meterType = meterType;
    }
 
    public String getMachineModel() {
        return machineModel;
    }
 
    public void setMachineModel(String machineModel) {
        this.machineModel = machineModel;
    }
 
    public String getRoomName() {
        return roomName;
    }
 
    public void setRoomName(String roomName) {
        this.roomName = roomName;
    }
 
    public String getFeeName() {
        return feeName;
    }
 
    public void setFeeName(String feeName) {
        this.feeName = feeName;
    }
 
    public String getImplBean() {
        return implBean;
    }
 
    public void setImplBean(String implBean) {
        this.implBean = implBean;
    }
 
    public String getCommunityId() {
        return communityId;
    }
 
    public void setCommunityId(String communityId) {
        this.communityId = communityId;
    }
 
    public String getValue1() {
        return value1;
    }
 
    public void setValue1(String value1) {
        this.value1 = value1;
    }
 
    public String getUserId() {
        return userId;
    }
 
    public void setUserId(String userId) {
        this.userId = userId;
    }
}