forked from sfms3.0/sfms3.0
2 changed files with 29 additions and 6 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.win.module.wms.controller.location.vo; |
||||
|
|
||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
|
||||
|
@Schema(description = "APP直接上架校验库位和item") |
||||
|
@Data |
||||
|
public class LocationRecommendVO { |
||||
|
|
||||
|
@Schema(description = "物品代码") |
||||
|
@NotBlank(message = "物品代码不能为空") |
||||
|
private String itemCode; |
||||
|
|
||||
|
@Schema(description = "供应商代码") |
||||
|
private String supplierCode; |
||||
|
|
||||
|
@Schema(description = "批次") |
||||
|
private String batch; |
||||
|
|
||||
|
@Schema(description = "库存状态") |
||||
|
private String inventoryStatus; |
||||
|
} |
Loading…
Reference in new issue