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 QInfo { 020 021 /** 022 * Q1 023 */ 024 private byte[] Q1; 025 /** 026 * Q2 027 */ 028 private byte[] Q2; 029 030 public QInfo() { 031 this.Q1 = new byte[0]; 032 this.Q2 = new byte[0]; 033 } 034 035 /** 036 * <div class="zh"> 获取Q1 </div> <div class="en"> Get Q1 </div> 037 * 038 * @return 039 */ 040 public byte[] getQ1() { 041 return Q1; 042 } 043 044 /** 045 * <div class="zh"> 设置Q1 </div> <div class="en"> Set Q1 </div> 046 * 047 * @param q1 048 */ 049 public void setQ1(byte[] q1) { 050 Q1 = q1; 051 } 052 053 /** 054 * <div class="zh"> 获取Q2 </div> <div class="en"> Get Q2 </div> 055 * 056 * @return 057 */ 058 public byte[] getQ2() { 059 return Q2; 060 } 061 062 /** 063 * <div class="zh"> 设置Q2 </div> <div class="en"> Set Q2 </div> 064 * 065 * @param q2 066 */ 067 public void setQ2(byte[] q2) { 068 Q2 = q2; 069 } 070 071}