package com.vci.web.model;
|
|
import com.vci.file.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();
|
}
|
}
|