|
@@ -12,17 +12,31 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<result property="memberGrade" column="member_grade" />
|
|
<result property="memberGrade" column="member_grade" />
|
|
<result property="phoneNumber" column="phone_number" />
|
|
<result property="phoneNumber" column="phone_number" />
|
|
<result property="carNumber" column="car_number" />
|
|
<result property="carNumber" column="car_number" />
|
|
- <result property="oils" column="oils" />
|
|
|
|
<result property="balance" column="balance" />
|
|
<result property="balance" column="balance" />
|
|
<result property="integral" column="integral" />
|
|
<result property="integral" column="integral" />
|
|
<result property="specialCarType" column="special_car_type" />
|
|
<result property="specialCarType" column="special_car_type" />
|
|
<result property="regtime" column="regtime" />
|
|
<result property="regtime" column="regtime" />
|
|
<result property="stationId" column="station_id" />
|
|
<result property="stationId" column="station_id" />
|
|
- <result property="stationNam" column="station_nam" />
|
|
|
|
|
|
+ <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>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectCustomerManageVo">
|
|
<sql id="selectCustomerManageVo">
|
|
- select id, member_id, customer_name, commend_man, member_grade, phone_number, car_number, oils, balance, integral, special_car_type, regtime, station_id, station_nam from customer_manage
|
|
|
|
|
|
+ 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>
|
|
</sql>
|
|
|
|
|
|
<select id="selectCustomerManageList" parameterType="CustomerManage" resultMap="CustomerManageResult">
|
|
<select id="selectCustomerManageList" parameterType="CustomerManage" resultMap="CustomerManageResult">
|
|
@@ -34,13 +48,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="memberGrade != null and memberGrade != ''"> and member_grade = #{memberGrade}</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="phoneNumber != null and phoneNumber != ''"> and phone_number = #{phoneNumber}</if>
|
|
<if test="carNumber != null and carNumber != ''"> and car_number = #{carNumber}</if>
|
|
<if test="carNumber != null and carNumber != ''"> and car_number = #{carNumber}</if>
|
|
- <if test="oils != null and oils != ''"> and oils = #{oils}</if>
|
|
|
|
- <if test="balance != null and balance != ''"> and balance = #{balance}</if>
|
|
|
|
- <if test="integral != null and integral != ''"> and integral = #{integral}</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="specialCarType != null and specialCarType != ''"> and special_car_type = #{specialCarType}</if>
|
|
<if test="regtime != null "> and regtime = #{regtime}</if>
|
|
<if test="regtime != null "> and regtime = #{regtime}</if>
|
|
<if test="stationId != null "> and station_id = #{stationId}</if>
|
|
<if test="stationId != null "> and station_id = #{stationId}</if>
|
|
- <if test="stationNam != null and stationNam != ''"> and station_nam = #{stationNam}</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>
|
|
</where>
|
|
</where>
|
|
</select>
|
|
</select>
|
|
|
|
|
|
@@ -49,39 +77,65 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
where id = #{id}
|
|
where id = #{id}
|
|
</select>
|
|
</select>
|
|
|
|
|
|
- <insert id="insertCustomerManage" parameterType="CustomerManage">
|
|
|
|
|
|
+ <insert id="insertCustomerManage" parameterType="CustomerManage" useGeneratedKeys="true" keyProperty="id">
|
|
insert into customer_manage
|
|
insert into customer_manage
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
- <if test="id != null">id,</if>
|
|
|
|
<if test="memberId != null">member_id,</if>
|
|
<if test="memberId != null">member_id,</if>
|
|
<if test="customerName != null">customer_name,</if>
|
|
<if test="customerName != null">customer_name,</if>
|
|
<if test="commendMan != null">commend_man,</if>
|
|
<if test="commendMan != null">commend_man,</if>
|
|
<if test="memberGrade != null">member_grade,</if>
|
|
<if test="memberGrade != null">member_grade,</if>
|
|
<if test="phoneNumber != null">phone_number,</if>
|
|
<if test="phoneNumber != null">phone_number,</if>
|
|
<if test="carNumber != null">car_number,</if>
|
|
<if test="carNumber != null">car_number,</if>
|
|
- <if test="oils != null">oils,</if>
|
|
|
|
<if test="balance != null">balance,</if>
|
|
<if test="balance != null">balance,</if>
|
|
<if test="integral != null">integral,</if>
|
|
<if test="integral != null">integral,</if>
|
|
<if test="specialCarType != null">special_car_type,</if>
|
|
<if test="specialCarType != null">special_car_type,</if>
|
|
<if test="regtime != null">regtime,</if>
|
|
<if test="regtime != null">regtime,</if>
|
|
<if test="stationId != null">station_id,</if>
|
|
<if test="stationId != null">station_id,</if>
|
|
- <if test="stationNam != null">station_nam,</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>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
- <if test="id != null">#{id},</if>
|
|
|
|
<if test="memberId != null">#{memberId},</if>
|
|
<if test="memberId != null">#{memberId},</if>
|
|
<if test="customerName != null">#{customerName},</if>
|
|
<if test="customerName != null">#{customerName},</if>
|
|
<if test="commendMan != null">#{commendMan},</if>
|
|
<if test="commendMan != null">#{commendMan},</if>
|
|
<if test="memberGrade != null">#{memberGrade},</if>
|
|
<if test="memberGrade != null">#{memberGrade},</if>
|
|
<if test="phoneNumber != null">#{phoneNumber},</if>
|
|
<if test="phoneNumber != null">#{phoneNumber},</if>
|
|
<if test="carNumber != null">#{carNumber},</if>
|
|
<if test="carNumber != null">#{carNumber},</if>
|
|
- <if test="oils != null">#{oils},</if>
|
|
|
|
<if test="balance != null">#{balance},</if>
|
|
<if test="balance != null">#{balance},</if>
|
|
<if test="integral != null">#{integral},</if>
|
|
<if test="integral != null">#{integral},</if>
|
|
<if test="specialCarType != null">#{specialCarType},</if>
|
|
<if test="specialCarType != null">#{specialCarType},</if>
|
|
<if test="regtime != null">#{regtime},</if>
|
|
<if test="regtime != null">#{regtime},</if>
|
|
<if test="stationId != null">#{stationId},</if>
|
|
<if test="stationId != null">#{stationId},</if>
|
|
- <if test="stationNam != null">#{stationNam},</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>
|
|
</trim>
|
|
</insert>
|
|
</insert>
|
|
|
|
|
|
@@ -94,13 +148,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
<if test="memberGrade != null">member_grade = #{memberGrade},</if>
|
|
<if test="memberGrade != null">member_grade = #{memberGrade},</if>
|
|
<if test="phoneNumber != null">phone_number = #{phoneNumber},</if>
|
|
<if test="phoneNumber != null">phone_number = #{phoneNumber},</if>
|
|
<if test="carNumber != null">car_number = #{carNumber},</if>
|
|
<if test="carNumber != null">car_number = #{carNumber},</if>
|
|
- <if test="oils != null">oils = #{oils},</if>
|
|
|
|
<if test="balance != null">balance = #{balance},</if>
|
|
<if test="balance != null">balance = #{balance},</if>
|
|
<if test="integral != null">integral = #{integral},</if>
|
|
<if test="integral != null">integral = #{integral},</if>
|
|
<if test="specialCarType != null">special_car_type = #{specialCarType},</if>
|
|
<if test="specialCarType != null">special_car_type = #{specialCarType},</if>
|
|
<if test="regtime != null">regtime = #{regtime},</if>
|
|
<if test="regtime != null">regtime = #{regtime},</if>
|
|
<if test="stationId != null">station_id = #{stationId},</if>
|
|
<if test="stationId != null">station_id = #{stationId},</if>
|
|
- <if test="stationNam != null">station_nam = #{stationNam},</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>
|
|
</trim>
|
|
where id = #{id}
|
|
where id = #{id}
|
|
</update>
|
|
</update>
|