package com.jsh.erp.datasource.entities;
|
|
public class MaterialAttribute {
|
private Long id;
|
|
private String attributeName;
|
|
private String attributeValue;
|
|
private Long tenantId;
|
|
private String deleteFlag;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getAttributeName() {
|
return attributeName;
|
}
|
|
public void setAttributeName(String attributeName) {
|
this.attributeName = attributeName == null ? null : attributeName.trim();
|
}
|
|
public String getAttributeValue() {
|
return attributeValue;
|
}
|
|
public void setAttributeValue(String attributeValue) {
|
this.attributeValue = attributeValue == null ? null : attributeValue.trim();
|
}
|
|
public Long getTenantId() {
|
return tenantId;
|
}
|
|
public void setTenantId(Long tenantId) {
|
this.tenantId = tenantId;
|
}
|
|
public String getDeleteFlag() {
|
return deleteFlag;
|
}
|
|
public void setDeleteFlag(String deleteFlag) {
|
this.deleteFlag = deleteFlag == null ? null : deleteFlag.trim();
|
}
|
}
|