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.

27 lines
480 B

package com.community.pocket.data.model;
import java.util.List;
/**
* 检索预约人
*/
public class VisitorPeople {
private String username;
private List<String> time;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public List<String> getTime() {
return time;
}
public void setTime(List<String> time) {
this.time = time;
}
}