Pu Zhibing
2025-06-19 2608fc201aed29d87f0edcfebcc57538b15dd2f6
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;
 
}