2018-12-21 11:47
@JFinal SELECT
id,
mobile,
recommend_uid,
rewards_money,
create_time,
state,
user_id
FROM
t_money_in_detail
WHERE
recommend_uid = 1362
UNION ALL
SELECT
id,
mobile,
user_id,
cash_money,
completion_time,
'4',
NULL
FROM
t_cash
WHERE
user_id = 1362
ORDER BY
create_time DESC
LIMIT 0,
5
怎么用Jfinal写