You've already forked FrameTour-BE
bug
This commit is contained in:
@ -10,4 +10,6 @@ public class ScenicMpNotifyVO {
|
||||
private String appSecret;
|
||||
private String appState;
|
||||
private String videoGeneratedTemplateId;
|
||||
private String videoDownloadTemplateId;
|
||||
private String videoPreExpireTemplateId;
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
Reference in New Issue
Block a user