package com.matrix.system.hive.bean;
|
|
import java.io.Serializable;
|
/**
|
*
|
* @date 2016-07-30 09:54
|
*/
|
public class ShoppingGoodsCategory implements Serializable{
|
|
private static final long serialVersionUID = 1L;
|
|
|
private Long id;
|
|
|
/**
|
* 类型名称
|
*/
|
private String name;
|
|
|
/**
|
* 父类型
|
*/
|
private Long parentId;
|
|
|
/**
|
* 排序
|
*/
|
private Integer sequence;
|
|
/**
|
* 销售平台
|
*/
|
private String salePlatform;
|
|
|
private Long shopId;
|
|
private Long companyId;
|
|
public Long getShopId() {
|
return shopId;
|
}
|
|
public void setShopId(Long shopId) {
|
this.shopId = shopId;
|
}
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id=id;
|
}
|
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name=name;
|
}
|
|
|
public Long getParentId() {
|
return parentId;
|
}
|
|
public void setParentId(Long parentId) {
|
this.parentId=parentId;
|
}
|
|
|
public Integer getSequence() {
|
return sequence;
|
}
|
|
public void setSequence(Integer sequence) {
|
this.sequence=sequence;
|
}
|
|
public String getSalePlatform() {
|
return salePlatform;
|
}
|
|
public void setSalePlatform(String salePlatform) {
|
this.salePlatform = salePlatform;
|
}
|
|
@Override
|
public String toString() {
|
return "ShoppingGoodsCategory [id=" + id + ", name=" + name
|
+ ", parentId=" + parentId + ", sequence=" + sequence
|
+ ", salePlatform=" + salePlatform + "]";
|
}
|
|
|
}
|