This commit is contained in:
zhangchenbiao
2024-03-22 18:08:51 +08:00
parent 42b0080695
commit 60b680e06f
9 changed files with 106 additions and 16 deletions

View File

@@ -1,5 +1,6 @@
package com.cool.store.vo.interview;
import com.alibaba.fastjson.JSONObject;
import com.cool.store.entity.LineInfoDO;
import com.cool.store.entity.LineInterviewDO;
import com.cool.store.vo.LineAuditInfoVO;
@@ -8,6 +9,7 @@ import lombok.Data;
import javax.persistence.Column;
import java.util.Date;
import java.util.List;
@Data
public class InterviewDetailVO {
@@ -67,7 +69,7 @@ public class InterviewDetailVO {
private Integer interviewType;
@ApiModelProperty("视频链接")
private String videoUrl;
private List<String> videoUrl;
@ApiModelProperty("审核信息")
private LineAuditInfoVO auditInfo;
@@ -91,7 +93,7 @@ public class InterviewDetailVO {
result.setRoomStatus(interviewInfo.getRoomStatus());
result.setInterviewStatus(interviewInfo.getInterviewStatus());
result.setInterviewType(interviewInfo.getInterviewType());
result.setVideoUrl(interviewInfo.getVideoUrl());
result.setVideoUrl(JSONObject.parseArray(interviewInfo.getVideoUrl(), String.class));
return result;
}
}