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.

19 lines
416 B

package com.community.pocket.entity.vo.android;
import com.community.pocket.entity.vo.Result;
/**
* 访客预约结果
*/
public class VisitorResponse extends AndroidResponse<VisitorResponse.Msg> {
public VisitorResponse(Result result, Msg message, Object... args) {
super(result, message, args);
}
public enum Msg implements CustomMessage {
ok,
fail,
token
}
}