package com.farriver.bwf.data.transferobject.queryobject.product; import com.farriver.bwf.data.transferobject.queryobject.QueryObjectBase; import java.util.Date; public class ProductAttributeValueQueryObject extends QueryObjectBase { private String id; private String remark; private Date createtime; private Date updatetime; private String value; private String attributeId; private String attributeName; private String productid; private String productcode; private String productname; public String getId() { return id; } public void setId(String id) { this.id = id == null ? null : id.trim(); } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark == null ? null : remark.trim(); } public Date getCreatetime() { return createtime; } public void setCreatetime(Date createtime) { this.createtime = createtime; } public Date getUpdatetime() { return updatetime; } public void setUpdatetime(Date updatetime) { this.updatetime = updatetime; } public String getValue() { return value; } public void setValue(String value) { this.value = value == null ? null : value.trim(); } public String getAttributeId() { return attributeId; } public void setAttributeId(String attributeId) { this.attributeId = attributeId == null ? null : attributeId.trim(); } public String getAttributeName() { return attributeName; } public void setAttributeName(String attributeName) { this.attributeName = attributeName == null ? null : attributeName.trim(); } public String getProductid() { return productid; } public void setProductid(String productid) { this.productid = productid == null ? null : productid.trim(); } public String getProductcode() { return productcode; } public void setProductcode(String productcode) { this.productcode = productcode == null ? null : productcode.trim(); } public String getProductname() { return productname; } public void setProductname(String productname) { this.productname = productname == null ? null : productname.trim(); } }