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;
|
}
|
|
}
|