package com.farriver.bwf.data.transferobject.viewmodel.product; import java.io.Serializable; import java.util.Date; import java.util.List; public class ProductCategoryViewModel implements Serializable { private String id; private String parentid; private String name; private Boolean isdeleted; private String remark; private Date createtime; private Date updatetime; private ProductCategoryViewModel parent; private List children; private List products; public List getProducts() { return products; } public void setProducts(List products) { this.products = products; } public ProductCategoryViewModel getParent() { return parent; } public void setParent(ProductCategoryViewModel parent) { this.parent = parent; } public List getChildren() { return children; } public void setChildren(List children) { this.children = children; } public String getId() { return id; } public void setId(String id) { this.id = id == null ? null : id.trim(); } public String getParentid() { return parentid; } public void setParentid(String parentid) { this.parentid = parentid == null ? null : parentid.trim(); } public String getName() { return name; } public void setName(String name) { this.name = name == null ? null : name.trim(); } public Boolean getIsdeleted() { return isdeleted; } public void setIsdeleted(Boolean isdeleted) { this.isdeleted = isdeleted; } 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; } }