@@ -26,6 +26,16 @@ public class QuestionListDto { | |||
*/ | |||
private String missionName; | |||
/** | |||
* 经度 | |||
*/ | |||
private String lng; | |||
/** | |||
* 纬度 | |||
*/ | |||
private String lat; | |||
private String type; | |||
/** |
@@ -20,7 +20,7 @@ | |||
a.mission_name as missionName, c.execution_start_time as inspectionTime, | |||
a.file_marker_url as fileMarkerUrl, d.handler_result as handlerResult, | |||
d.handler_image as handlerImage, d.handler_user as handlerUserId, e.realname as handlerUserName, | |||
d.handler_time as handlerTime | |||
d.handler_time as handlerTime, a.lng, a.lat | |||
from th_question a | |||
inner join th_question_type b on b.code = a.type and b.mark = 1 | |||
inner join th_mission c on c.id = a.mission_id and c.mark = 1 |