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 BaseInfo { 020 021 private String mac; 022 private String pn; 023 private String sn; 024 025 /** 026 * <div class="zh"> 获取mac </div> <div class="en"> get base MAC </div> 027 * 028 * @return mac 029 */ 030 public String getMac() { 031 return mac; 032 } 033 034 /** 035 * <div class="zh"> 设置mac </div> <div class="en"> set base MAC </div> 036 * 037 * @param mac 038 */ 039 public void setMac(String mac) { 040 this.mac = mac; 041 } 042 043 /** 044 * <div class="zh"> 获取PN </div> <div class="en"> get base PN </div> 045 * 046 * @return 047 */ 048 public String getPn() { 049 return pn; 050 } 051 052 /** 053 * <div class="zh"> 设置PN </div> <div class="en"> set base PN </div> 054 * 055 * @param pn 056 */ 057 public void setPn(String pn) { 058 this.pn = pn; 059 } 060 061 /** 062 * <div class="zh"> 获取SN </div> <div class="en"> get base SN </div> 063 * 064 * @return 065 */ 066 public String getSn() { 067 return sn; 068 } 069 070 /** 071 * <div class="zh"> 设置SN </div> <div class="en"> set base SN </div> 072 * 073 * @param sn 074 */ 075 public void setSn(String sn) { 076 this.sn = sn; 077 } 078 079}