1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.vci.ubcs.code.vo.webserviceModel.coderule;
|
| import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
|
| public class CodeSectionValueVO {
| /***
| * 码值主键
| */
| private String id;
| /***
| * 码值编号
| */
| private String num;
| /***
| * 码段值
| */
| private String value;
|
| /**
| * 描述
| */
| @XStreamAsAttribute
| private String description;
| }
|
|