|
|
@ -23,8 +23,8 @@ public class F10Dao { |
|
|
"customer_name, phone, remark, display_color, error_reason, line_type, area_name, " + |
|
|
"customer_name, phone, remark, display_color, error_reason, line_type, area_name, " + |
|
|
"send_date, send_time, customer_no, display_data1, display_data2, " + |
|
|
"send_date, send_time, customer_no, display_data1, display_data2, " + |
|
|
"instruction_flag, signal_code, card_no, card_type, mansion_building, mansion_room, option_field, " + |
|
|
"instruction_flag, signal_code, card_no, card_type, mansion_building, mansion_room, option_field, " + |
|
|
"created_at, created_time, receive_timestamp, expired_flag, alert_history_id" + |
|
|
"created_at, created_time, receive_timestamp, send_timestamp, expired_flag, alert_history_id" + |
|
|
") VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"; |
|
|
") VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)"; |
|
|
|
|
|
|
|
|
jdbcTemplate.update(sql, |
|
|
jdbcTemplate.update(sql, |
|
|
f10JournalLog.getDeviceId(), |
|
|
f10JournalLog.getDeviceId(), |
|
|
@ -78,6 +78,7 @@ public class F10Dao { |
|
|
f10JournalLog.getCreatedAt(), |
|
|
f10JournalLog.getCreatedAt(), |
|
|
new java.sql.Timestamp(f10JournalLog.getCreatedAt()), |
|
|
new java.sql.Timestamp(f10JournalLog.getCreatedAt()), |
|
|
f10JournalLog.getReceiveTimestamp(), |
|
|
f10JournalLog.getReceiveTimestamp(), |
|
|
|
|
|
f10JournalLog.getSendTimestamp(), |
|
|
f10JournalLog.getExpiredFlag(), |
|
|
f10JournalLog.getExpiredFlag(), |
|
|
f10JournalLog.getAlertHistoryId() |
|
|
f10JournalLog.getAlertHistoryId() |
|
|
); |
|
|
); |
|
|
|