UserInfoCollectParam.java 807 Bytes
Newer Older
徐健 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.yidianling.user.http.request;

/**
 * @author jiucheng
 * @描述:
 * @Copyright Copyright (c) 2018
 * @Company 壹点灵
 * @date 2019/2/15
 */
public class UserInfoCollectParam {

    public UserInfoCollectParam(String content, String userInfoType) {
        this.content = content;
        this.userInfoType = userInfoType;
    }

    public String content; //"男","女"
徐健 committed
18
    public String userInfoType; // "gener"性别 "age"年龄 "consultAttention"关注话题
徐健 committed
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

    public String getContent() {
        return content;
    }

    public String getUserInfoType() {
        return userInfoType;
    }

    public void setContent(String content) {
        this.content = content;
    }

    public void setUserInfoType(String userInfoType) {
        this.userInfoType = userInfoType;
    }
}