write sms type to db

This commit is contained in:
ltiongku
2024-08-14 19:44:18 +08:00
parent 334b3867ec
commit 9adb53e7ab
5 changed files with 37 additions and 2 deletions

View File

@@ -27,6 +27,8 @@ public final class SMSModel extends QRCodeModel<SMSEntity> {
@Override
public void setDetails() {
details = SMSEntity.builder().qrCodeId(data.getId()).build();
smsVerificationService.parseSMSString(details, data.getContents());
// Insert into sms table
smsVerificationService.insertDB(details);
}