001/* 002 * =========================================================================================== 003 * = COPYRIGHT 004 * PAX Computer Technology (Shenzhen) Co., Ltd. PROPRIETARY INFORMATION 005 * This software is supplied under the terms of a license agreement or nondisclosure 006 * agreement with PAX Computer Technology (Shenzhen) Co., Ltd. and may not be copied or 007 * disclosed except in accordance with the terms in that agreement. 008 * Copyright (C) 2017-2023 PAX Computer Technology (Shenzhen) Co., Ltd. All rights reserved. 009 * Description: // Detail description about the function of this module, 010 * // interfaces with the other modules, and dependencies. 011 * Revision History: 012 * Date Author Action 013 * 2017/04/01 PAX Create/Add/Modify/Delete 014 * =========================================================================================== 015 */ 016 017package com.pax.dal.entity; 018 019/** 020 * @author Charles 021 * @date 6/30/2022 022 */ 023public class OCRMRZExResult extends OCRResult{ 024 025 /** 026 * <div class="zh">通用机读码扫描结果。</div> <div class="en">Universal Machine Readable Zone Result.</div> 027 */ 028 private String MRZResult = ""; 029 030 public OCRMRZExResult() { 031 } 032 033 public String getMRZResult() { 034 return MRZResult; 035 } 036 037 public void setMRZResult(String MRZResult) { 038 this.MRZResult = MRZResult; 039 } 040 041 public String toString() { 042 return this.MRZResult; 043 } 044 045 046}