|
@@ -0,0 +1,111 @@
|
|
|
+<?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.MemberPrivilegesItemDao">
|
|
|
+
|
|
|
+ <resultMap type="com.ym.mec.biz.dal.entity.MemberPrivilegesItem" id="MemberPrivilegesItem">
|
|
|
+ <result column="id_" property="id" />
|
|
|
+ <result column="name_" property="name" />
|
|
|
+ <result column="desc_" property="desc" />
|
|
|
+ <result column="code_" property="code" />
|
|
|
+ <result column="parent_id_" property="parentId" />
|
|
|
+ <result column="day_fee_" property="dayFee" />
|
|
|
+ <result column="month_fee_" property="monthFee" />
|
|
|
+ <result column="half_year_fee_" property="halfYearFee" />
|
|
|
+ <result column="year_fee_" property="yearFee" />
|
|
|
+ <result column="create_time_" property="createTime" />
|
|
|
+ <result column="update_time_" property="updateTime" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <select id="get" resultMap="MemberPrivilegesItem" >
|
|
|
+ SELECT * FROM member_privileges_item WHERE id_ = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 全查询 -->
|
|
|
+ <select id="findAll" resultMap="MemberPrivilegesItem">
|
|
|
+ SELECT * FROM member_privileges_item ORDER BY id_
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 向数据库增加一条记录 -->
|
|
|
+ <insert id="insert" parameterType="com.ym.mec.biz.dal.entity.MemberPrivilegesItem" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
|
|
|
+ INSERT INTO member_privileges_item (name_,desc_,code_,parent_id_,day_fee_,month_fee_,half_year_fee_,year_fee_,create_time_,update_time_)
|
|
|
+ VALUES(#{name},#{desc},#{code},#{parentId},#{dayFee},#{monthFee},#{halfYearFee},#{yearFee},NOW(),NOW())
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <!-- 根据主键查询一条记录 -->
|
|
|
+ <update id="update" parameterType="com.ym.mec.biz.dal.entity.MemberPrivilegesItem">
|
|
|
+ UPDATE member_privileges_item <set>
|
|
|
+ <if test="parentId != null">
|
|
|
+ parent_id_ = #{parentId},
|
|
|
+ </if>
|
|
|
+ <if test="monthFee != null">
|
|
|
+ month_fee_ = #{monthFee},
|
|
|
+ </if>
|
|
|
+ <if test="code != null">
|
|
|
+ code_ = #{code},
|
|
|
+ </if>
|
|
|
+ <if test="yearFee != null">
|
|
|
+ year_fee_ = #{yearFee},
|
|
|
+ </if>
|
|
|
+ <if test="dayFee != null">
|
|
|
+ day_fee_ = #{dayFee},
|
|
|
+ </if>
|
|
|
+ <if test="desc != null">
|
|
|
+ desc_ = #{desc},
|
|
|
+ </if>
|
|
|
+ <if test="name != null">
|
|
|
+ name_ = #{name},
|
|
|
+ </if>
|
|
|
+ <if test="halfYearFee != null">
|
|
|
+ half_year_fee_ = #{halfYearFee},
|
|
|
+ </if>
|
|
|
+ update_time_ = NOW()
|
|
|
+ </set> WHERE id_ = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <!-- 根据主键删除一条记录 -->
|
|
|
+ <delete id="delete" >
|
|
|
+ DELETE FROM member_privileges_item WHERE id_ = #{id}
|
|
|
+ </delete>
|
|
|
+ <delete id="batchDel">
|
|
|
+ DELETE FROM member_privileges_item WHERE id_ IN
|
|
|
+ <foreach collection="collect" separator="," item="item" open="(" close=")">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <!-- 分页查询 -->
|
|
|
+ <select id="queryPage" resultMap="MemberPrivilegesItem" parameterType="map">
|
|
|
+ SELECT * FROM member_privileges_item
|
|
|
+ <where>
|
|
|
+ <if test="parentId != null">
|
|
|
+ AND parent_id_ = #{parentId}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ ORDER BY id_
|
|
|
+ <include refid="global.limit"/>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <!-- 查询当前表的总记录数 -->
|
|
|
+ <select id="queryCount" resultType="int">
|
|
|
+ SELECT COUNT(*) FROM member_privileges_item
|
|
|
+ <where>
|
|
|
+ <if test="parentId != null">
|
|
|
+ AND parent_id_ = #{parentId}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+ <select id="findList" resultMap="MemberPrivilegesItem">
|
|
|
+ SELECT * FROM member_privileges_item
|
|
|
+ <where>
|
|
|
+ <if test="parentId != null">
|
|
|
+ AND parent_id_ = #{parentId}
|
|
|
+ </if>
|
|
|
+ </where>
|
|
|
+ ORDER BY id_ DESC
|
|
|
+ </select>
|
|
|
+</mapper>
|