视频图片儿分析模型。

This commit is contained in:
spllzh
2025-10-12 09:37:43 +08:00
parent b047a3be90
commit 5f2c952a6e
33 changed files with 1935 additions and 104 deletions

View File

@@ -59,10 +59,10 @@ public class DetectVideoTemplate implements Serializable {
private String ownerPhone;
/**
* 头像名称
* 模板名称
*/
@TableField("avatar_name")
private String avatarName;
@TableField("template_name")
private String templateName;
/**
* 模版ID生成视频时使用
@@ -70,6 +70,31 @@ public class DetectVideoTemplate implements Serializable {
@TableField("template_id")
private String templateId;
/**
* 临时访问链接
*/
@TableField("temp_url")
private String tempUrl;
/**
* 临时链接过期时间
*/
@TableField("temp_url_expires_at")
private LocalDateTime tempUrlExpiresAt;
/**
* 任务状态
*/
@TableField("task_status")
private String taskStatus;
/**
* 任务id
*/
@TableField("task_id")
private String taskId;
/**
* 是否成功
*/