xuhy
2024-08-22 d2296f646d0eb2dec1f0fa72f02e386e55ccf298
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;
 
}