package com.vci.pagemodel;
|
|
import java.util.Date;
|
|
/**
|
* 属性的显示对象
|
* @author weidy
|
* @date 2019/10/11 4:29 PM
|
*/
|
public class OsAttributeVO implements java.io.Serializable{
|
|
/**
|
* 禁止修改这个值
|
*/
|
private static final long serialVersionUID = -7614130038164908555L;
|
|
/**
|
* 主键
|
*/
|
private String oid;
|
|
/**
|
* 属性英文名称
|
*/
|
private String id;
|
|
/**
|
* 属性中文名称
|
*/
|
private String name;
|
|
/**
|
* 描述
|
*/
|
private String description;
|
|
/**
|
* 属性类型,使用枚举VciFieldTypeEnum
|
*/
|
private String attributeDataType;
|
|
/**
|
* 属性类型显示文本
|
*/
|
private String attributeDataTypeText;
|
/**
|
* 属性UI控件显示类型
|
*/
|
private String attributeUIType;
|
/**
|
* 属性UI控件显示类型文本
|
*/
|
private String attributeUITypeText;
|
|
/**
|
* 是否可以为空
|
*/
|
private boolean nullableFlag;
|
|
/**
|
* 默认值
|
*/
|
private String defaultValue;
|
|
/**
|
* 使用枚举英文名称
|
*/
|
private String enumId;
|
|
/**
|
* 使用枚举的中文名称
|
*/
|
private String enumName;
|
|
/**
|
* 参照的业务类型编号
|
*/
|
private String btmTypeId;
|
|
/**
|
* 参照的业务类型名称
|
*/
|
private String btmTypeName;
|
|
/**
|
* 参照的链接类型名称
|
*/
|
private String linkTypeName;
|
|
/**
|
* 选择了链接类型时选择的版本
|
*/
|
private Integer version;
|
|
/**
|
* 属性的长度
|
*/
|
private Integer attrLength;
|
|
/**
|
* 小数精度位数
|
*/
|
private Integer precisionLength;
|
|
/**
|
* 小数刻度位数
|
*/
|
private Integer scaleLength;
|
|
/**
|
* 取值范围
|
*/
|
private String range;
|
|
/**
|
* 字段为参照时参照的相关属性
|
*/
|
private String other;
|
|
/**
|
* 业务类型名称,是值这条数据的业务类型,不是属性所属的业务类型,应该是业务类型为属性池
|
*/
|
private String btmname;
|
|
/**
|
* 拥有者
|
*/
|
private String owner;
|
|
/**
|
* 创建人
|
*/
|
private String creator;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 最后修改人
|
*/
|
private String lastModifier;
|
|
/**
|
* 最后修改时间,格式是yyyy-MM-dd HH:mm:ss.SSS
|
*/
|
private Date lastModifyTime;
|
|
/**
|
* 时间戳,格式是yyyy-MM-dd HH:mm:ss.SSS
|
*/
|
private Date ts;
|
|
public String getOther() {
|
return other;
|
}
|
|
public void setOther(String other) {
|
this.other = other;
|
}
|
|
public String getOid() {
|
return oid;
|
}
|
|
public void setOid(String oid) {
|
this.oid = oid;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getAttributeDataType() {
|
return attributeDataType;
|
}
|
|
public void setAttributeDataType(String attributeDataType) {
|
this.attributeDataType = attributeDataType;
|
}
|
|
public String getAttributeDataTypeText() {
|
return attributeDataTypeText;
|
}
|
|
public void setAttributeDataTypeText(String attributeDataTypeText) {
|
this.attributeDataTypeText = attributeDataTypeText;
|
}
|
|
public boolean isNullableFlag() {
|
return nullableFlag;
|
}
|
|
public void setNullableFlag(boolean nullableFlag) {
|
this.nullableFlag = nullableFlag;
|
}
|
|
public String getDefaultValue() {
|
return defaultValue;
|
}
|
|
public void setDefaultValue(String defaultValue) {
|
this.defaultValue = defaultValue;
|
}
|
|
public String getEnumId() {
|
return enumId;
|
}
|
|
public void setEnumId(String enumId) {
|
this.enumId = enumId;
|
}
|
|
public String getEnumName() {
|
return enumName;
|
}
|
|
public void setEnumName(String enumName) {
|
this.enumName = enumName;
|
}
|
|
public String getBtmTypeId() {
|
return btmTypeId;
|
}
|
|
public void setBtmTypeId(String btmTypeId) {
|
this.btmTypeId = btmTypeId;
|
}
|
|
public String getBtmTypeName() {
|
return btmTypeName;
|
}
|
|
public void setBtmTypeName(String btmTypeName) {
|
this.btmTypeName = btmTypeName;
|
}
|
|
public String getLinkTypeName() {
|
return linkTypeName;
|
}
|
|
public void setLinkTypeName(String linkTypeName) {
|
this.linkTypeName = linkTypeName;
|
}
|
|
public Integer getVersion() {
|
return version;
|
}
|
|
public void setVersion(Integer version) {
|
this.version = version;
|
}
|
|
public Integer getAttrLength() {
|
return attrLength;
|
}
|
|
public void setAttrLength(Integer attrLength) {
|
this.attrLength = attrLength;
|
}
|
|
public Integer getPrecisionLength() {
|
return precisionLength;
|
}
|
|
public void setPrecisionLength(Integer precisionLength) {
|
this.precisionLength = precisionLength;
|
}
|
|
public String getRange() {
|
return range;
|
}
|
|
public void setRange(String range) {
|
this.range = range;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getLastModifier() {
|
return lastModifier;
|
}
|
|
public void setLastModifier(String lastModifier) {
|
this.lastModifier = lastModifier;
|
}
|
|
public Date getLastModifyTime() {
|
return lastModifyTime;
|
}
|
|
public void setLastModifyTime(Date lastModifyTime) {
|
this.lastModifyTime = lastModifyTime;
|
}
|
|
public Date getTs() {
|
return ts;
|
}
|
|
public void setTs(Date ts) {
|
this.ts = ts;
|
}
|
|
|
public String getBtmname() {
|
return btmname;
|
}
|
|
public void setBtmname(String btmname) {
|
this.btmname = btmname;
|
}
|
|
public String getOwner() {
|
return owner;
|
}
|
|
public void setOwner(String owner) {
|
this.owner = owner;
|
}
|
|
public Integer getScaleLength() {
|
return scaleLength;
|
}
|
|
public void setScaleLength(Integer scaleLength) {
|
this.scaleLength = scaleLength;
|
}
|
|
public String getAttributeUIType() {
|
return attributeUIType;
|
}
|
|
public void setAttributeUIType(String attributeUIType) {
|
this.attributeUIType = attributeUIType;
|
}
|
|
public String getAttributeUITypeText() {
|
return attributeUITypeText;
|
}
|
|
public void setAttributeUITypeText(String attributeUITypeText) {
|
this.attributeUITypeText = attributeUITypeText;
|
}
|
|
@Override
|
public String toString() {
|
return "OsAttributeVO{" +
|
"oid='" + oid + '\'' +
|
", id='" + id + '\'' +
|
", name='" + name + '\'' +
|
", description='" + description + '\'' +
|
", attributeDataType='" + attributeDataType + '\'' +
|
", attributeDataTypeText='" + attributeDataTypeText + '\'' +
|
", attributeUIType='" + attributeUIType + '\'' +
|
", attributeUITypeText='" + attributeUITypeText + '\'' +
|
", nullableFlag=" + nullableFlag +
|
", defaultValue='" + defaultValue + '\'' +
|
", enumId='" + enumId + '\'' +
|
", enumName='" + enumName + '\'' +
|
", btmTypeId='" + btmTypeId + '\'' +
|
", btmTypeName='" + btmTypeName + '\'' +
|
", linkTypeName='" + linkTypeName + '\'' +
|
", version=" + version +
|
", attrLength=" + attrLength +
|
", precisionLength=" + precisionLength +
|
", scaleLength=" + scaleLength +
|
", range='" + range + '\'' +
|
", other='" + other + '\'' +
|
", btmname='" + btmname + '\'' +
|
", owner='" + owner + '\'' +
|
", creator='" + creator + '\'' +
|
", createTime=" + createTime +
|
", lastModifier='" + lastModifier + '\'' +
|
", lastModifyTime=" + lastModifyTime +
|
", ts=" + ts +
|
'}';
|
}
|
}
|