NoticeRuleNode.java 448 Bytes
package com.yohoufo.msg.model;

import com.yohoufo.dal.order.model.NoticeRule;
import com.yohoufo.msg.constants.RuleKeyType;
import lombok.Data;

import java.util.concurrent.TimeUnit;

/**
 * Created by chao.chen on 2018/12/5.
 */
@Data
public class NoticeRuleNode {
    private Integer uid;
    private Integer ruleId;
    private Integer storageId;
    private RuleKeyType rkt;
    private TimeUnit timeUnit;
    private NoticeRule noticeRule;
}