This commit is contained in:
yumoqing 2026-03-18 13:42:40 +08:00
parent 841fa347f4
commit a8d034b7ff
2 changed files with 19 additions and 0 deletions

12
wwwroot/query_orders.dspy Normal file
View File

@ -0,0 +1,12 @@
"""
"page": # 当前页,缺省第一页
"pagerows": # 每页记录数缺省80
"""
page = 1
if params_kw.page:
page = int(page)
pagerows = 80
if params_kw.pagerows:
pagerows = int(params_kw.pagerows)

7
wwwroot/query_price.dspy Normal file
View File

@ -0,0 +1,7 @@
"""
product_id:
product_type: llm
config_data:
"""