17 lines
725 B
XML
Raw Permalink Normal View History

2026-03-10 16:40:19 +08:00
<?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>