Pu Zhibing
2024-09-26 22a9b4588c8eeefdb9e16fda9125af8c0b846b49
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;
 
}