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.

34 lines
815 B

package com.community.pocket.entity.vo.android;
import com.community.pocket.entity.po.Visitor;
import com.community.pocket.entity.vo.Page;
import com.community.pocket.entity.vo.Response;
import com.community.pocket.entity.vo.Result;
/**
* 我的访客信息
*/
public class VisitorMyResponse extends Response<VisitorMyResponse.Msg> {
private Page<Visitor> visitorList;
public Page<Visitor> getVisitorList() {
return visitorList;
}
public void setVisitorList(Page<Visitor> visitorList) {
this.visitorList = visitorList;
}
public VisitorMyResponse(Result result, Msg message, Object... args) {
super(result, message, args);
}
public enum Msg implements CustomMessage {
ok,
ok_empty,
ok_more,
fail,
token
}
}