yujian
2019-06-24 bd331a582851cffcce54316e677e23760de4f384
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
package com.yeshi.fanli.entity.bus.help;
 
import java.io.Serializable;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.annotation.PersistenceConstructor;
import org.springframework.data.mongodb.core.mapping.Document;
 
/**
 * 帮助中心详情页面
 * 
 * @author Administrator
 *
 */
@Document(collection = "helpInfo")
public class HelpInfo implements Serializable{
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    @Id
    private Long id;// 帮助中心ID
    private String content;// 具体内容
    private String html;// 网页格式
 
    public HelpInfo() {
 
    }
 
    @PersistenceConstructor
    public HelpInfo(Long id, String content, String html) {
        this.id = id;
        this.content = content;
        this.html = html;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
 
    public String getHtml() {
        return html;
    }
 
    public void setHtml(String html) {
        this.html = html;
    }
 
}