Browse Source

已转项目或者服务的时间,居民端不可回复,工作端小程序和pc回复了居民端才可以回复

dev
yinzuomei 3 years ago
parent
commit
fe82ff2d56
  1. 8
      epmet-module/gov-project/gov-project-server/src/main/resources/mapper/IcEventDao.xml

8
epmet-module/gov-project/gov-project-server/src/main/resources/mapper/IcEventDao.xml

@ -291,6 +291,7 @@
<result property="operationType" column="operation_type"/> <result property="operationType" column="operation_type"/>
<result property="operationId" column="operation_id"/> <result property="operationId" column="operation_id"/>
<result property="redDot" column="red_dot"/> <result property="redDot" column="red_dot"/>
<result property="replyFlag" column="read_flag"></result>
<result property="latestOperatedTime" column="latest_operated_time"></result> <result property="latestOperatedTime" column="latest_operated_time"></result>
<result property="satisfaction" column="satisfaction"/> <result property="satisfaction" column="satisfaction"/>
<result property="satisfactionName" column="satisfactionName" /> <result property="satisfactionName" column="satisfactionName" />
@ -318,7 +319,12 @@
when satisfaction='perfect' then '非常满意' when satisfaction='perfect' then '非常满意'
else '' else ''
end end
) as satisfactionName ) as satisfactionName,
(
case when ie.OPERATION_TYPE is not null and ie.OPERATION_TYPE ='0' then 1
else '0'
end
)as read_flag
FROM FROM
ic_event ie ic_event ie
WHERE WHERE

Loading…
Cancel
Save