xiejun
2024-09-09 c826afb6dbc2c1d4433b3c127c5f30f9f72fb2dc
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.dto;
 
import com.vci.starter.web.pagemodel.BaseModelVO;
 
/**
 * @author ludc
 * @date 2024/7/16 14:16
 */
public class VciFileDocClassifyDTO extends BaseModelVO {
    private static final long serialVersionUID = -8734458292613818262L;
    private String id;
    private String name;
    private String description;
 
    public VciFileDocClassifyDTO() {
    }
 
    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 "VciFileDocClassifyDTO{id='" + this.id + '\'' + ", name='" + this.name + '\'' + ", description='" + this.description + '\'' + "} " + super.toString();
    }
}