Merge remote-tracking branch 'xfsg/cc_partner_init' into cc_partner_init
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotBlank;
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: InterviewUploadVideoRequest
|
||||
* @Description:
|
||||
* @date 2024-04-07 19:31
|
||||
*/
|
||||
@Data
|
||||
public class InterviewUploadVideoRequest {
|
||||
|
||||
@NotNull
|
||||
@ApiModelProperty("面试id")
|
||||
private Long interviewId;
|
||||
|
||||
@NotNull
|
||||
@ApiModelProperty("视频链接")
|
||||
private List<String> videoUrlList;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user