UserPopUpsBean.java 770 Bytes
package com.wd.foundation.bean.pop;


import com.wd.foundation.bean.base.BaseBean;

import java.util.List;

/**
 * 单用户彩蛋缓存数据
 * @author baozhaoxin
 * @version [V1.0.0, 2024/8/22]
 * @since V1.0.0
 */
public class UserPopUpsBean extends BaseBean {

    /**
     * 用户id
     */
    private String userId;

    /**
     * 展示的彩蛋数据
     */
    private List<PopUpsBean> popUpsBeanList;

    public String getUserId() {
        return userId;
    }

    public void setUserId(String userId) {
        this.userId = userId;
    }

    public List<PopUpsBean> getPopUpsBeanList() {
        return popUpsBeanList;
    }

    public void setPopUpsBeanList(List<PopUpsBean> popUpsBeanList) {
        this.popUpsBeanList = popUpsBeanList;
    }
}