You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
435 B
30 lines
435 B
package com.shkj.wms.bo;
|
|
|
|
import com.shkj.common.core.domain.BaseEntity;
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
|
|
/**
|
|
* 货位资料分页查询对象 base_location
|
|
*
|
|
* @author lch
|
|
* @date 2022-04-23
|
|
*/
|
|
@Data
|
|
public class BaseLocationUrgentBo extends BaseEntity {
|
|
|
|
|
|
/**
|
|
* 目标货位名称
|
|
*/
|
|
private String locationName;
|
|
|
|
/**
|
|
* 巷道
|
|
*/
|
|
private String tunnel;
|
|
|
|
|
|
}
|
|
|