dff093df6ede97e9c9abc34fb42e4f5684555944.svn-base 798 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.sinosoft.lz.system.constant.vo;
  2. import java.util.Collection;
  3. import javax.xml.bind.annotation.XmlRootElement;
  4. @XmlRootElement(name = "iBTreeVos")
  5. public class IBTreeVos{
  6. private Collection<IBTreeVo> list;
  7. private Collection<ConstTreeVo> Constlist;
  8. private Collection<IBGetSelectTree> listTree;
  9. public Collection<IBTreeVo> getList() {
  10. return list;
  11. }
  12. public Collection<ConstTreeVo> getConstlist() {
  13. return Constlist;
  14. }
  15. public void setConstlist(Collection<ConstTreeVo> constlist) {
  16. Constlist = constlist;
  17. }
  18. public void setList(Collection<IBTreeVo> constants) {
  19. this.list = constants;
  20. }
  21. public Collection<IBGetSelectTree> getListTree() {
  22. return listTree;
  23. }
  24. public void setListTree(Collection<IBGetSelectTree> listTree) {
  25. this.listTree = listTree;
  26. }
  27. }