implemented keyword search in sms

This commit is contained in:
heyethereum
2024-08-17 10:43:59 +08:00
parent 0301b0e1fb
commit d24ece60fd
3 changed files with 61 additions and 2 deletions

View File

@@ -2,6 +2,7 @@ package com.safeqr.app.qrcode.entity;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import jakarta.persistence.*;
import lombok.AllArgsConstructor;
import lombok.Data;
@@ -31,4 +32,8 @@ public class SMSEntity {
private String phone;
private String message;
@JsonInclude(JsonInclude.Include.NON_NULL)
@Column(name = "keyword_detected")
private String keywordDetected;
}