You've already forked FrameTour-BE
部分逻辑修改
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
package com.ycwl.basic.model.mobile.face;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class FaceRecognizeResp {
|
||||
private String url;
|
||||
private Long faceId;
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.ycwl.basic.model.mobile.goods;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class VideoTaskReq {
|
||||
private Long scenicId;
|
||||
private Long templateId;
|
||||
private Long faceId;
|
||||
}
|
@ -29,6 +29,7 @@ public class TaskReqQuery extends BaseQueryParameterReq {
|
||||
*/
|
||||
@ApiModelProperty("用户ID")
|
||||
private Long memberId;
|
||||
private Long faceId;
|
||||
/**
|
||||
* 模板ID
|
||||
*/
|
||||
|
@ -22,6 +22,8 @@ public class VideoReqQuery extends BaseQueryParameterReq {
|
||||
*/
|
||||
@ApiModelProperty("景区id")
|
||||
private Long scenicId;
|
||||
@ApiModelProperty("人脸id")
|
||||
private Long faceId;
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
|
Reference in New Issue
Block a user