package com.yeshi.fanli.dto.msg;
|
|
/**
|
* vip消息
|
*
|
* @author Administrator
|
*
|
*/
|
public class MsgOtherVIPDTO {
|
private String content1;
|
private String content2;
|
private String content3;
|
|
public String getContent1() {
|
return content1;
|
}
|
|
public void setContent1(String content1) {
|
this.content1 = content1;
|
}
|
|
public String getContent2() {
|
return content2;
|
}
|
|
public void setContent2(String content2) {
|
this.content2 = content2;
|
}
|
|
public String getContent3() {
|
return content3;
|
}
|
|
public void setContent3(String content3) {
|
this.content3 = content3;
|
}
|
|
}
|