forked from sfms3.0/sfms3.0
4 changed files with 59 additions and 12 deletions
@ -0,0 +1,20 @@ |
|||
package com.win.module.wms.controller.rule.vo; |
|||
|
|||
import io.swagger.v3.oas.annotations.media.Schema; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotEmpty; |
|||
import java.util.List; |
|||
@Schema(description = "APP管理精度策略") |
|||
@Data |
|||
public class PrecisionStrategyReqVO { |
|||
|
|||
@Schema(description = "物品代码") |
|||
@NotEmpty(message = "物品代码不能为空") |
|||
private List<String> itemCodes; |
|||
|
|||
@Schema(description = "库位代码") |
|||
@NotBlank(message = "库位代码不能为空") |
|||
private String locationCode; |
|||
} |
Loading…
Reference in new issue