package com.vci.dto;
|
|
/**
|
* 往业务类型中添加/移除属性的数据传输对象
|
* @author weidy
|
* @date 2019/10/14 16:17
|
*/
|
public class OsBtmTypeLinkAttributesDTO implements java.io.Serializable{
|
|
/**
|
* 禁止修改这个值
|
*/
|
private static final long serialVersionUID = 7635248565930948807L;
|
|
/**
|
* 主键
|
*/
|
private String oid;
|
|
/**
|
* 属性的字段名称
|
*/
|
private String id;
|
|
/**
|
* 属性的中文名称
|
*/
|
private String name;
|
|
/**
|
* 属性的长度
|
*/
|
private Integer attributeLength;
|
|
/**
|
* 是否可以为空
|
*/
|
private boolean nullableFlag;
|
|
/**
|
* 默认值
|
*/
|
private String defaultValue;
|
|
/**
|
* 小数精度位数
|
*/
|
private Integer precisionLength;
|
|
/**
|
* 刻度
|
*/
|
private Integer scaleLength;
|
|
/**
|
* 取值范围
|
*/
|
private String range;
|
|
/**
|
* 属性在本业务类型中的描述
|
*/
|
private String description;
|
|
/**
|
* 数据类型
|
*/
|
private String attrDataType;
|
|
/**
|
* 参照业务类型
|
*/
|
private String referBtmTypeId;
|
|
/**
|
* 参照业务类型名称
|
*/
|
private String referBtmTypeName;
|
|
/**
|
* 枚举编号
|
*/
|
private String enumId;
|
|
/**
|
* 枚举名称
|
*/
|
private String enumName;
|
|
/**
|
* 是否为删除属性
|
*/
|
private boolean removeAttribute;
|
|
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 Integer getAttributeLength() {
|
return attributeLength;
|
}
|
|
public void setAttributeLength(Integer attributeLength) {
|
this.attributeLength = attributeLength;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public boolean isRemoveAttribute() {
|
return removeAttribute;
|
}
|
|
public void setRemoveAttribute(boolean removeAttribute) {
|
this.removeAttribute = removeAttribute;
|
}
|
|
public String getOid() {
|
return oid;
|
}
|
|
public void setOid(String oid) {
|
this.oid = oid;
|
}
|
|
public String getAttrDataType() {
|
return attrDataType;
|
}
|
|
public void setAttrDataType(String attrDataType) {
|
this.attrDataType = attrDataType;
|
}
|
|
public String getReferBtmTypeId() {
|
return referBtmTypeId;
|
}
|
|
public void setReferBtmTypeId(String referBtmTypeId) {
|
this.referBtmTypeId = referBtmTypeId;
|
}
|
|
public String getReferBtmTypeName() {
|
return referBtmTypeName;
|
}
|
|
public void setReferBtmTypeName(String referBtmTypeName) {
|
this.referBtmTypeName = referBtmTypeName;
|
}
|
|
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 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 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 Integer getScaleLength() {
|
return scaleLength;
|
}
|
|
public void setScaleLength(Integer scaleLength) {
|
this.scaleLength = scaleLength;
|
}
|
|
@Override
|
public String toString() {
|
return "OsBtmTypeLinkAttributesDTO{" +
|
"oid='" + oid + '\'' +
|
", id='" + id + '\'' +
|
", name='" + name + '\'' +
|
", attributeLength=" + attributeLength +
|
", nullableFlag=" + nullableFlag +
|
", defaultValue='" + defaultValue + '\'' +
|
", precisionLength=" + precisionLength +
|
", scaleLength=" + scaleLength +
|
", range='" + range + '\'' +
|
", description='" + description + '\'' +
|
", attrDataType='" + attrDataType + '\'' +
|
", referBtmTypeId='" + referBtmTypeId + '\'' +
|
", referBtmTypeName='" + referBtmTypeName + '\'' +
|
", enumId='" + enumId + '\'' +
|
", enumName='" + enumName + '\'' +
|
", removeAttribute=" + removeAttribute +
|
'}';
|
}
|
}
|