UserInfoCmd.java 379 Bytes
Newer Older
ydl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.yidianling.user.mine.bean;


import com.ydl.ydlcommon.data.http.BaseCommand;
import com.ydl.ydlcommon.utils.JPushUtils;

public class UserInfoCmd extends BaseCommand {

    public int type;

    public String channelId;


    public UserInfoCmd() {
        this.type = 2;//android = 2 ios = 1
        this.channelId = JPushUtils.INSTANCE.getRegistrationID();
    }
}