17 lines
725 B
XML
17 lines
725 B
XML
|
|
<?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._3e.dao.PrivateMessageDao">
|
||
|
|
<insert id="doSave">
|
||
|
|
INSERT INTO privateMessage(privateMessageId, teacherId, uid, created, status, areaId, isRead, type, content,memo,jField)
|
||
|
|
VALUES (#{privateMessageId},#{teacherId},#{uid},#{created},#{status},#{areaId},#{isRead},#{type},#{content},#{memo},
|
||
|
|
#{jField,typeHandler=com._3e.http.wrongbook.typehandler.JSONTypeHandlerPg})
|
||
|
|
</insert>
|
||
|
|
|
||
|
|
<select id="getSeqPrivateMessage" resultType="int">
|
||
|
|
SELECT NEXTVAL('seq_privateMessageid')
|
||
|
|
</select>
|
||
|
|
|
||
|
|
</mapper>
|