|
@@ -0,0 +1,77 @@
|
|
|
+<?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.keao.edu.user.dao.SysSuggestionDao">
|
|
|
+
|
|
|
+ <resultMap type="com.keao.edu.user.entity.SysSuggestion" id="SysSuggestion">
|
|
|
+ <result column="id_" property="id"/>
|
|
|
+ <result column="mobile_no_" property="mobileNo"/>
|
|
|
+ <result column="title_" property="title"/>
|
|
|
+ <result column="content_" property="content"/>
|
|
|
+ <result column="user_id_" property="userId"/>
|
|
|
+ <result column="username_" property="username"/>
|
|
|
+ <result column="create_time_" property="createTime"/>
|
|
|
+ <result column="client_type_" property="clientType"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <select id="get" resultMap="SysSuggestion">
|
|
|
+ SELECT * FROM sys_suggestion WHERE id_ = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 全查询 -->
|
|
|
+ <select id="findAll" resultMap="SysSuggestion">
|
|
|
+ SELECT * FROM sys_suggestion ORDER BY id_
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 向数据库增加一条记录 -->
|
|
|
+ <insert id="insert" parameterType="com.keao.edu.user.entity.SysSuggestion" useGeneratedKeys="true" keyColumn="id"
|
|
|
+ keyProperty="id">
|
|
|
+ INSERT INTO sys_suggestion (id_,mobile_no_,title_,content_,user_id_,create_time_,client_type_)
|
|
|
+ VALUES(#{id},#{mobileNo},#{title},#{content},#{userId},now(),#{clientType})
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <update id="update" parameterType="com.keao.edu.user.entity.SysSuggestion">
|
|
|
+ UPDATE sys_suggestion
|
|
|
+ <set>
|
|
|
+ <if test="clientType != null">
|
|
|
+ client_type_ = #{clientType},
|
|
|
+ </if>
|
|
|
+ <if test="userId != null">
|
|
|
+ user_id_ = #{userId},
|
|
|
+ </if>
|
|
|
+ <if test="title != null">
|
|
|
+ title_ = #{title},
|
|
|
+ </if>
|
|
|
+ <if test="content != null">
|
|
|
+ content_ = #{content},
|
|
|
+ </if>
|
|
|
+ <if test="mobileNo != null">
|
|
|
+ mobile_no_ = #{mobileNo},
|
|
|
+ </if>
|
|
|
+ </set>
|
|
|
+ WHERE id_ = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <!-- 根据主键删除一条记录 -->
|
|
|
+ <delete id="delete">
|
|
|
+ DELETE FROM sys_suggestion WHERE id_ = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <!-- 分页查询 -->
|
|
|
+ <select id="queryPage" resultMap="SysSuggestion" parameterType="map">
|
|
|
+ SELECT ss.*,CASE WHEN su.real_name_ IS NULL THEN su.username_ ELSE su.real_name_ END username_ FROM sys_suggestion ss
|
|
|
+ LEFT JOIN sys_user su ON su.id_ = ss.user_id_
|
|
|
+ ORDER BY ss.id_ DESC
|
|
|
+ <include refid="global.limit"/>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 查询当前表的总记录数 -->
|
|
|
+ <select id="queryCount" resultType="int">
|
|
|
+ SELECT COUNT(*) FROM sys_suggestion
|
|
|
+ </select>
|
|
|
+</mapper>
|