Sign in

RF / mobileWms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • mobileWms
  • ..
  • bean
  • MapResult.java
  • 完成出库组盘选站台功能,ShipmentDetailActivity.NEED_STATION 开关
    a016b4fc
    周峰 authored
    2021-09-24 16:42:12 +0800  
    Browse Code »
MapResult.java 473 Bytes
Edit Raw Blame History
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
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;
    }
}