12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?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.TenantApplyDao">
- <resultMap type="com.keao.edu.user.entity.TenantApply" id="TenantApply">
- <result column="id_" property="id" />
- <result column="name_" property="name" />
- <result column="city_" property="city" />
- <result column="linkman_" property="linkman" />
- <result column="mobile_no_" property="mobileNo" />
- <result column="student_num_level_" property="studentNumLevel" />
- <result column="create_time_" property="createTime" />
- <result column="call_back_time_" property="callBackTime" />
- <result column="call_back_log_" property="callBackLog" />
- </resultMap>
- <!-- 根据主键查询一条记录 -->
- <select id="get" resultMap="TenantApply">
- SELECT * FROM
- tenant_apply WHERE id_ = #{id}
- </select>
- <!-- 全查询 -->
- <select id="findAll" resultMap="TenantApply">
- SELECT * FROM tenant_apply ORDER
- BY id_
- </select>
- <!-- 向数据库增加一条记录 -->
- <insert id="insert" parameterType="com.keao.edu.user.entity.TenantApply"
- useGeneratedKeys="true" keyColumn="id" keyProperty="id">
- <!-- <selectKey resultClass="int" keyProperty="id" > SELECT SEQ_WSDEFINITION_ID.nextval
- AS ID FROM DUAL </selectKey> -->
- INSERT INTO tenant_apply
- (id_,name_,city_,linkman_,mobile_no_,student_num_level_,create_time_,call_back_time_,call_back_log_)
- VALUES(#{id},#{name},#{city},#{linkman},#{mobileNo},#{studentNumLevel},#{createTime},#{callBackTime},#{callBackLog})
- </insert>
- <!-- 根据主键查询一条记录 -->
- <update id="update" parameterType="com.keao.edu.user.entity.TenantApply">
- UPDATE tenant_apply
- <set>
- <if test="city != null">
- city_ = #{city},
- </if>
- <if test="id != null">
- id_ = #{id},
- </if>
- <if test="linkman != null">
- linkman_ = #{linkman},
- </if>
- <if test="callBackLog != null">
- call_back_log_ = #{callBackLog},
- </if>
- <if test="mobileNo != null">
- mobile_no_ = #{mobileNo},
- </if>
- <if test="studentNumLevel != null">
- student_num_level_ = #{studentNumLevel},
- </if>
- <if test="callBackTime != null">
- call_back_time_ = #{callBackTime},
- </if>
- <if test="name != null">
- name_ = #{name},
- </if>
- <if test="createTime != null">
- create_time_ = #{createTime},
- </if>
- </set>
- WHERE id_ = #{id}
- </update>
- <!-- 根据主键删除一条记录 -->
- <delete id="delete">
- DELETE FROM tenant_apply WHERE id_ = #{id}
- </delete>
- <!-- 分页查询 -->
- <select id="queryPage" resultMap="TenantApply" parameterType="map">
- SELECT * FROM tenant_apply ORDER BY id_
- <include refid="global.limit" />
- </select>
- <!-- 查询当前表的总记录数 -->
- <select id="queryCount" resultType="int">
- SELECT COUNT(*) FROM
- tenant_apply
- </select>
- </mapper>
|