提交 | 用户 | age
|
72e8f2
|
1 |
package com.hz.his.dto.appearance; |
A |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
/** |
|
6 |
* 颜值规划图片Dto |
|
7 |
*/ |
|
8 |
@Data |
|
9 |
public class AppearancePictureDto { |
|
10 |
|
|
11 |
/**图片*/ |
|
12 |
private String image; |
|
13 |
/**类型:1面部照片,2VISIA照片*/ |
|
14 |
private Integer type = FACE_PICTURE; |
|
15 |
/**面部分类(针对面部照片)*/ |
|
16 |
private Integer faceType = FACE_POSITIVE; |
|
17 |
|
|
18 |
public AppearancePictureDto() { |
|
19 |
} |
|
20 |
|
|
21 |
/**类型:1面部照片*/ |
|
22 |
public static final Integer FACE_PICTURE = 1; |
|
23 |
/**类型:2VISIA照片*/ |
|
24 |
public static final Integer VISIA_PICTURE = 2; |
|
25 |
|
|
26 |
/**面部分类:正脸*/ |
|
27 |
public static final Integer FACE_POSITIVE = 0; |
|
28 |
/**面部分类:侧脸*/ |
|
29 |
public static final Integer FACE_SIDE = 1; |
|
30 |
/**面部分类:角度照(45°角)*/ |
|
31 |
public static final Integer FACE_ANGLE = 2; |
|
32 |
} |