package com.jilongda.optometrist.query;
|
|
import com.jilongda.common.pojo.BasePage;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value = "镜架/镜片品牌查询参数")
|
public class TBrandQuery extends BasePage {
|
|
@ApiModelProperty(value = "1=镜架 2=镜片")
|
private Integer type;
|
|
}
|