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 * <div class="zh"> 终端信息定义 </div> <div class="en"> Terminal info key </div> 021 * 022 * @author Steven.W 023 * 024 */ 025public enum ETermInfoKey { 026 027 /** 028 * <div class="zh"> 终端序列号 </div> <div class="en"> Terminal Serial Number </div> 029 */ 030 SN, 031 /** 032 * <div class="zh"> 终端类型(大写) </div> <div class="en"> Terminal Model(upper case) </div> 033 */ 034 MODEL, 035 /** 036 * <div class="zh"> Monitor版本 </div> <div class="en"> Monitor Version </div> 037 */ 038 SP_VER, 039 /** 040 * <div class="zh"> Android固件版本 </div> <div class="en"> Android Firmware Version </div> 041 */ 042 AP_VER, 043 /** 044 * <div class="zh"> Boot版本号(从1开始递增) </div> <div class="en"> Boot Version(ascending from 1) </div> 045 */ 046 BIOS_VER, 047 /** 048 * <div class="zh"> 监控主版本号(从1开始递增);监控次版本号(从0开始递增) </div> <div class="en"> monitor major version(ascending from 049 * 1);monitor minor version(ascending from 0) </div> 050 */ 051 MON_VER, 052 /** 053 * <div class="zh"> 主板版本号 </div> <div class="en"> main PCB hardware version(reter to hardware version) </div> 054 */ 055 MAINB_VER, 056 /** 057 * <div class="zh"> 接口板配置信息 </div> <div class="en"> interface PCB configuration information </div> 058 */ 059 PORTB_CFG, 060 /** 061 * <div class="zh"> 拓展板配置信息 </div> <div class="en"> extended PCB configuration information </div> 062 */ 063 EXTB_CFG, 064 /** 065 * <div class="zh"> 磁卡阅读器配置信息 </div> <div class="en"> magcard reader PCB configuration information (Please see 066 * 'instruction' for S90 usage.) </div> 067 */ 068 MAGB_CFG, 069 /** 070 * <div class="zh"> 射频卡芯片类型 </div> <div class="en"> rf chip type </div> 071 */ 072 RF_TYPE, 073 /** 074 * <div class="zh"> RPC主版本号(1开始递增),RPC次版本号(0开始递增) </div> <div class="en"> rpc app major version number (ascending 075 * from 1);rpc app minor version number (ascending from 0) </div> 076 */ 077 RPC_VER, 078 /** 079 * <div class="zh"> 客户序列号 </div> <div class="en"> customer serial number </div> 080 */ 081 CSN, 082 /** 083 * <div class="zh"> 终端类型 </div> <div class="en"> Terminal Model </div> 084 */ 085 MODEL_ORIG, 086 /** 087 * <div class="zh"> 终端型号 </div> <div class="en"> Terminal Type </div> 088 */ 089 TERMINAL_MODEL; 090}