|
@ -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 |
|
|