package com.pollex.pam.service.dto;
|
|
public class AppointmentCreateDTO {
|
|
private String phone;
|
private String email;
|
private String contactType; //聯絡方式
|
private String gender;
|
private int age;
|
private String job;
|
private String requirement;
|
private String hopeContactTime; //希望聯絡的時間
|
private String otherRequirement;
|
private String agentNo;
|
|
public String getPhone() {
|
return phone;
|
}
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
public String getEmail() {
|
return email;
|
}
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
public String getContactType() {
|
return contactType;
|
}
|
public void setContactType(String contactType) {
|
this.contactType = contactType;
|
}
|
public String getGender() {
|
return gender;
|
}
|
public void setGender(String gender) {
|
this.gender = gender;
|
}
|
public String getJob() {
|
return job;
|
}
|
public void setJob(String job) {
|
this.job = job;
|
}
|
public String getRequirement() {
|
return requirement;
|
}
|
public void setRequirement(String requirement) {
|
this.requirement = requirement;
|
}
|
public String getHopeContactTime() {
|
return hopeContactTime;
|
}
|
public void setHopeContactTime(String hopeContactTime) {
|
this.hopeContactTime = hopeContactTime;
|
}
|
public String getOtherRequirement() {
|
return otherRequirement;
|
}
|
public void setOtherRequirement(String otherRequirement) {
|
this.otherRequirement = otherRequirement;
|
}
|
public int getAge() {
|
return age;
|
}
|
public void setAge(int age) {
|
this.age = age;
|
}
|
public String getAgentNo() {
|
return agentNo;
|
}
|
public void setAgentNo(String agentNo) {
|
this.agentNo = agentNo;
|
}
|
|
|
|
|
}
|