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.

29 lines
485 B

package com.community.pocket.data.model;
/**
* 访客信息
*/
public class Visitor {
private String name;
private long time;
private String notes;
public Visitor(String name, long time, String notes) {
this.name = name;
this.time = time;
this.notes = notes;
}
public String getName() {
return name;
}
public long getTime() {
return time;
}
public String getNotes() {
return notes;
}
}