24年6月份po1项目
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.
po106/shkj-wms/src/main/java/com/shkj/wms/bo/BaseLocationUrgentBo.java

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