You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.2 KiB

package com.community.pocket.entity.vo.android;
import com.community.pocket.entity.po.android.Token;
/**
* 访客预约表单
*/
public class VisitorForm extends Token {
//预约人
private String appointment;
//预约日期
private String chooseDate;
//预约时间
private String chooseTime;
//拜访目的
private String notes;
//是否外来人口预约
private Boolean isOutPeople;
public String getAppointment() {
return appointment;
}
public void setAppointment(String appointment) {
this.appointment = appointment;
}
public String getChooseTime() {
return chooseTime;
}
public void setChooseTime(String chooseTime) {
this.chooseTime = chooseTime;
}
public String getNotes() {
return notes;
}
public void setNotes(String notes) {
this.notes = notes;
}
public String getChooseDate() {
return chooseDate;
}
public void setChooseDate(String chooseDate) {
this.chooseDate = chooseDate;
}
public Boolean getOutPeople() {
return isOutPeople;
}
public void setOutPeople(Boolean outPeople) {
isOutPeople = outPeople;
}
}