系统支持参数?
自定参数 | 系统函数 |
last_date | ${system.biz.date} |
current_date | ${system.biz.curdate} |
current_datetime | ${system.datetime} |
last_1month_date | $[add_months(yyyyMMdd,-1)] |
last_1hour_date | $[yyyyMMddHHmmss-1/24] |
last_30minute_date | $[yyyyMMddHHmmss-30/24/60] |
last_30minute_date_format | $[yyyy-MM-dd HH:mm:ss-30/24/60] |
last_1hour_date_format | $[yyyy-MM-dd HH:mm:ss-1/24] |
current_datetime_format | $[yyyy-MM-dd HH:mm:ss] |
last_date_format | $[yyyy-MM-dd-1] |
current_date_format | $[yyyy-MM-dd] |
last_1month_date_format | $[add_months(yyyy-MM-dd,-1)] |
current_hour | $[HH] |
last_1hour | $[HH-1/24] |
current_month | $[yyyy-MM] |
echo "hello_world"
echo "last_date: "${last_date} -- 2024-01-15
echo "last_date_format: "${last_date_format}
echo "current_hour: "${current_hour}
echo "current_date: "${current_date}
echo "current_date_format: "${current_date_format} -- 2024-01-16 14:46:34
echo "current_datetime: "${current_datetime}
echo "current_datetime_format: "${current_datetime_format}
echo "last_1month_date: "${last_1month_date}
echo "last_1month_date_format: "${last_1month_date_format}
echo "last_1hour: "${last_1hour}
echo "last_1hour_date: "${last_1hour_date}
echo "last_1hour_date_format: "${last_1hour_date_format}
echo "last_30minute_date: "${last_30minute_date}
echo "last_30minute_date_format: "${last_30minute_date_format}
echo "current_month: "${current_month}