📄 petdto.java
字号:
package com.wzxy.pojos;
import java.util.Date;
public class PetDTO {
private int petID;
private String petName;
private Date petBirthDate;
private String strYear;
private String strMonth;
private String strDay;
private int petTypeID;
private int petOwnerID;
private String petOwnerName;
private String petTypeName;
public Date getPetBirthDate() {
return petBirthDate;
}
public void setPetBirthDate(Date petBirthDate) {
this.petBirthDate = petBirthDate;
}
public int getPetID() {
return petID;
}
public void setPetID(int petID) {
this.petID = petID;
}
public String getPetName() {
return petName;
}
public void setPetName(String petName) {
this.petName = petName;
}
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 int getPetTypeID() {
return petTypeID;
}
public void setPetTypeID(int petTypeID) {
this.petTypeID = petTypeID;
}
public String getPetTypeName() {
return petTypeName;
}
public void setPetTypeName(String petTypeName) {
this.petTypeName = petTypeName;
}
public String getStrDay() {
return strDay;
}
public void setStrDay(String strDay) {
this.strDay = strDay;
}
public String getStrMonth() {
return strMonth;
}
public void setStrMonth(String strMonth) {
this.strMonth = strMonth;
}
public String getStrYear() {
return strYear;
}
public void setStrYear(String strYear) {
this.strYear = strYear;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -