Subversion Repositories SmartDukaan

Rev

Rev 35677 | Rev 35984 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
35671 ranu 1
package com.spice.profitmandi.dao.model;
2
 
3
public class CalledPartnerDetailModel {
4
    private String partyName;
5
    private String code;
6
    private String remark;
35677 ranu 7
    private String message;
35671 ranu 8
    private String time;
35702 ranu 9
    private String recordingUrl;
10
    private String callStatus;
11
    private String callDuration;
12
    private String callDateTime;
35671 ranu 13
 
14
    public CalledPartnerDetailModel() {
15
    }
16
 
35677 ranu 17
    public CalledPartnerDetailModel(String partyName, String code, String remark, String message, String time) {
35671 ranu 18
        this.partyName = partyName;
19
        this.code = code;
20
        this.remark = remark;
35677 ranu 21
        this.message = message;
35671 ranu 22
        this.time = time;
23
    }
24
 
35702 ranu 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
 
35671 ranu 38
    public String getPartyName() {
39
        return partyName;
40
    }
41
 
42
    public void setPartyName(String partyName) {
43
        this.partyName = partyName;
44
    }
45
 
46
    public String getCode() {
47
        return code;
48
    }
49
 
50
    public void setCode(String code) {
51
        this.code = code;
52
    }
53
 
54
    public String getRemark() {
55
        return remark;
56
    }
57
 
58
    public void setRemark(String remark) {
59
        this.remark = remark;
60
    }
61
 
35677 ranu 62
    public String getMessage() {
63
        return message;
64
    }
65
 
66
    public void setMessage(String message) {
67
        this.message = message;
68
    }
69
 
35671 ranu 70
    public String getTime() {
71
        return time;
72
    }
73
 
74
    public void setTime(String time) {
75
        this.time = time;
76
    }
35702 ranu 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
    }
35671 ranu 109
}