package com.tejia.lijin.app.entity;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Created by weikou2015 on 2017/2/22.
|
*/
|
|
public class WareType implements Serializable {
|
String id;
|
String name;
|
List<Ware> list;
|
|
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<Ware> getList() {
|
return list;
|
}
|
|
public void setList(List<Ware> list) {
|
this.list = list;
|
}
|
}
|