|  |  |  | 
|---|
|  |  |  | List<Map<String, Object>> result = new ArrayList<>(); | 
|---|
|  |  |  | for (BasWhs basWhs : page.getRecords()){ | 
|---|
|  |  |  | Map<String, Object> map = new HashMap<>(); | 
|---|
|  |  |  | map.put("id", basWhs.getId()); | 
|---|
|  |  |  | map.put("id", basWhs.getIdentifying()); | 
|---|
|  |  |  | map.put("value", basWhs.getWhsDesc()); | 
|---|
|  |  |  | result.add(map); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | * 编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiModelProperty(value= "编号") | 
|---|
|  |  |  | @TableId(value = "id", type = IdType.AUTO) | 
|---|
|  |  |  |  | 
|---|
|  |  |  | private Long id; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | 
|---|
|  |  |  | * 标识 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @ApiModelProperty(value= "标识") | 
|---|
|  |  |  | @TableId(value = "identifying", type = IdType.AUTO) | 
|---|
|  |  |  | private String identifying; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | public BasWhs() {} | 
|---|