• This project
    • Loading...
  • Sign in

ufo / yohoufo-fore · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohoufo-fore
  • ..
  • model
  • NoticeCaseNode.java
  • add message center
    26dad59c
    by chenchao
    2018-12-05 18:54:38 +0800  
    Browse Files
NoticeCaseNode.java 406 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.yohoufo.msg.model;

import com.yohoufo.dal.order.model.NoticeCase;
import lombok.Data;

import java.util.List;
import java.util.Map;

/**
 * Created by chao.chen on 2018/12/5.
 */
@Data
public class NoticeCaseNode {

    private Integer id;

    private Integer uid;

    private String bizKey;

    private NoticeCase noticeCase;

    private Map<Integer, NoticeRuleNode> noticeRuleNodeMap;
}