rentaiming
2024-07-01 68eb77aede3e5c1c7ccde2aa1f28fd2adaa07d28
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
package com.ruoyi.management.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
@ApiModel(value = "通过物资拿出库物资的数据对象", description = "通过物资拿出库物资的数据对象")
public class InventoriesSuppliesVO {
    private Long id;
 
    @ApiModelProperty("仓库id")
    private Long materialsId;
 
    @ApiModelProperty("仓库名称")
    private String storeManagementName;
 
    @ApiModelProperty("仓库编号")
    private String storeManagementNo;
 
 
    @ApiModelProperty("盘点人名称")
    private String pdrName;
}