| | |
| | | package com.vci.ubcs.code.dto.datapush.classify; |
| | | |
| | | import com.thoughtworks.xstream.annotations.XStreamAlias; |
| | | import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | import com.thoughtworks.xstream.annotations.XStreamImplicit; |
| | | |
| | | import java.util.List; |
| | | |
| | | @XStreamAlias("library") |
| | | //@XStreamAlias("library") |
| | | public class NodeLibraryDTO { |
| | | @XStreamAsAttribute |
| | | //@XStreamAsAttribute |
| | | private String id; |
| | | @XStreamAsAttribute |
| | | //@XStreamAsAttribute |
| | | private String name; |
| | | @XStreamImplicit |
| | | //@XStreamImplicit |
| | | private List<NodeClassifyDTO> classify; |
| | | |
| | | public String getId() { |