package com.yanzuoguang.wxxcx.ocr.license; /*** * 本接口提供基于小程序的行驶证 OCR 识别 * * @author:heyanou */ public class WxOcrVehicleLicenseDataReq { /*** * <p> * 是否必填:是 * 描述:接口调用凭证 * </p> */ private String access_token; /*** * <p> * 是否必填:是 * 描述:图片识别模式,photo(拍照模式)或 scan(扫描模式) * </p> */ private String type; /*** * <p> * 是否必填:是 * 描述:要检测的图片 url,传这个则不用传 img 参数。 * </p> */ private String img_url; /*** * <p> * 是否必填:是 * 描述:form-data 中媒体文件标识,有filename、filelength、content-type等信息,传这个则不用传 img_url。 * </p> */ private Object img; public String getAccess_token() { return access_token; } public void setAccess_token(String access_token) { this.access_token = access_token; } public String getImg_url() { return img_url; } public void setImg_url(String img_url) { this.img_url = img_url; } public Object getImg() { return img; } public void setImg(Object img) { this.img = img; } }