luofl
2025-03-11 8f2f35da0cbb07d8bf0d04468c8a2bdf5ee895e5
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "敏感词判断", description = "敏感词判断")
public class judgeSensitiveWordsDTO {
    @ApiModelProperty(value = "输入文本")
    private String text;
}