package com.qxueyou.scc.school.model.viewvo; import java.io.Serializable; import java.util.Date; /** * ·â×°±Ê¼Ç±¾¶ÔÏó * @author ody.yuan * */ public class SchNoteViewVO implements Serializable { private static final long serialVersionUID = 1L; /** Ö÷¼ü */ private String noteId; /** ±Ê¼Ç¶ÔÏóID */ private String noteObjectId; /** ±Ê¼Ç¶ÔÏóÀàÐÍ */ private Integer noteObjectType; /** ±Ê¼ÇÄÚÈÝ */ private String content; /** ¹²Ïí±êÖ¾ */ private boolean shareFlag; /** ¹²Ïí·¶Î§ */ private Integer shareScope; /** ±Ê¼ÇÓµÓÐÕßID */ private String userId; /** ±Ê¼ÇÓµÓÐÕßÐÕÃû */ private String userName; /** ±Ê¼ÇÓµÓÐÕßÍ·Ïñ */ private String userImg; /** ±Ê¼Çʱ¼ä */ private Date noteTime; /** ×ܸöÊý */ private Integer allCount; public String getNoteId() { return noteId; } public void setNoteId(String noteId) { this.noteId = noteId; } public String getNoteObjectId() { return noteObjectId; } public void setNoteObjectId(String noteObjectId) { this.noteObjectId = noteObjectId; } public Integer getNoteObjectType() { return noteObjectType; } public void setNoteObjectType(Integer noteObjectType) { this.noteObjectType = noteObjectType; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public boolean getShareFlag() { return shareFlag; } public void setShareFlag(boolean shareFlag) { this.shareFlag = shareFlag; } public Integer getShareScope() { return shareScope; } public void setShareScope(Integer shareScope) { this.shareScope = shareScope; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getUserImg() { return userImg; } public void setUserImg(String userImg) { this.userImg = userImg; } public Date getNoteTime() { return noteTime; } public void setNoteTime(Date noteTime) { this.noteTime = noteTime; } public Integer getAllCount() { return allCount; } public void setAllCount(Integer allCount) { this.allCount = allCount; } }