package cc.mrbird.febs.yinhe.req; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import javax.validation.constraints.NotBlank; @Data @ApiModel(value = "YHSysAgentInitDto", description = "参数") public class YHSysAgentInitDto { @NotBlank(message = "智能体不能为空") @ApiModelProperty(value = "智能体ID", example = "you_ke_*****") private String id; }