📄 petownerdto.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 + -