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