1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
package com.system.file.entity;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
 
import com.app.base.entity.TreeEntity;
 
@Table
@Entity
public class FsCatalog extends TreeEntity<Long> {
    private static final long serialVersionUID = -6602711639299311787L;
    protected String bsUrl;
    protected String bsComment;
    @Column
    protected boolean bsSys;
    @Transient
    protected FsCatalog bsParent;
 
    public FsCatalog() {
    }
 
    public String getBsUrl() {
        return this.bsUrl;
    }
 
    public void setBsUrl(String bsUrl) {
        this.bsUrl = bsUrl;
    }
 
    public String getBsComment() {
        return this.bsComment;
    }
 
    public void setBsComment(String bsComment) {
        this.bsComment = bsComment;
    }
 
    public boolean isBsSys() {
        return this.bsSys;
    }
 
    public void setBsSys(boolean bsSys) {
        this.bsSys = bsSys;
    }
 
    public FsCatalog getBsParent() {
        return this.bsParent;
    }
 
    public void setBsParent(FsCatalog bsParent) {
        this.bsParent = bsParent;
    }
}