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.
32 lines
487 B
32 lines
487 B
|
1 year ago
|
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;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 原库存id
|
||
|
|
*/
|
||
|
|
@NotNull(message = "原库存不得为空")
|
||
|
|
private Long stockId;
|
||
|
|
|
||
|
|
|
||
|
|
}
|