rentaiming
2024-07-03 03ea0fc5754a5d37d9c5f6e872f5798054360303
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.system.api.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonInclude;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class judgeSensitiveWordsVO {
    @ApiModelProperty(value = "1是有包含敏感词,2 没有")
    @JsonInclude(JsonInclude.Include.ALWAYS)
    private Integer type;
}