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
76
77
78
package com.vci.ubcs.code.model;
 
 
import com.vci.starter.web.annotation.Column;
import com.vci.starter.web.annotation.VciBtmType;
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
import com.vci.starter.web.model.BaseModel;
import com.vci.ubcs.code.constant.MdmBtmTypeConstant;
 
/**
 * Description:系统集成的系统信息
 *
 * @author: LiHang
 * @date: Created on 2022/3/7
 */
@VciBtmType(name = MdmBtmTypeConstant.SYS_INT_BASE,text = "系统集成的系统信息",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE,startStatus = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
public class SysIntBaseDO extends BaseModel {
    /**
     * 序列化
     */
    private static final long serialVersionUID = -5910713918419137900L;
    /**
     * 系统编号
     */
    @Column(columnDefinition = "系统编号",nullable = false)
    private String id;
 
    /**
     * 系统名称
     */
    @Column(columnDefinition = "系统名称",nullable = false)
    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 "SysIntegrationBaseDO{" +
                "id='" + id + '\'' +
                ", name='" + name + '\'' +
                ", description='" + description + '\'' +
                '}' + super.toString();
    }
}