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

📄 petownerdto.java

📁 爱心”宠物诊所的职员需要使用系统提供的如下功能: 浏览诊所的兽医以及他们的专业特长; 浏览宠物的主人(即诊所的客户)的相关信息; 更新宠物的主人的相关信息; 向系统中增加一个新客户; 浏览宠
💻 JAVA
字号:
package com.wzxy.pojos;

import java.util.Date;

public class PetOwnerDTO {
	private String sex;

	/** regDate property */
	private Date regDate;

	/** petOwnerCity property */
	private String petOwnerCity;

	/** petOwnerAddress property */
	private String petOwnerAddress;

	/** petOwnerId property */
	private Integer petOwnerId;

	/** hobbies property */
	private String[] hobbies;

	/** demo property */
	private String demo;

	/** petOwnerTelNo property */
	private String petOwnerTelNo;

	/** petOwnerName property */
	private String petOwnerName;

	public Date getRegDate() {
		return regDate;
	}

	public void setRegDate(Date regDate) {
		this.regDate = regDate;
	}

	public String getDemo() {
		return demo;
	}

	public void setDemo(String demo) {
		this.demo = demo;
	}

	public String[] getHobbies() {
		return hobbies;
	}

	public void setHobbies(String[] hobbies) {
		this.hobbies = hobbies;
	}

	public String getSex() {
		return sex;
	}

	public void setSex(String sex) {
		this.sex = sex;
	}

	public String getPetOwnerAddress() {
		return petOwnerAddress;
	}

	public void setPetOwnerAddress(String petOwnerAddress) {
		this.petOwnerAddress = petOwnerAddress;
	}

	public int getPetOwnerId() {
		return petOwnerId;
	}

	public void setPetOwnerId(int petOwnerId) {
		this.petOwnerId = petOwnerId;
	}

	public String getPetOwnerName() {
		return petOwnerName;
	}

	public void setPetOwnerName(String petOwnerName) {
		this.petOwnerName = petOwnerName;
	}

	public String getPetOwnerTelNo() {
		return petOwnerTelNo;
	}

	public void setPetOwnerTelNo(String petOwnerTelNo) {
		this.petOwnerTelNo = petOwnerTelNo;
	}

	public String getPetOwnerCity() {
		return petOwnerCity;
	}

	public void setPetOwnerCity(String petOwnerCity) {
		this.petOwnerCity = petOwnerCity;
	}

}

⌨️ 快捷键说明

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