MessageInfo.java
1.96 KB
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
package com.cnlive.gundam.video.model;
/**
* @author 陈硕
* @time 2017/6/30 10:34
* @desc ${TODD}
*/
public class MessageInfo {
private String giftPrice;
private String giftName;
private String giftNumber;
private String messageBarrage;
private String content;
public MessageInfo(String giftPrice, String giftName, String giftNumber, String messageBarrage, String content) {
this.giftPrice = giftPrice;
this.giftName = giftName;
this.giftNumber = giftNumber;
this.messageBarrage = messageBarrage;
this.content = content;
}
@Override
public String toString() {
return "MessageInfo{" +
"giftPrice='" + giftPrice + '\'' +
", giftName='" + giftName + '\'' +
", giftNumber='" + giftNumber + '\'' +
", messageBarrage='" + messageBarrage + '\'' +
", content='" + content + '\'' +
'}';
}
public String getGiftPrice() {
return giftPrice;
}
public void setGiftPrice(String giftPrice) {
this.giftPrice = giftPrice;
}
public String getGiftName() {
return giftName;
}
public void setGiftName(String giftName) {
this.giftName = giftName;
}
public String getGiftNumber() {
return giftNumber;
}
public void setGiftNumber(String giftNumber) {
this.giftNumber = giftNumber;
}
public String getMessageBarrage() {
return messageBarrage;
}
public void setMessageBarrage(String messageBarrage) {
this.messageBarrage = messageBarrage;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}