package cn.itedus.lottery.domain.rule.model.req; import java.util.Map; /** * @description: 决策物料 * @author: 小傅哥,微信:fustack * @date: 2021/10/8 * @github: https://github.com/fuzhengwei * @Copyright: 公众号:bugstack虫洞栈 | 博客:https://bugstack.cn - 沉淀、分享、成长,让自己和他人都能有所收获! */ public class DecisionMatterReq { /** * 规则树ID */ private Long treeId; /** * 用户ID */ private String userId; /** * 决策值 */ private Map valMap; public DecisionMatterReq() { } public DecisionMatterReq(String userId, Long treeId, Map valMap) { this.userId = userId; this.treeId = treeId; this.valMap = valMap; } public Long getTreeId() { return treeId; } public void setTreeId(Long treeId) { this.treeId = treeId; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public Map getValMap() { return valMap; } public void setValMap(Map valMap) { this.valMap = valMap; } }