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

📄 address.java

📁 《Web程序测试实训教程(Java版)》-徐民鹰-源代码
💻 JAVA
字号:
//
//  Address.java
//

package apply;

public class Address
{
    private int id;
    private String username = null;
    private String rname = null;
    private String email = null;
    private String title = null;
    private String content = null;
    private String postdate = null;

    public Address (int aid, String uname, String rname, String em, String tl, String ct, String pd)
    {
        this.id = aid;
        this.username = uname;
        this.rname = rname;
        this.email = em;
        this.title = tl;
        this.content = ct;
        this.postdate = pd;
    }

    public int getId ()
    {
        return this.id;
    }

    public String getUsername ()
    {
        return this.username;
    }

    public String getRname ()
    {
        return this.rname;
    }

    public String getEmail ()
    {
        return this.email;
    }

    public String getTitle ()
    {
        return this.title;
    }

    public String getContent ()
    {
        return this.content;
    }

    public String getPostdate ()
    {
        return this.postdate;
    }
}

⌨️ 快捷键说明

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