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 AllocatedKeyInfo { 020 021 private String packageName; 022 private int type; 023 private int subType; 024 private int logicalId; 025 private int physicalId; 026 private boolean reserved; 027 028 private String appName = "appName";// 预留 029 030 public AllocatedKeyInfo() { 031 this.packageName = ""; 032 this.type = -1; 033 this.subType = -1; 034 this.logicalId = -1; 035 this.physicalId = -1; 036 this.reserved = false; 037 this.appName = ""; 038 } 039 040 public String getPackageName() { 041 return packageName; 042 } 043 044 public void setPackageName(String packageName) { 045 this.packageName = packageName; 046 } 047 048 public int getType() { 049 return type; 050 } 051 052 public void setType(int type) { 053 this.type = type; 054 } 055 056 public int getSubType() { 057 return subType; 058 } 059 060 public void setSubType(int subType) { 061 this.subType = subType; 062 } 063 064 public int getLogicalId() { 065 return logicalId; 066 } 067 068 public void setLogicalId(int logicalId) { 069 this.logicalId = logicalId; 070 } 071 072 public int getPhysicalId() { 073 return physicalId; 074 } 075 076 public void setPhysicalId(int physicalId) { 077 this.physicalId = physicalId; 078 } 079 080 public boolean isReserved() { 081 return reserved; 082 } 083 084 public void setReserved(boolean reserved) { 085 this.reserved = reserved; 086 } 087 088 public String getAppName() { 089 return appName; 090 } 091 092 public void setAppName(String appName) { 093 this.appName = appName; 094 } 095 096}