package com.trafficaudit.rulemanage.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
import java.time.LocalDateTime;
|
|
@Data
|
@TableName("audit_rule")
|
public class AuditRule {
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
private String ruleName;
|
private String ruleCode;
|
private String description;
|
private String checkField;
|
private String compareType;
|
private String threshold;
|
private String alertLevel;
|
private String reportType;
|
private Integer isEnabled;
|
private String llmRawInput;
|
private Integer sortOrder;
|
private Long createdBy;
|
private LocalDateTime createdAt;
|
private LocalDateTime updatedAt;
|
}
|