xuhy
2024-08-10 d378b55981bca01371325eeb4e9e60483ff7d609
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.other.api.vo;
 
import com.ruoyi.other.api.domain.TEvaluationTag;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "TEvaluationTagVO对象", description = "评价标签")
public class TEvaluationTagVO extends TEvaluationTag{
 
    @ApiModelProperty(value = "评价标签数量")
    private Integer tagCount;
 
}