| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | 
							- <?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.ym.mec.biz.dal.dao.SchoolDao">
 
-     <resultMap type="com.ym.mec.biz.dal.entity.School" id="School">
 
-         <result column="id_" property="id"/>
 
-         <result column="user_id_" property="userId"/>
 
-         <result column="name_" property="name"/>
 
-         <result column="organ_id_" property="organId"/>
 
-         <result column="address_" property="address"/>
 
-         <result column="contact_phone_" property="contactPhone"/>
 
-         <result column="create_time_" property="createTime"/>
 
-         <result column="update_time_" property="updateTime"/>
 
-         <result column="del_flag_" property="delFlag"/>
 
-         <result column="contact_name_" property="contactName"/>
 
-         <result column="longitude_latitude_" property="longitudeLatitude"/>
 
-         <result column="subsidy_" property="subsidy"/>
 
-         <result column="cooperation_organ_id_" property="cooperationOrganId"/>
 
-         <result column="remark_" property="remark"/>
 
-     </resultMap>
 
-     <!-- 根据主键查询一条记录 -->
 
-     <select id="get" resultMap="School">
 
- 		SELECT * FROM school WHERE id_ = #{id} 
 
- 	</select>
 
-     <!-- 全查询 -->
 
-     <select id="findAll" resultMap="School">
 
- 		SELECT * FROM school ORDER BY id_
 
- 	</select>
 
-     <!-- 向数据库增加一条记录 -->
 
-     <insert id="insert" parameterType="com.ym.mec.biz.dal.entity.School" useGeneratedKeys="true" keyColumn="id"
 
-             keyProperty="id">
 
-         INSERT INTO school
 
-         (id_,user_id_,name_,organ_id_,address_,contact_phone_,create_time_,update_time_,contact_name_,longitude_latitude_,subsidy_,cooperation_organ_id_,remark_)
 
-         VALUES(#{id},#{userId},#{name},#{organId},#{address},#{contactPhone},now(),now(),#{contactName},#{longitudeLatitude},#{subsidy},#{cooperationOrganId},#{remark})
 
-     </insert>
 
-     <!-- 根据主键查询一条记录 -->
 
-     <update id="update" parameterType="com.ym.mec.biz.dal.entity.School">
 
-         UPDATE school
 
-         <set>
 
-             <if test="delFlag != null">
 
-                 del_flag_ = #{delFlag},
 
-             </if>
 
-             <if test="organId != null">
 
-                 organ_id_ = #{organId},
 
-             </if>
 
-             <if test="userId != null">
 
-                 user_id_ = #{userId},
 
-             </if>
 
-             <if test="updateTime != null">
 
-                 update_time_ = NOW(),
 
-             </if>
 
-             <if test="contactPhone != null">
 
-                 contact_phone_ = #{contactPhone},
 
-             </if>
 
-             <if test="longitudeLatitude != null">
 
-                 longitude_latitude_ = #{longitudeLatitude},
 
-             </if>
 
-             <if test="address != null">
 
-                 address_ = #{address},
 
-             </if>
 
-             <if test="contactName != null">
 
-                 contact_name_ = #{contactName},
 
-             </if>
 
-             <if test="name != null">
 
-                 name_ = #{name},
 
-             </if>
 
-             <if test="subsidy != null">
 
-                 subsidy_ = #{subsidy},
 
-             </if>
 
-             <if test="cooperationOrganId != null">
 
-                 cooperation_organ_id_ = #{cooperationOrganId},
 
-             </if>
 
-             <if test="remark != null">
 
-                 remark_ = #{remark},
 
-             </if>
 
-         </set>
 
-         WHERE id_ = #{id}
 
-     </update>
 
-     <!-- 根据主键删除一条记录 -->
 
-     <delete id="delete">
 
- 		UPDATE school SET del_flag_ = 1 WHERE id_ = #{id}
 
- 	</delete>
 
-     <!-- 分页查询 -->
 
-     <select id="queryPage" resultMap="School" parameterType="map">
 
-         SELECT * FROM school where del_flag_ != 1
 
-         <if test="cooperationOrganId != null">
 
-             AND cooperation_organ_id_ = #{cooperationOrganId}
 
-         </if>
 
-         <if test="organId != null">
 
-             AND FIND_IN_SET(organ_id_,#{organId})
 
-         </if>
 
-         <if test="search != null">
 
-             AND (name_ LIKE CONCAT('%',#{search},'%') OR id_ LIKE CONCAT('%',#{search},'%'))
 
-         </if>
 
-         ORDER BY id_
 
-         <include refid="global.limit"/>
 
-     </select>
 
-     <!-- 查询当前表的总记录数 -->
 
-     <select id="queryCount" resultType="int">
 
- 		SELECT COUNT(*) FROM school where del_flag_ != 1
 
-         <if test="cooperationOrganId != null">
 
-             AND cooperation_organ_id_ = #{cooperationOrganId}
 
-         </if>
 
-         <if test="organId != null">
 
-             AND FIND_IN_SET(organ_id_,#{organId})
 
-         </if>
 
-         <if test="search != null">
 
-             AND (name_ LIKE CONCAT('%',#{search},'%') OR id_ LIKE CONCAT('%',#{search},'%'))
 
-         </if>
 
- 	</select>
 
-     <select id="queryByOrganId" resultMap="School">
 
-         SELECT * FROM school
 
-         <where>
 
-             del_flag_ = 0 and user_id_ is null
 
-             <if test="organId != null">
 
-                 AND FIND_IN_SET(organ_id_,#{organId})
 
-             </if>
 
-         </where>
 
-     </select>
 
-     <select id="queryNameByIds" resultType="java.util.Map" >
 
-         select id_ `key`,name_ `value` FROM school s WHERE FIND_IN_SET(id_,#{schoolIds}) AND s.del_flag_ != 1
 
-     </select>
 
-     
 
-     <select id="findByUserId" resultMap="School">
 
-         select * from school where del_flag_ != 1 and user_id_ = #{userId}
 
-     </select>
 
-     <select id="findVipSchoolByUserId" resultMap="School">
 
-         SELECT * FROM school WHERE del_flag_ != 1
 
-         <if test="organId != null">
 
-         AND ((FIND_IN_SET(organ_id_,#{organId}) and user_id_ is NULL) or user_id_ = #{userId})
 
-         </if>
 
-     </select>
 
-     <select id="findVipSchoolByUserId2" resultMap="School">
 
-         SELECT * FROM school WHERE del_flag_ != 1
 
-             AND FIND_IN_SET(organ_id_,#{organId}) AND user_id_ = #{userId}
 
-     </select>
 
-     <select id="getSchools" resultMap="School">
 
-         SELECT * FROM school WHERE id_ IN
 
-         <foreach collection="schoolIds" item="schoolId" open="(" close=")" separator=",">
 
-             #{schoolId}
 
-         </foreach>
 
-     </select>
 
- </mapper>
 
 
  |