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> <div class="en">Indian license plate recognition results.(License plate text content)</div> 022 */ 023public class LPRIndiaResult extends LPRResult{ 024 025 private String INDResult = ""; 026 027 public LPRIndiaResult() { 028 } 029 030 public String getINDResult() { 031 return INDResult; 032 } 033 034 public void setINDResult(String INDResult) { 035 this.INDResult = INDResult; 036 } 037 038 public String toString() { 039 return this.INDResult; 040 } 041}