UserInfoCmdparam.java 325 Bytes
Newer Older
1
package com.yidianling.user.http.request;
konghaorui committed
2 3


4
import com.ydl.ydlcommon.utils.JPushUtils;
konghaorui committed
5 6 7 8 9 10 11 12 13 14 15 16 17

public class UserInfoCmdparam  {

    public int type;

    public String channelId;


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