Administrator
2026-02-25 44e8988174ba750026fe3a5fcfade198d959766c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.ai.req.product;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiTranslateDto", description = "参数")
public class ApiTranslateDto {
 
 
    @ApiModelProperty(value = "内容", example = "123")
    private String content;
 
    @ApiModelProperty(value = "当前语种", example = "auto")
    private String sourceLang;
 
    @ApiModelProperty(value = "目标语种", example = "English")
    private String targetLang;
}