| | |
| | | private String content;
|
| | | private String timeTag;
|
| | | private String createTime;
|
| | | private int unReadCount;
|
| | |
|
| | | public UserSystemMsgVO(Long id, String type, Boolean solved, String title, String content, String timeTag,
|
| | | String portrait, String createTime) {
|
| | | String portrait, String createTime, int unReadCount) {
|
| | | this.id = id;
|
| | | this.type = type;
|
| | | this.solved = solved;
|
| | |
| | | this.timeTag = timeTag;
|
| | | this.portrait = portrait;
|
| | | this.createTime = createTime;
|
| | | this.unReadCount = unReadCount;
|
| | | }
|
| | |
|
| | | public UserSystemMsgVO() {
|
| | |
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public int getUnReadCount() {
|
| | | return unReadCount;
|
| | | }
|
| | |
|
| | | public void setUnReadCount(int unReadCount) {
|
| | | this.unReadCount = unReadCount;
|
| | | }
|
| | |
|
| | | public String getPortrait() {
|
| | | return portrait;
|
| | | }
|