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

📄 viewofpets.java

📁 基于mvc的宠物管理系统。servlet+jsp
💻 JAVA
字号:
package com.richard.dto;

public class ViewOfPets {
    private String types_name;
    private String owners_name;
    private String pets_name;
    private String birth_date;
    private int id;

    public ViewOfPets() {
    }

    public void setTypes_name(String types_name) {
        this.types_name = types_name;
    }

    public void setOwners_name(String owners_name) {
        this.owners_name = owners_name;
    }

    public void setPets_name(String pets_name) {
        this.pets_name = pets_name;
    }

    public void setBirth_date(String birth_date) {
        this.birth_date = birth_date;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getTypes_name() {
        return types_name;
    }

    public String getOwners_name() {
        return owners_name;
    }

    public String getPets_name() {
        return pets_name;
    }

    public String getBirth_date() {
        return birth_date;
    }

    public int getId() {
        return id;
    }
}

⌨️ 快捷键说明

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