rentaiming
2024-06-27 c428ffeeafc8164066a19b0f0b7c63df86d0fe45
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
package com.ruoyi.management.domain.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
@Data
public class SupplierVolumeProductionRkglVO {
    @ApiModelProperty("用户名称")
    private String nickName;
 
    @ApiModelProperty(name = "手机号码")
    private String phonenumber;
 
    @TableId("id")
    private Integer id;
 
    @ApiModelProperty("仓库名称")
    private String storeManagementName;
 
    @ApiModelProperty("发起时间")
    private Date startiTime;
 
    @ApiModelProperty("供应商id")
    private Integer supplierId;
 
    @ApiModelProperty("仓库ID")
    @TableField("management_id")
    private Long managementId;
 
 
}