This commit is contained in:
2025-01-13 10:26:18 +08:00
parent 9c1d979bd8
commit 02548a3028
33 changed files with 399 additions and 222 deletions

View File

@ -10,4 +10,6 @@ public class ScenicMpNotifyVO {
private String appSecret;
private String appState;
private String videoGeneratedTemplateId;
private String videoDownloadTemplateId;
private String videoPreExpireTemplateId;
}

View File

@ -0,0 +1,22 @@
package com.ycwl.basic.model.pc.source.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.Date;
@Data
@TableName("source_task")
public class SourceTaskEntity {
private Integer id;
private Long scenicId;
private Long deviceId;
private Long faceSampleId;
private Integer status;
private String url;
private Date createTime;
private Date startTime;
private Date endTime;
private Long waitTaskId;
private String nextFsIds;
}