You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
153 lines
2.6 KiB
153 lines
2.6 KiB
package com.spring.modules.base.entity;
|
|
|
|
public class PartSubPropertiesValue {
|
|
/**
|
|
*
|
|
*/
|
|
private String partNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String site;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String codeNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private Double subCodeSeqNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String subCodeDesc;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private Double itemNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String propertiesItemNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String textValue;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private Double numValue;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private String recordType;
|
|
|
|
private Integer orderId;
|
|
private String valueTypeDb;//属性值的类型 T 文本 N 数字
|
|
|
|
public String getPartNo() {
|
|
return partNo;
|
|
}
|
|
|
|
public void setPartNo(String partNo) {
|
|
this.partNo = partNo;
|
|
}
|
|
|
|
public String getSite() {
|
|
return site;
|
|
}
|
|
|
|
public void setSite(String site) {
|
|
this.site = site;
|
|
}
|
|
|
|
public String getCodeNo() {
|
|
return codeNo;
|
|
}
|
|
|
|
public void setCodeNo(String codeNo) {
|
|
this.codeNo = codeNo;
|
|
}
|
|
|
|
public Double getSubCodeSeqNo() {
|
|
return subCodeSeqNo;
|
|
}
|
|
|
|
public void setSubCodeSeqNo(Double subCodeSeqNo) {
|
|
this.subCodeSeqNo = subCodeSeqNo;
|
|
}
|
|
|
|
public String getSubCodeDesc() {
|
|
return subCodeDesc;
|
|
}
|
|
|
|
public void setSubCodeDesc(String subCodeDesc) {
|
|
this.subCodeDesc = subCodeDesc;
|
|
}
|
|
|
|
public Double getItemNo() {
|
|
return itemNo;
|
|
}
|
|
|
|
public void setItemNo(Double itemNo) {
|
|
this.itemNo = itemNo;
|
|
}
|
|
|
|
public String getPropertiesItemNo() {
|
|
return propertiesItemNo;
|
|
}
|
|
|
|
public void setPropertiesItemNo(String propertiesItemNo) {
|
|
this.propertiesItemNo = propertiesItemNo;
|
|
}
|
|
|
|
public String getTextValue() {
|
|
return textValue;
|
|
}
|
|
|
|
public void setTextValue(String textValue) {
|
|
this.textValue = textValue;
|
|
}
|
|
|
|
public Double getNumValue() {
|
|
return numValue;
|
|
}
|
|
|
|
public void setNumValue(Double numValue) {
|
|
this.numValue = numValue;
|
|
}
|
|
|
|
public String getRecordType() {
|
|
return recordType;
|
|
}
|
|
|
|
public void setRecordType(String recordType) {
|
|
this.recordType = recordType;
|
|
}
|
|
|
|
public Integer getOrderId() {
|
|
return orderId;
|
|
}
|
|
|
|
public void setOrderId(Integer orderId) {
|
|
this.orderId = orderId;
|
|
}
|
|
|
|
public String getValueTypeDb() {
|
|
return valueTypeDb;
|
|
}
|
|
|
|
public void setValueTypeDb(String valueTypeDb) {
|
|
this.valueTypeDb = valueTypeDb;
|
|
}
|
|
}
|
|
|