積木報表設定時間

惠鹏曦發表於2024-08-15

// 需要查詢的表

select * from TECHPROC_PRODUCTION_RECORDS where techproccode='CUT'

// 日期範圍 startTime 開始時間 endTime結束時間 createtime 後臺接收的時間欄位

<#if isNotEmpty(startTime)>
and to_char(createtime , 'yyyy-MM-dd ') >= '${startTime}'
</#if>
<#if isNotEmpty(endTime)>
and to_char(createtime , 'yyyy-MM-dd ') <= '${endTime}'
</#if>

透過url獲取引數 https://help.jeecg.com/jimureport/query/sqlCondition.html

相關文章