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;
|
}
|