feat: 新增 EpicScriptCreateWithDialogueRequest
This commit is contained in:
@@ -0,0 +1,27 @@
|
|||||||
|
package com.emotion.dto.request;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.EqualsAndHashCode;
|
||||||
|
|
||||||
|
import javax.validation.constraints.NotBlank;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建剧本并创建对话请求
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
public class EpicScriptCreateWithDialogueRequest extends BaseRequest {
|
||||||
|
|
||||||
|
@NotBlank(message = "心愿/主题不能为空")
|
||||||
|
private String theme;
|
||||||
|
|
||||||
|
private String style;
|
||||||
|
|
||||||
|
private String length;
|
||||||
|
|
||||||
|
private String characterInfo;
|
||||||
|
|
||||||
|
private String lifeEventsSummary;
|
||||||
|
|
||||||
|
private Boolean useSocialInsights;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user