ludc
2024-12-05 90c86c95de1d20a3c3a44cab3482388a8c221a5e
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
package com.vci.model;
 
import com.vci.constant.VciFileBtmTypeConstant;
import com.vci.starter.web.annotation.Column;
import com.vci.starter.web.annotation.Transient;
import com.vci.starter.web.annotation.VciBtmType;
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
import com.vci.starter.web.model.BaseModel;
 
/**
 * 文档的类型
 * @author weidy
 * @date 2020/8/4 8:30
 */
@VciBtmType(name = VciFileBtmTypeConstant.FILE_DOC_CLASSIFY,tableName = "platformbtm_"+ VciFileBtmTypeConstant.FILE_DOC_CLASSIFY,text = "文档的类型",description = "文档的用途",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
@Transient
public class VciFileDocClassifyDO extends BaseModel {
 
    /**
     * 文档类型编号
     */
    @Column(nullable = false,length = 50)
    private String id;
 
    /**
     * 文档类型名称
     */
    @Column(nullable = false,length = 200)
    private String name;
 
    /**
     * 文档类型描述
     */
    @Column(columnDefinition = "描述")
    private String description;
 
    @Override
    public String getId() {
        return id;
    }
 
    @Override
    public void setId(String id) {
        this.id = id;
    }
 
    @Override
    public String getName() {
        return name;
    }
 
    @Override
    public void setName(String name) {
        this.name = name;
    }
 
    @Override
    public String getDescription() {
        return description;
    }
 
    @Override
    public void setDescription(String description) {
        this.description = description;
    }
 
    @Override
    public String toString() {
        return "VciFileDocClassifyDO{" +
                "id='" + id + '\'' +
                ", name='" + name + '\'' +
                ", description='" + description + '\'' +
                "} " + super.toString();
    }
}