1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <?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="appraiseServiceDaoImpl">
|
| <!-- 保存评价信息 add by wuxw 2018-07-03 -->
| <insert id="saveAppraise" parameterType="Map">
| INSERT INTO appraise (`appraise_id`, `appraise_score`, `appraise_type`, `context`, `parent_appraise_id`,
| `appraise_user_id`, `appraise_user_name`, `obj_type`, `obj_id`,status_cd)
| VALUES (#{appraiseId}, #{appraiseScore}, #{appraiseType}, #{context}, #{parentAppraiseId}, #{appraiseUserId},
| #{appraiseUserName},
| #{objType}, #{objId},'0');
| </insert>
|
| </mapper>
|
|