1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| package com.vci.ubcs.code.vo.webserviceModel.applybz;
|
| import com.thoughtworks.xstream.annotations.XStreamAlias;
| import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
| import com.thoughtworks.xstream.annotations.XStreamImplicit;
| import com.vci.ubcs.code.vo.webserviceModel.apply.ProppertyVO;
|
| import java.util.List;
|
| @XStreamAlias("object")
| public class ApplyBZDataVO {
| /***
| * 输入主键
| */
| @XStreamAsAttribute
| private String id;
| /**
| * 编码
| */
| @XStreamAsAttribute
| private String code;
| /**
| * 状态
| */
| @XStreamAsAttribute
| private String status;
| /***
| * 创建者
| */
| @XStreamAsAttribute
| private String creator;
|
| /**
| * 更改者
| */
| @XStreamAsAttribute
| private String editor;
| /***
| * 数据属性对象
| */
| @XStreamImplicit
| private List<ProppertyVO> prop;
| }
|
|