You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
509 B
Java
36 lines
509 B
Java
package com.glxp.api.res.thrsys;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class UdiwmsWarehouseDetail {
|
|
|
|
//货位号
|
|
private String code;
|
|
|
|
//货位名称
|
|
private String name;
|
|
|
|
//备注
|
|
private String remark;
|
|
|
|
private List<SubWarehouse> subWarehouses;
|
|
|
|
@Data
|
|
public static class SubWarehouse {
|
|
//货位号
|
|
private String code;
|
|
|
|
//货位名称
|
|
private String name;
|
|
|
|
//备注
|
|
private String remark;
|
|
|
|
}
|
|
|
|
|
|
}
|