Pu Zhibing
2025-02-05 bad2110204732e41ed5bc6e48b6e27fe4b6a2249
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;
 
}