e73f13aa 康伟

kangwei :会议纪要,添加主持人属性

1 个父辈 b602f18e
...@@ -22,10 +22,12 @@ ...@@ -22,10 +22,12 @@
22 s.meet_title, 22 s.meet_title,
23 s.meet_location, 23 s.meet_location,
24 s.meet_content, 24 s.meet_content,
25 u.realname 'meet_compere',
25 m.meet_category 26 m.meet_category
26 FROM 27 FROM
27 ajh_meeting_receipt r 28 ajh_meeting_receipt r
28 LEFT JOIN ajh_meeting_send s ON s.id = r.meets_id 29 LEFT JOIN ajh_meeting_send s ON s.id = r.meets_id
30 left join sys_user u on s.meet_compere = u.id
29 LEFT JOIN ajh_meeting m ON m.id = s.meet_id 31 LEFT JOIN ajh_meeting m ON m.id = s.meet_id
30 LEFT JOIN ( SELECT * FROM sys_dict_item WHERE dict_id = 32 LEFT JOIN ( SELECT * FROM sys_dict_item WHERE dict_id =
31 ( SELECT id FROM sys_dict WHERE dict_code = 'attend_status' ) ) d ON d.item_value = r.status 33 ( SELECT id FROM sys_dict WHERE dict_code = 'attend_status' ) ) d ON d.item_value = r.status
......
...@@ -68,4 +68,7 @@ public class AjhMeetingReceiptVO { ...@@ -68,4 +68,7 @@ public class AjhMeetingReceiptVO {
68 /**会议类型*/ 68 /**会议类型*/
69 @ApiModelProperty(value = "会议类型") 69 @ApiModelProperty(value = "会议类型")
70 private String meetCategory; 70 private String meetCategory;
71
72 @ApiModelProperty(value = "主持人")
73 private String meetCompere;
71 } 74 }
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!