ludc
2025-01-15 c659560c7ee8d8f8278b938421de13bf65d1e1b1
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
package com.vci.pagemodel;
 
import com.vci.starter.web.pagemodel.BaseModelVO;
 
/**
 * @author ludc
 * @date 2024/7/16 14:19
 */
public class VciFileDocClassifyVO extends BaseModelVO {
    private static final long serialVersionUID = 1445799225556572873L;
    private String id;
    private String name;
    private String description;
 
    public VciFileDocClassifyVO() {
    }
 
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getName() {
        return this.name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDescription() {
        return this.description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String toString() {
        return "VciFileDocClassifyVO{id='" + this.id + '\'' + ", name='" + this.name + '\'' + ", description='" + this.description + '\'' + "} " + super.toString();
    }
}