| | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.ruoyi.common.annotation.Dict; |
| | | import com.ruoyi.common.annotation.ExcelDictFormat; |
| | | import com.ruoyi.common.convert.ExcelDictConvert; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | */ |
| | | @ExcelProperty(value = "生产厂商") |
| | | @ApiModelProperty("生产厂商") |
| | | @Dict(dictTable = "dev_manufacturer", dicCode = "id", dicText = "name") |
| | | private String manufacturer; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ExcelProperty(value = "厂商代码") |
| | | @ApiModelProperty("厂商代码") |
| | | @Dict(dictTable = "dev_manufacturer", dicCode = "id", dicText = "code") |
| | | private String vendorCode; |
| | | |
| | | /** |