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"> 移动网络参数 </div> <div class="en"> mobile param </div>
021 * 
022 * @author Steven.W
023 * 
024 */
025public class MobileParam {
026
027    private String apn;
028    private String username;
029    private String password;
030
031    /**
032     * <div class="zh"> 获取APN </div> <div class="en"> get APN </div>
033     * 
034     * @return
035     */
036    public String getApn() {
037        return apn;
038    }
039
040    /**
041     * <div class="zh"> 设置APN </div> <div class="en"> set APN </div>
042     * 
043     * @param apn
044     */
045    public void setApn(String apn) {
046        this.apn = apn;
047    }
048
049    /**
050     * <div class="zh"> 获取用户名 </div> <div class="en"> get user name </div>
051     * 
052     * @return
053     */
054    public String getUsername() {
055        return username;
056    }
057
058    /**
059     * <div class="zh"> 设置用户名 </div> <div class="en"> set user name </div>
060     * 
061     * @param username
062     */
063    public void setUsername(String username) {
064        this.username = username;
065    }
066
067    /**
068     * <div class="zh"> 获取用户密码 </div> <div class="en"> get user password </div>
069     * 
070     * @return
071     */
072    public String getPassword() {
073        return password;
074    }
075
076    /**
077     * <div class="zh"> 设置用户密码 </div> <div class="en"> set user password </div>
078     * 
079     * @param password
080     */
081    public void setPassword(String password) {
082        this.password = password;
083    }
084
085    public MobileParam() {
086        this.apn = "";
087        this.username = "";
088        this.password = "";
089    }
090
091}