All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aiwiown.face.response.OCRDriverLicenseV2Response Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.aiwiown.face.response;

import com.aiwiown.face.ApiResponse;
import com.aiwiown.face.domain.orc.OCRDriverLicenseV2Main;
import com.aiwiown.face.domain.orc.OCRDriverLicenseV2Second;
import com.aiwiown.face.internal.mapping.ApiListField;

import java.util.List;

/**
 * @ClassName : OcrDriverLicense2Response
 * @Description :
 * @Author : dbin0123
 * @Date: 2020年4月13日10:16:44
 */
public class OCRDriverLicenseV2Response extends ApiResponse {

    private static final long serialVersionUID = -6904831821363884809L;

    /**
     * 检测出驾驶证正本的数组
     */
    @ApiListField("main")
    private List main;
    /**
     * 检测出驾驶证副页的数组
     */
    @ApiListField("second")
    private List second;

    public List getMain() {
        return main;
    }

    public void setMain(List main) {
        this.main = main;
    }

    public List getSecond() {
        return second;
    }

    public void setSecond(List second) {
        this.second = second;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy