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