main
黄海 2 years ago
parent 4c55fa6cad
commit 50063f9f9e

@ -247,7 +247,8 @@ public class ExamModel {
* ,
*/
public List<Record> getPersonAllInfo(String person_id) {
String sql = "select *,COALESCE(reply,'0') as flag from t_exam_record where person_id=? order by order_id";
//如果是空值返回0否则返回1
String sql = "select *,if(reply is null,0,1) as flag from t_exam_record where person_id=? order by order_id";
return Db.find(sql, person_id);
}

Loading…
Cancel
Save