package com.consum.base.pojo;
|
|
import com.walker.web.param.ParamRequest;
|
|
public class BaseCategoryParam extends ParamRequest {
|
private Long fatherCategoryId;
|
private String categoryName;
|
/**
|
* 分裂类别:A,B,C
|
*/
|
private String classification;
|
private Integer orderNumber;
|
private Integer states;
|
|
public Long getFatherCategoryId() {
|
return fatherCategoryId;
|
}
|
|
public void setFatherCategoryId(Long fatherCategoryId) {
|
this.fatherCategoryId = fatherCategoryId;
|
}
|
|
public String getCategoryName() {
|
return categoryName;
|
}
|
|
public void setCategoryName(String categoryName) {
|
this.categoryName = categoryName;
|
}
|
|
public String getClassification() {
|
return classification;
|
}
|
|
public void setClassification(String classification) {
|
this.classification = classification;
|
}
|
|
public Integer getOrderNumber() {
|
return orderNumber;
|
}
|
|
public void setOrderNumber(Integer orderNumber) {
|
this.orderNumber = orderNumber;
|
}
|
|
public Integer getStates() {
|
return states;
|
}
|
|
public void setStates(Integer states) {
|
this.states = states;
|
}
|
}
|