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;
|
|
/**
|
* 记录工艺推送过来的数据信息
|
* @author wangyi
|
* @date 2022-3-7
|
*/
|
@VciBtmType(name = MdmBtmTypeConstant.DOCKING_PRE_APPLY_DATA_INFO,text = "记录工艺推送过来的数据信息",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
|
public class DockingPreApplyDataInfoDO extends BaseModel {
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 5020487634341415429L;
|
|
/**
|
* data的oid
|
*/
|
@Column(nullable = false,columnDefinition = "data的oid")
|
private String dataoid;
|
|
/**
|
* 唯一标识,工艺里边的图号
|
*/
|
@Column(nullable = false,columnDefinition = "唯一标识")
|
private String uniquecode;
|
|
/**
|
* 属性key
|
*/
|
@Column(nullable = true,columnDefinition = "属性key")
|
private String key;
|
|
/**
|
* 属性key含义
|
*/
|
@Column(nullable = true,columnDefinition = "属性key含义")
|
private String mean;
|
|
/**
|
* 属性value
|
*/
|
@Column(nullable = true,columnDefinition = "属性value",length = 4000)
|
private String value;
|
|
public String getDataoid() {
|
return dataoid;
|
}
|
|
public void setDataoid(String dataoid) {
|
this.dataoid = dataoid;
|
}
|
|
public String getUniquecode() {
|
return uniquecode;
|
}
|
|
public void setUniquecode(String uniquecode) {
|
this.uniquecode = uniquecode;
|
}
|
|
public String getKey() {
|
return key;
|
}
|
|
public void setKey(String key) {
|
this.key = key;
|
}
|
|
public String getMean() {
|
return mean;
|
}
|
|
public void setMean(String mean) {
|
this.mean = mean;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
@Override
|
public String toString() {
|
return "DockingPSMDataInfoDO{" +
|
"dataoid='" + dataoid + '\'' +
|
", uniquecode='" + uniquecode + '\'' +
|
", key='" + key + '\'' +
|
", mean='" + mean + '\'' +
|
", value='" + value + '\'' +
|
'}';
|
}
|
}
|