AskRequestParamBean.java 856 Bytes
Newer Older
徐健 committed
1 2
package com.yidianling.home.model.bean;

3

徐健 committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
import com.ydl.ydlcommon.data.http.BaseCommand;

/**
 * Created by haorui on 2019/2/19.
 * Des:
 */
public class AskRequestParamBean {

    //关注
    public static class FocusCmd extends BaseCommand {
        public String id;//话题id或用户uid
        public String type;//业务类型:1关注用户,2关注话题

        public FocusCmd(String id, String type) {
            this.id = id;
            this.type = type;
        }

    }

    //点赞:动态,回帖,个人主页
    public static class ZanAction extends BaseCommand {
        public String type;//业务类型:1访问用户,2动态,3话题
        public String id;//动态id,回复id,用户uid

        public ZanAction(String type, String id) {
            this.type = type;
            this.id = id;
        }

    }
}
36