123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <?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.yijia.customer.mapper.CustomerManageMapper">
-
- <resultMap type="CustomerManage" id="CustomerManageResult">
- <result property="id" column="id" />
- <result property="memberId" column="member_id" />
- <result property="customerName" column="customer_name" />
- <result property="commendMan" column="commend_man" />
- <result property="memberGrade" column="member_grade" />
- <result property="phoneNumber" column="phone_number" />
- <result property="carNumber" column="car_number" />
- <result property="balance" column="balance" />
- <result property="integral" column="integral" />
- <result property="specialCarType" column="special_car_type" />
- <result property="regtime" column="regtime" />
- <result property="stationId" column="station_id" />
- <result property="stationName" column="station_name" />
- <result property="cyGrade" column="cy_grade" />
- <result property="qyGrade" column="qy_grade" />
- <result property="cyLiters" column="cy_liters" />
- <result property="qyLiters" column="qy_liters" />
- <result property="cyAmt" column="cy_amt" />
- <result property="qyAmt" column="qy_amt" />
- <result property="blogOpenid" column="blog_openid" />
- <result property="minaOpenid" column="mina_openid" />
- <result property="blogUserId" column="blog_user_id" />
- <result property="minaUserId" column="mina_user_id" />
- <result property="oilName" column="oil_name" />
- <result property="grade" column="grade" />
- <result property="liters" column="liters" />
- <result property="amt" column="amt" />
- <result property="unionId" column="union_id" />
- </resultMap>
- <sql id="selectCustomerManageVo">
- select id, member_id, customer_name, commend_man, member_grade, phone_number, car_number, balance, integral, special_car_type, regtime, station_id, station_name, cy_grade, qy_grade, cy_liters, qy_liters, cy_amt, qy_amt, blog_openid, mina_openid, blog_user_id, mina_user_id, oil_name, grade, liters, amt, union_id from customer_manage
- </sql>
- <select id="selectCustomerManageList" parameterType="CustomerManage" resultMap="CustomerManageResult">
- <include refid="selectCustomerManageVo"/>
- <where>
- <if test="memberId != null and memberId != ''"> and member_id = #{memberId}</if>
- <if test="customerName != null and customerName != ''"> and customer_name like concat('%', #{customerName}, '%')</if>
- <if test="commendMan != null and commendMan != ''"> and commend_man = #{commendMan}</if>
- <if test="memberGrade != null and memberGrade != ''"> and member_grade = #{memberGrade}</if>
- <if test="phoneNumber != null and phoneNumber != ''"> and phone_number = #{phoneNumber}</if>
- <if test="carNumber != null and carNumber != ''"> and car_number = #{carNumber}</if>
- <if test="balance != null "> and balance = #{balance}</if>
- <if test="integral != null "> and integral = #{integral}</if>
- <if test="specialCarType != null and specialCarType != ''"> and special_car_type = #{specialCarType}</if>
- <if test="regtime != null "> and regtime = #{regtime}</if>
- <if test="stationId != null "> and station_id = #{stationId}</if>
- <if test="stationName != null and stationName != ''"> and station_name like concat('%', #{stationName}, '%')</if>
- <if test="cyGrade != null and cyGrade != ''"> and cy_grade = #{cyGrade}</if>
- <if test="qyGrade != null and qyGrade != ''"> and qy_grade = #{qyGrade}</if>
- <if test="cyLiters != null "> and cy_liters = #{cyLiters}</if>
- <if test="qyLiters != null "> and qy_liters = #{qyLiters}</if>
- <if test="cyAmt != null "> and cy_amt = #{cyAmt}</if>
- <if test="qyAmt != null "> and qy_amt = #{qyAmt}</if>
- <if test="blogOpenid != null and blogOpenid != ''"> and blog_openid = #{blogOpenid}</if>
- <if test="minaOpenid != null and minaOpenid != ''"> and mina_openid = #{minaOpenid}</if>
- <if test="blogUserId != null "> and blog_user_id = #{blogUserId}</if>
- <if test="minaUserId != null "> and mina_user_id = #{minaUserId}</if>
- <if test="oilName != null and oilName != ''"> and oil_name like concat('%', #{oilName}, '%')</if>
- <if test="grade != null and grade != ''"> and grade = #{grade}</if>
- <if test="liters != null "> and liters = #{liters}</if>
- <if test="amt != null "> and amt = #{amt}</if>
- <if test="unionId != null and unionId != ''"> and union_id = #{unionId}</if>
- <if test="stationIdList != null ">
- and station_id in
- <foreach item="item" index="index" collection="stationIdList"
- open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- </where>
- order by id desc
- </select>
-
- <select id="selectCustomerManageById" parameterType="Long" resultMap="CustomerManageResult">
- <include refid="selectCustomerManageVo"/>
- where id = #{id}
- </select>
-
- <insert id="insertCustomerManage" parameterType="CustomerManage" useGeneratedKeys="true" keyProperty="id">
- insert into customer_manage
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="memberId != null">member_id,</if>
- <if test="customerName != null">customer_name,</if>
- <if test="commendMan != null">commend_man,</if>
- <if test="memberGrade != null">member_grade,</if>
- <if test="phoneNumber != null">phone_number,</if>
- <if test="carNumber != null">car_number,</if>
- <if test="balance != null">balance,</if>
- <if test="integral != null">integral,</if>
- <if test="specialCarType != null">special_car_type,</if>
- <if test="regtime != null">regtime,</if>
- <if test="stationId != null">station_id,</if>
- <if test="stationName != null">station_name,</if>
- <if test="cyGrade != null">cy_grade,</if>
- <if test="qyGrade != null">qy_grade,</if>
- <if test="cyLiters != null">cy_liters,</if>
- <if test="qyLiters != null">qy_liters,</if>
- <if test="cyAmt != null">cy_amt,</if>
- <if test="qyAmt != null">qy_amt,</if>
- <if test="blogOpenid != null">blog_openid,</if>
- <if test="minaOpenid != null">mina_openid,</if>
- <if test="blogUserId != null">blog_user_id,</if>
- <if test="minaUserId != null">mina_user_id,</if>
- <if test="oilName != null">oil_name,</if>
- <if test="grade != null">grade,</if>
- <if test="liters != null">liters,</if>
- <if test="amt != null">amt,</if>
- <if test="unionId != null">union_id,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="memberId != null">#{memberId},</if>
- <if test="customerName != null">#{customerName},</if>
- <if test="commendMan != null">#{commendMan},</if>
- <if test="memberGrade != null">#{memberGrade},</if>
- <if test="phoneNumber != null">#{phoneNumber},</if>
- <if test="carNumber != null">#{carNumber},</if>
- <if test="balance != null">#{balance},</if>
- <if test="integral != null">#{integral},</if>
- <if test="specialCarType != null">#{specialCarType},</if>
- <if test="regtime != null">#{regtime},</if>
- <if test="stationId != null">#{stationId},</if>
- <if test="stationName != null">#{stationName},</if>
- <if test="cyGrade != null">#{cyGrade},</if>
- <if test="qyGrade != null">#{qyGrade},</if>
- <if test="cyLiters != null">#{cyLiters},</if>
- <if test="qyLiters != null">#{qyLiters},</if>
- <if test="cyAmt != null">#{cyAmt},</if>
- <if test="qyAmt != null">#{qyAmt},</if>
- <if test="blogOpenid != null">#{blogOpenid},</if>
- <if test="minaOpenid != null">#{minaOpenid},</if>
- <if test="blogUserId != null">#{blogUserId},</if>
- <if test="minaUserId != null">#{minaUserId},</if>
- <if test="oilName != null">#{oilName},</if>
- <if test="grade != null">#{grade},</if>
- <if test="liters != null">#{liters},</if>
- <if test="amt != null">#{amt},</if>
- <if test="unionId != null">#{unionId},</if>
- </trim>
- </insert>
- <update id="updateCustomerManage" parameterType="CustomerManage">
- update customer_manage
- <trim prefix="SET" suffixOverrides=",">
- <if test="memberId != null">member_id = #{memberId},</if>
- <if test="customerName != null">customer_name = #{customerName},</if>
- <if test="commendMan != null">commend_man = #{commendMan},</if>
- <if test="memberGrade != null">member_grade = #{memberGrade},</if>
- <if test="phoneNumber != null">phone_number = #{phoneNumber},</if>
- <if test="carNumber != null">car_number = #{carNumber},</if>
- <if test="balance != null">balance = #{balance},</if>
- <if test="integral != null">integral = #{integral},</if>
- <if test="specialCarType != null">special_car_type = #{specialCarType},</if>
- <if test="regtime != null">regtime = #{regtime},</if>
- <if test="stationId != null">station_id = #{stationId},</if>
- <if test="stationName != null">station_name = #{stationName},</if>
- <if test="cyGrade != null">cy_grade = #{cyGrade},</if>
- <if test="qyGrade != null">qy_grade = #{qyGrade},</if>
- <if test="cyLiters != null">cy_liters = #{cyLiters},</if>
- <if test="qyLiters != null">qy_liters = #{qyLiters},</if>
- <if test="cyAmt != null">cy_amt = #{cyAmt},</if>
- <if test="qyAmt != null">qy_amt = #{qyAmt},</if>
- <if test="blogOpenid != null">blog_openid = #{blogOpenid},</if>
- <if test="minaOpenid != null">mina_openid = #{minaOpenid},</if>
- <if test="blogUserId != null">blog_user_id = #{blogUserId},</if>
- <if test="minaUserId != null">mina_user_id = #{minaUserId},</if>
- <if test="oilName != null">oil_name = #{oilName},</if>
- <if test="grade != null">grade = #{grade},</if>
- <if test="liters != null">liters = #{liters},</if>
- <if test="amt != null">amt = #{amt},</if>
- <if test="unionId != null">union_id = #{unionId},</if>
- </trim>
- where id = #{id}
- </update>
- <delete id="deleteCustomerManageById" parameterType="Long">
- delete from customer_manage where id = #{id}
- </delete>
- <delete id="deleteCustomerManageByIds" parameterType="String">
- delete from customer_manage where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
-
- </mapper>
|