MapResult.java
473 Bytes
package com.huaheng.mobilewms.bean;
import java.util.List;
/**
* 用于封装pc端的动态数据接口实体
* {
* "results":[
* {
* "id":"P1031",
* "text":"P1031发动机库出入口"
* },
* {
* "id":"P1082",
* "text":"P1082发动机库出入口"
* }
* ]
* }
*/
public class MapResult {
private List<Item> results;
public class Item{
public String id;
public String text;
}
}