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.
udi-wms-java/src/main/java/com/glxp/api/req/thrsys/UdiwmsWarehouseRequest.java

22 lines
413 B
Java

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;
}