⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 record.java

📁 电子通讯录实现网上保存朋友
💻 JAVA
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package entity;import java.util.Date;/** * * @author Jason */public class Record {    private int recordid;    private String name;    private boolean sex;    private Date birthday;    private String phone;    private String mobile;    private String officeaddr;    private String homeaddr;    private String email;    private String qq;    private String remark;    private int typeid;    /**     * @return the recordid     */    public int getRecordid() {        return recordid;    }    /**     * @param recordid the recordid to set     */    public void setRecordid(int recordid) {        this.recordid = recordid;    }    /**     * @return the name     */    public String getName() {        return name;    }    /**     * @param name the name to set     */    public void setName(String name) {        this.name = name;    }    /**     * @return the sex     */    public boolean isSex() {        return sex;    }    /**     * @param sex the sex to set     */    public void setSex(boolean sex) {        this.sex = sex;    }    /**     * @return the birthday     */    public Date getBirthday() {        return birthday;    }    /**     * @param birthday the birthday to set     */    public void setBirthday(Date birthday) {        this.birthday = birthday;    }    /**     * @return the phone     */    public String getPhone() {        return phone;    }    /**     * @param phone the phone to set     */    public void setPhone(String phone) {        this.phone = phone;    }    /**     * @return the mobile     */    public String getMobile() {        return mobile;    }    /**     * @param mobile the mobile to set     */    public void setMobile(String mobile) {        this.mobile = mobile;    }    /**     * @return the officeaddr     */    public String getOfficeaddr() {        return officeaddr;    }    /**     * @param officeaddr the officeaddr to set     */    public void setOfficeaddr(String officeaddr) {        this.officeaddr = officeaddr;    }    /**     * @return the homeaddr     */    public String getHomeaddr() {        return homeaddr;    }    /**     * @param homeaddr the homeaddr to set     */    public void setHomeaddr(String homeaddr) {        this.homeaddr = homeaddr;    }    /**     * @return the email     */    public String getEmail() {        return email;    }    /**     * @param email the email to set     */    public void setEmail(String email) {        this.email = email;    }    /**     * @return the qq     */    public String getQq() {        return qq;    }    /**     * @param qq the qq to set     */    public void setQq(String qq) {        this.qq = qq;    }    /**     * @return the remark     */    public String getRemark() {        return remark;    }    /**     * @param remark the remark to set     */    public void setRemark(String remark) {        this.remark = remark;    }    /**     * @return the typeid     */    public int getTypeid() {        return typeid;    }    /**     * @param typeid the typeid to set     */    public void setTypeid(int typeid) {        this.typeid = typeid;    }    @Override    public String toString(){        return this.name;    }}

⌨️ 快捷键说明

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