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"> M1卡操作定义 </div> <div class="en"> M1 Operate type </div>
021 * 
022 * @author Steven.W
023 * 
024 */
025public enum EM1OperateType {
026    /**
027     * <div class="zh"> 充值 </div> <div class="en"> Increase value </div>
028     */
029    INCREMENT((byte) 0x2b),
030    /**
031     * <div class="zh"> 减值 </div> <div class="en"> Decrease value </div>
032     */
033    DECREMENT((byte) 0x2d),
034    /**
035     * <div class="zh"> 转存/备份操作 </div> <div class="en"> Save as/ backup operation </div>
036     */
037    BACKUP((byte) 0x3e);
038
039    private byte m1OperateType;
040
041    private EM1OperateType(byte m1OperateType) {
042        this.m1OperateType = m1OperateType;
043    }
044
045    public byte getM1OperateType() {
046        return m1OperateType;
047    }
048}