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.

49 lines
1009 B

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;
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;
}
}