初始化
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
package com.ifish.jpush.report;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import com.ifish.jpush.common.TimeUnit;
|
||||
import com.ifish.jpush.common.resp.BaseResult;
|
||||
|
||||
public class UsersResult extends BaseResult {
|
||||
|
||||
@Expose public TimeUnit time_unit;
|
||||
@Expose public String start;
|
||||
@Expose public int duration;
|
||||
@Expose public List<User> items = new ArrayList<User>();
|
||||
|
||||
|
||||
public static class User {
|
||||
@Expose public String time;
|
||||
@Expose public Android android;
|
||||
@Expose public Ios ios;
|
||||
}
|
||||
|
||||
public static class Android {
|
||||
@SerializedName("new") @Expose public long add;
|
||||
@Expose public int online;
|
||||
@Expose public int active;
|
||||
}
|
||||
|
||||
public static class Ios {
|
||||
@SerializedName("new") @Expose public long add;
|
||||
@Expose public int online;
|
||||
@Expose public int active;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user