| | |
| | | |
| | | 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(dicCode = "DICT109") |
| | | private String passageway; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ExcelProperty(value = "建筑单元") |
| | | @ApiModelProperty("建筑单元") |
| | | @Dict(dictTable = "bs_building", dicCode = "id", dicText = "detailed_name") |
| | | private Long buildingId; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ExcelProperty(value = "所属机构") |
| | | @ApiModelProperty("所属机构") |
| | | @Dict(dictTable = "bs_organization", dicCode = "id", dicText = "detailed_name") |
| | | private Long organizationId; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ExcelProperty(value = "施工批次") |
| | | @ApiModelProperty("施工批次") |
| | | @Dict(dictTable = "sg_construction_batch", dicCode = "id", dicText = "batch") |
| | | private Long constructionBatchId; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ExcelProperty(value = "生产厂商") |
| | | @ApiModelProperty("生产厂商") |
| | | @Dict(dictTable = "dev_manufacturer", dicCode = "id", dicText = "name") |
| | | private Long manufacturerId; |
| | | |
| | | /** |