无关风月
2024-12-25 042fbcd557ef21ab256a542f1fef039269684340
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.jilongda.optometrist.vo;
 
import com.jilongda.optometrist.model.TLensSeries;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "镜片系列VO")
public class TLensSeriesVO extends TLensSeries {
 
    @ApiModelProperty(value = "品牌名称")
    private String brandName;
    @ApiModelProperty(value = "球/非")
    private String typeName;
    @ApiModelProperty(value = "折射率")
    private String refractiveIndex;
    @ApiModelProperty(value = "供应商名称")
    private String supplier;
 
}