001package top.cenze.rulepolicy.frame.entity.dto; 002 003import com.fasterxml.jackson.annotation.JsonInclude; 004import lombok.Data; 005 006/** 007 * @desc: 规则对象 008 * @author: chengze 009 * @createByDate: 2023/8/10 9:03 010 */ 011@Data 012@JsonInclude(JsonInclude.Include.NON_NULL) 013public class RuleDTO { 014 /** 015 * 规则名称 016 */ 017 private String ruleName; 018 019 /** 020 * 规则内容 021 */ 022 private String ruleContent; 023}