add
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user