Files
aiData/DbKit/Sql/HaiBao.sql

13 lines
382 B
MySQL
Raw Normal View History

2026-01-21 08:41:47 +08:00
#namespace("HaiBao")
#sql("insertHistory")
INSERT INTO haibao_history (id, prompt, image_url, scheme_content, created_at)
VALUES (#para(id), #para(prompt), #para(image_url), #para(scheme_content), #para(created_at))
#end
#sql("getHistory")
SELECT * FROM haibao_history
ORDER BY created_at DESC
LIMIT #para(limit)
#end
#end