package com.glxp.api.req.thrsys; import com.glxp.api.util.page.ListPageRequest; import lombok.Data; /** * 仓库货位信息查询参数 */ @Data public class UdiwmsWarehouseRequest extends ListPageRequest { //仓库号,支持模糊查询 private String inventoryCode; //货位号,支持模糊查询 private String warehouseCode; //第三方系统ID private String thirdSys; }