old mode 100644
new mode 100755
| | |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.ToString; |
| | | import org.jeecg.common.aspect.annotation.Dict; |
| | | import org.jeecgframework.poi.excel.annotation.Excel; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | @Excel(name = "英文名", width = 15) |
| | | @ApiModelProperty(value = "英文名") |
| | | private String english; |
| | | /**药材分类*/ |
| | | @Excel(name = "药材分类", width = 15, dictTable = "dry_herb_type", dicText = "name", dicCode = "id") |
| | | @Dict(dictTable = "dry_herb_type", dicText = "name", dicCode = "id") |
| | | @ApiModelProperty(value = "药材分类") |
| | | private String type; |
| | | /**药用部位*/ |
| | | @Excel(name = "药用部位", width = 15) |
| | | @ApiModelProperty(value = "药用部位") |