liujie
5 天以前 1e90b1eea46cf72e7111a1ced9eff8c451304240
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.ruoyi.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
 
@Data
@ApiModel(value = "盘点Dto")
public class InventoryGoodsDto {
 
    @ApiModelProperty(value = "批次id")
    @NotBlank(message = "批次id不能为空")
    private String id;
 
    @ApiModelProperty(value = "目前数量")
    @NotNull(message = "目前数量不能为空")
    private Integer num;
 
    @ApiModelProperty(value = "盘点数量")
    @NotNull(message = "盘点数量不能为空")
    private Integer inventoryCount;
 
    @ApiModelProperty(value = "破损数量")
    @NotNull(message = "破损数量不能为空")
    private Integer damagedCount;
 
}