| | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ruoyi.common.core.web.domain.BaseModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | |
| | | * 错误语音 要么没有 要么两个逗号隔开 |
| | | */ |
| | | private String error; |
| | | |
| | | @ApiModelProperty(value = "一级分类名称") |
| | | @TableField(exist = false) |
| | | private String firstCategoryName; |
| | | @ApiModelProperty(value = "二级分类名称") |
| | | @TableField(exist = false) |
| | | private String secondCategoryName; |
| | | @ApiModelProperty(value = "分类名称") |
| | | @TableField(exist = false) |
| | | private String categoryName; |
| | | /** |
| | | * 排序规则 |
| | | */ |
| | | @TableField(exist = false) |
| | | private Integer sort; |
| | | |
| | | @ApiModelProperty(value = "一级分类id") |
| | | private Integer firstCategory; |
| | | @ApiModelProperty(value = "二级分类id") |
| | | private Integer secondCategory; |
| | | |
| | | public Integer getId() { |
| | | return id; |