提交 | 用户 | 时间 | ||
0ca254 | 1 | package com.jcdm.main.webservice; |
A | 2 | |
3 | import java.util.List; | |
4 | ||
5 | public class ItemList { | |
6 | private List<Item> item; | |
7 | ||
8 | // 添加构造函数和getter/setter方法 | |
9 | ||
10 | // 构造函数 | |
11 | public ItemList() { | |
12 | } | |
13 | ||
14 | // Getter和Setter方法 | |
15 | public List<Item> getItem() { | |
16 | return item; | |
17 | } | |
18 | ||
19 | public void setItem(List<Item> item) { | |
20 | this.item = item; | |
21 | } | |
22 | } |