rentaiming
2024-07-04 069153106a8ce1d7a7c1d5b48c07b849fd65971f
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
31
32
33
34
35
36
37
38
39
40
package com.ruoyi.management.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonInclude;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
@Data
@ApiModel(value = "仓库管理入库", description = "仓库管理入库")
public class SupplierVolumeProductionRkglVO {
    @ApiModelProperty("用户名称")
    @JsonInclude(JsonInclude.Include.ALWAYS)
    private String nickName;
 
    @ApiModelProperty(name = "手机号码")
    @JsonInclude(JsonInclude.Include.ALWAYS)
    private String phonenumber;
 
    private Integer id;
 
    @ApiModelProperty("仓库名称")
    @JsonInclude(JsonInclude.Include.ALWAYS)
    private String storeManagementName;
 
    @ApiModelProperty("发起时间")
    @JsonInclude(JsonInclude.Include.ALWAYS)
    private Date startiTime;
 
    @ApiModelProperty("供应商id")
    @JsonInclude(JsonInclude.Include.ALWAYS)
    private Long supplierId;
 
    @ApiModelProperty("仓库ID")
    private Long managementId;
 
 
}