forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
705 B
22 lines
705 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
<mapper namespace="com.epmet.dao.IcEventReplyDao">
|
|
|
|
<select id="selectByEventId" resultType="com.epmet.dto.result.IcEventProcessListResultDTO">
|
|
SELECT
|
|
id processId,
|
|
'event' type,
|
|
'回复' processName,
|
|
UNIX_TIMESTAMP(created_time) processTime,
|
|
user_show_name departmentName,
|
|
content publicReply
|
|
FROM
|
|
ic_event_reply
|
|
WHERE
|
|
del_flag = '0'
|
|
AND ic_event_id = #{icEventId}
|
|
ORDER BY created_time DESC
|
|
</select>
|
|
|
|
</mapper>
|