| | |
| | | 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.XStreamAlias; |
| | | //import com.thoughtworks.xstream.annotations.XStreamAsAttribute; |
| | | |
| | | @XStreamAlias("classify") |
| | | //@XStreamAlias("classify") |
| | | public class NodeClassifyDTO { |
| | | /** |
| | | * 分类id |
| | | */ |
| | | @XStreamAsAttribute |
| | | //@XStreamAsAttribute |
| | | private String id; |
| | | /*** |
| | | * 分类名称 |
| | | */ |
| | | @XStreamAsAttribute |
| | | //@XStreamAsAttribute |
| | | private String name; |
| | | /*** |
| | | * 父节点id |
| | | */ |
| | | @XStreamAsAttribute |
| | | // @XStreamAsAttribute |
| | | private String pid; |
| | | /*** |
| | | * 分类代号 |
| | | */ |
| | | @XStreamAsAttribute |
| | | //@XStreamAsAttribute |
| | | private String classCode; |
| | | /*** |
| | | * 描述 |
| | | */ |
| | | @XStreamAsAttribute |
| | | //@XStreamAsAttribute |
| | | private String description; |
| | | /*** |
| | | * 分类链接路径 |
| | | */ |
| | | @XStreamAsAttribute |
| | | //@XStreamAsAttribute |
| | | private String fullPathName; |
| | | /*** |
| | | * 分类状态 |
| | | */ |
| | | @XStreamAsAttribute |
| | | //@XStreamAsAttribute |
| | | private String lcStatus; |
| | | |
| | | public String getId() { |