22 lines
585 B
XML
22 lines
585 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.AdminOperLogDao">
|
|
<insert id= "doSave" parameterType="com._3e.entity.AdminOperLog">
|
|
INSERT INTO AdminOperLog(
|
|
logId,type,adminId,created,description,orderNo
|
|
)
|
|
VALUES (
|
|
<if test="logId == 0">
|
|
(SELECT NEXTVAL('seq_adminoperlogid')),
|
|
</if>
|
|
<if test="logId != 0">
|
|
#{logId},
|
|
</if>
|
|
#{type}, #{adminId}, #{created}, #{description}, #{orderNo});
|
|
</insert>
|
|
|
|
|
|
</mapper>
|