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.
22 lines
407 B
Java
22 lines
407 B
Java
3 years ago
|
package com.glxp.api.req.thrsys;
|
||
|
|
||
|
import com.glxp.api.req.ListPageRequest;
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* 仓库货位信息查询参数
|
||
|
*/
|
||
|
@Data
|
||
|
public class UdiwmsWarehouseRequest extends ListPageRequest {
|
||
|
|
||
|
//仓库号,支持模糊查询
|
||
|
private String inventoryCode;
|
||
|
|
||
|
//货位号,支持模糊查询
|
||
|
private String warehouseCode;
|
||
|
|
||
|
//第三方系统ID
|
||
|
private String thirdSys;
|
||
|
|
||
|
}
|