在我的UI页面中,我有一个名为Acknowledged的选项卡,我已将其设置为布尔值。如何将这些数据设置到我的MySQL数据库中?`
public static AlertModel into(NotificationAlertMessage item) {
AlertModel model = new AlertModel();
model.setAcknowledged(item.isAcknowledged());
model.setNotificationSent(item.isNotificationSent());
return model;
}
此处已确认我已将其设置为布尔值
在我的UI中,已确认选项卡,如果选中该复选框,我将其打印为true,否则为false。但是如何将这个布尔值存储到我的数据库中?`