001package top.cenze.rulepolicy.frame.rule; 002 003import com.fasterxml.jackson.annotation.JsonInclude; 004import lombok.Data; 005 006/** 007 * @desc: 规则 008 * @author: chengze 009 * @createByDate: 2023/8/7 13:47 010 */ 011@Data 012@JsonInclude(JsonInclude.Include.NON_NULL) 013public class Rule { 014 015 /** 016 * 规则头 017 */ 018 private RuleHeader header; 019 020 /** 021 * 规则体 022 */ 023 private RuleBody body; 024}