package com.ks.daylucky.pojo.VO;
|
|
import com.ks.daylucky.pojo.VO.common.JumpDetailVO;
|
|
public class UserMsgContentVO {
|
private String title;
|
private String content;
|
private JumpDetailVO jump;
|
|
public UserMsgContentVO(String title, String content) {
|
this.title = title;
|
this.content = content;
|
}
|
|
public UserMsgContentVO(String title, String content, JumpDetailVO jump) {
|
this.title = title;
|
this.content = content;
|
this.jump = jump;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
}
|