Commit a66b5e2b by Java - 段鹏举

sql语句导致PageHelper插件报错的bug

parent b412c554
......@@ -484,8 +484,9 @@ union (SELECT apply_no,create_time AS create_date
ELSE p.airport_name
END depName,
r.city_name AS arrName,
verif_status AS verifStatus,
IF(back_status!='0','2',frv.status) AS status,
verif_status AS verifStatus,
CASE WHEN back_status != '0' THEN '2'
ELSE frv.status END status,
verif_type AS verifType,
fav.start_time AS sailingDate,
DATE_FORMAT(fav.create_date, '%Y-%m-%d') AS createDate
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment