feat: 新增 EpicScriptCreateWithDialogueResponse

This commit is contained in:
2026-06-28 17:08:13 +08:00
parent 06b2ee58e2
commit 74183ccb30
@@ -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;
}