派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
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;
    }
 
}