1
2
3
4
5
6
7
8
9
10
11
12
| package com.ruoyi.system.vo;
|
| import com.ruoyi.system.model.TCrmSupplier;
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| @Data
| @ApiModel(value = "TCrmSupplierVO对象", description = "crm供应商VO")
| public class TCrmSupplierVO extends TCrmSupplier {
|
| }
|
|