xuhy
1 天以前 9fcfdf5aef9c75e0b75f6e5b6ec9badb650914dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.system.vo;
 
import com.ruoyi.system.model.TCrmSupplier;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel(value = "TCrmSupplierVO对象", description = "crm供应商VO")
public class TCrmSupplierVO extends TCrmSupplier {
 
    @ApiModelProperty(value = "仓库id")
    private String warehouseId;
 
    @ApiModelProperty(value = "仓库名称")
    private String warehouseName;
 
}