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
019public class SignPadResp {
020
021    private byte[] num;
022    private byte[] signBmp;
023
024    public SignPadResp() {
025        num = new byte[0];
026        signBmp = new byte[0];
027    }
028
029    public SignPadResp(byte[] num, byte[] signBmp) {
030        this.num = num;
031        this.signBmp = signBmp;
032    }
033
034    public byte[] getNum() {
035        return num;
036    }
037
038    public void setNum(byte[] num) {
039        this.num = num;
040    }
041
042    /**
043     * <div class="zh"> 电子签名数据 </div> <div class="en"> sign data </div>
044     * 
045     * @return
046     */
047    public byte[] getSignBmp() {
048        return signBmp;
049    }
050
051    /**
052     * <div class="zh"> 电子签名数据 </div> <div class="en"> sign data </div>
053     * 
054     * @param signBmp
055     */
056    public void setSignBmp(byte[] signBmp) {
057        this.signBmp = signBmp;
058    }
059}