Subversion Repositories SmartDukaan

Rev

Rev 35677 | Rev 35984 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35677 Rev 35702
Line 4... Line 4...
4
    private String partyName;
4
    private String partyName;
5
    private String code;
5
    private String code;
6
    private String remark;
6
    private String remark;
7
    private String message;
7
    private String message;
8
    private String time;
8
    private String time;
-
 
9
    private String recordingUrl;
-
 
10
    private String callStatus;
-
 
11
    private String callDuration;
-
 
12
    private String callDateTime;
9
 
13
 
10
    public CalledPartnerDetailModel() {
14
    public CalledPartnerDetailModel() {
11
    }
15
    }
12
 
16
 
13
    public CalledPartnerDetailModel(String partyName, String code, String remark, String message, String time) {
17
    public CalledPartnerDetailModel(String partyName, String code, String remark, String message, String time) {
Line 16... Line 20...
16
        this.remark = remark;
20
        this.remark = remark;
17
        this.message = message;
21
        this.message = message;
18
        this.time = time;
22
        this.time = time;
19
    }
23
    }
20
 
24
 
-
 
25
    public CalledPartnerDetailModel(String partyName, String code, String remark, String message, String time,
-
 
26
                                    String recordingUrl, String callStatus, String callDuration, String callDateTime) {
-
 
27
        this.partyName = partyName;
-
 
28
        this.code = code;
-
 
29
        this.remark = remark;
-
 
30
        this.message = message;
-
 
31
        this.time = time;
-
 
32
        this.recordingUrl = recordingUrl;
-
 
33
        this.callStatus = callStatus;
-
 
34
        this.callDuration = callDuration;
-
 
35
        this.callDateTime = callDateTime;
-
 
36
    }
-
 
37
 
21
    public String getPartyName() {
38
    public String getPartyName() {
22
        return partyName;
39
        return partyName;
23
    }
40
    }
24
 
41
 
25
    public void setPartyName(String partyName) {
42
    public void setPartyName(String partyName) {
Line 55... Line 72...
55
    }
72
    }
56
 
73
 
57
    public void setTime(String time) {
74
    public void setTime(String time) {
58
        this.time = time;
75
        this.time = time;
59
    }
76
    }
-
 
77
 
-
 
78
    public String getRecordingUrl() {
-
 
79
        return recordingUrl;
-
 
80
    }
-
 
81
 
-
 
82
    public void setRecordingUrl(String recordingUrl) {
-
 
83
        this.recordingUrl = recordingUrl;
-
 
84
    }
-
 
85
 
-
 
86
    public String getCallStatus() {
-
 
87
        return callStatus;
-
 
88
    }
-
 
89
 
-
 
90
    public void setCallStatus(String callStatus) {
-
 
91
        this.callStatus = callStatus;
-
 
92
    }
-
 
93
 
-
 
94
    public String getCallDuration() {
-
 
95
        return callDuration;
-
 
96
    }
-
 
97
 
-
 
98
    public void setCallDuration(String callDuration) {
-
 
99
        this.callDuration = callDuration;
-
 
100
    }
-
 
101
 
-
 
102
    public String getCallDateTime() {
-
 
103
        return callDateTime;
-
 
104
    }
-
 
105
 
-
 
106
    public void setCallDateTime(String callDateTime) {
-
 
107
        this.callDateTime = callDateTime;
-
 
108
    }
60
}
109
}