addbook.java

来自「java 写的一个地址薄管理工具」· Java 代码 · 共 126 行

JAVA
126
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package com.sxy.database;/** * * @author Arthur */public class Addbook {    private int id;    private String owner;    private String Aname;    private String Aage;    private String Asex;    private String Aadd;    private String Ahphone;        private String hphone;    private String Aemail;    private String Aqq;    private String Agroup;    private String Aother;    public int getId() {        return id;    }    public void setId(int id) {        this.id = id;    }    public String getOwner() {        return owner;    }    public void setOwner(String owner) {        this.owner = owner;    }    public String getAname() {        return Aname;    }    public void setAname(String Aname) {        this.Aname = Aname;    }    public String getAage() {        return Aage;    }    public void setAage(String Aage) {        this.Aage = Aage;    }    public String getAsex() {        return Asex;    }    public void setAsex(String Asex) {        this.Asex = Asex;    }    public String getAadd() {        return Aadd;    }    public void setAadd(String Aadd) {        this.Aadd = Aadd;    }    public String getAhphone() {        return Ahphone;    }    public void setAhphone(String Ahphone) {        this.Ahphone = Ahphone;    }       public String getAemail() {        return Aemail;    }    public void setAemail(String Aemail) {        this.Aemail = Aemail;    }    public String getAqq() {        return Aqq;    }    public void setAqq(String Aqq) {        this.Aqq = Aqq;    }    public String getAgroup() {        return Agroup;    }    public void setAgroup(String Agroup) {        this.Agroup = Agroup;    }    public String getHphone() {        return hphone;    }    public void setHphone(String hphone) {        this.hphone = hphone;    }    public String getAother() {        return Aother;    }    public void setAother(String Aother) {        this.Aother = Aother;    }    }

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?