feat: 新增 EpicScriptCreateWithDialogueResponse
This commit is contained in:
+34
@@ -0,0 +1,34 @@
|
||||
package com.emotion.dto.response;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 创建剧本并创建对话响应
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
public class EpicScriptCreateWithDialogueResponse extends BaseResponse {
|
||||
|
||||
private String scriptId;
|
||||
|
||||
private String conversationId;
|
||||
|
||||
private String currentVersionMessageId;
|
||||
|
||||
private String title;
|
||||
|
||||
private String theme;
|
||||
|
||||
private String style;
|
||||
|
||||
private String length;
|
||||
|
||||
private String plotIntro;
|
||||
|
||||
private String plotTurning;
|
||||
|
||||
private String plotClimax;
|
||||
|
||||
private String plotEnding;
|
||||
}
|
||||
Reference in New Issue
Block a user