12345678910111213141516171819202122232425262728293031323334353637 |
- package com.sinosoft.lz.system.constant.vo;
- import java.util.Collection;
- import javax.xml.bind.annotation.XmlRootElement;
- @XmlRootElement(name = "iBTreeVos")
- public class IBTreeVos{
- private Collection<IBTreeVo> list;
- private Collection<ConstTreeVo> Constlist;
- private Collection<IBGetSelectTree> listTree;
- public Collection<IBTreeVo> getList() {
- return list;
- }
- public Collection<ConstTreeVo> getConstlist() {
- return Constlist;
- }
- public void setConstlist(Collection<ConstTreeVo> constlist) {
- Constlist = constlist;
- }
- public void setList(Collection<IBTreeVo> constants) {
- this.list = constants;
- }
- public Collection<IBGetSelectTree> getListTree() {
- return listTree;
- }
- public void setListTree(Collection<IBGetSelectTree> listTree) {
- this.listTree = listTree;
- }
- }
|