|
|
@ -452,7 +452,8 @@ |
|
|
|
t.topic_content as topicContent, |
|
|
|
unix_timestamp(t.created_time) as releaseTime, |
|
|
|
g.GROUP_NAME as releaseGroupName, |
|
|
|
g.GRID_ID as releaseGridId |
|
|
|
g.GRID_ID as releaseGridId, |
|
|
|
t.GROUP_ID as groupId |
|
|
|
from resi_topic t |
|
|
|
inner join resi_group g on (t.GROUP_ID = g.ID and g.CUSTOMER_ID = #{customerId}) |
|
|
|
where t.CREATED_BY = #{userId} |
|
|
@ -481,8 +482,8 @@ |
|
|
|
topic.topic_content, |
|
|
|
UNIX_TIMESTAMP(topic.created_time) AS releaseTime, |
|
|
|
groupp.group_name AS topicReleaseGroupName, |
|
|
|
groupp.grid_id AS topicReleaseGridName |
|
|
|
|
|
|
|
groupp.grid_id AS topicReleaseGridName, |
|
|
|
topic.GROUP_ID |
|
|
|
FROM |
|
|
|
resi_topic topic LEFT JOIN resi_group groupp ON topic.group_id = groupp.ID AND groupp.del_flag = '0' AND groupp.customer_id = #{customerId} |
|
|
|
WHERE |
|
|
|