wuxw
2019-10-02 ea4e931b3e06e4abcd31d74de9e90fa0a8998f3a
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
package com.java110.vo.api.ownerRepair;
 
import java.io.Serializable;
import java.util.Date;
 
public class ApiOwnerRepairDataVo implements Serializable {
 
    private String repairId;
private String repairType;
private String repairName;
private String tel;
private String roomId;
private String appointmentTime;
private String context;
public String getRepairId() {
        return repairId;
    }
public void setRepairId(String repairId) {
        this.repairId = repairId;
    }
public String getRepairType() {
        return repairType;
    }
public void setRepairType(String repairType) {
        this.repairType = repairType;
    }
public String getRepairName() {
        return repairName;
    }
public void setRepairName(String repairName) {
        this.repairName = repairName;
    }
public String getTel() {
        return tel;
    }
public void setTel(String tel) {
        this.tel = tel;
    }
public String getRoomId() {
        return roomId;
    }
public void setRoomId(String roomId) {
        this.roomId = roomId;
    }
public String getAppointmentTime() {
        return appointmentTime;
    }
public void setAppointmentTime(String appointmentTime) {
        this.appointmentTime = appointmentTime;
    }
public String getContext() {
        return context;
    }
public void setContext(String context) {
        this.context = context;
    }
 
 
 
}