| | |
| | | @ApiModelProperty("事件标题") |
| | | private String eventTitle; |
| | | |
| | | @ApiModelProperty("发生地点") |
| | | @ApiModelProperty("发生地点备注") |
| | | private String happentAddress; |
| | | |
| | | @ApiModelProperty("发生地点位置") |
| | | private String happenAddress; |
| | | |
| | | @ApiModelProperty("发生的精度纬度信息(逗号隔开)") |
| | | private String happentLatLng; |
| | | |
| | |
| | | SELECT |
| | | id, |
| | | event_type AS type, |
| | | event_title AS eventTitle, |
| | | event_des AS eventTitle, |
| | | happent_address AS happentAddress, |
| | | happen_address AS happenAddress, |
| | | happent_lat_lng AS happentLatLng |
| | | FROM |
| | | `event` |
| | |
| | | SELECT |
| | | id, |
| | | IFNULL( NULL, 7 ) AS type, |
| | | event_title AS eventTitle, |
| | | event_des AS eventTitle, |
| | | happent_address AS happentAddress, |
| | | happen_address AS happenAddress, |
| | | happent_lat_lng AS happentLatLng |
| | | FROM |
| | | event_visiting_tasks |