package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class SecondCategoryMax implements Serializable {
|
|
@Expose
|
String id;
|
@Expose
|
String name;
|
@Expose
|
List<SecondCategory> listSub;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public List<SecondCategory> getListSub() {
|
return listSub;
|
}
|
|
public void setListSub(List<SecondCategory> listSub) {
|
this.listSub = listSub;
|
}
|
}
|