package com.vci.ubcs.code.entity;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
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)
|
@TableName("PL_CODE_SYSINTBASE")
|
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();
|
}
|
}
|