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 * M1 Card Type 022 * @author Steven.W 023 * 024 */ 025public enum EM1KeyType { 026 /** 027 * TYPE_A 028 */ 029 TYPE_A((byte) 0x41), 030 /** 031 * TYPE_B 032 */ 033 TYPE_B((byte) 0x42); 034 035 private byte m1KeyType; 036 037 private EM1KeyType(byte m1KeyType) { 038 this.m1KeyType = m1KeyType; 039 } 040 041 public byte getM1KeyType() { 042 return m1KeyType; 043 } 044}