fix(workorder): 修正线索事件附件类型字段映射
- 将 GdClueEventListVO 中的 attachmentType 字段类型从 String 改为 Integer
- 修正 GdClueEventMapper.xml 中的字段映射,移除别名 attachmentType 保持一致命名
| | |
| | | select ce.id as id, |
| | | tr.result_url as event_image_url, |
| | | tr.geojson as geojson, |
| | | tr.attachment_type as attachmentType, |
| | | tr.attachment_type, |
| | | ce.create_time as create_time |
| | | from ja_gd_clue_event ce |
| | | left join ja_gd_task_result tr on tr.id::VARCHAR = ce.result_id::VARCHAR and tr.is_deleted = 0 |
| | |
| | | private String geojson; |
| | | |
| | | @ApiModelProperty(value = "事件附件类型") |
| | | private String attachmentType; |
| | | private Integer attachmentType; |
| | | } |