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/**
021 * <div class="zh">中国车牌识别结果。(车牌文本内容 车牌类型(蓝牌、绿牌、黄牌、警车车牌、港澳车牌))</div>
022 * <div class="en">Chinese license plate recognition results.(License plate text content,
023 * License plate type (blue plate, green plate, yellow plate, police car plate, Hong Kong and Macao license plate))</div>
024 */
025public class LPRChinaResult extends LPRResult{
026
027
028    private String CHNResult = "";
029
030    public LPRChinaResult() {
031    }
032
033    public String getCHNResult() {
034        return CHNResult;
035    }
036
037    public void setCHNResult(String CHNResult) {
038        this.CHNResult = CHNResult;
039    }
040
041    public String toString() {
042        return this.CHNResult;
043    }
044}