1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.doumee.core.haikang.model.param.respose;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| @Data
| public class FaceAddOrEditesponse implements Serializable {
|
| private String faceId;// string False 人脸Id
| private String faceUrl;// string False 人脸图片Url
| private String personId;// string False 人员ID
| }
|
|