123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?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.kmall.admin.dao.OrderGoodsDao">
- <!-- 可根据自己的需求,是否要使用 -->
- <resultMap type="com.kmall.admin.entity.OrderGoodsEntity" id="orderGoodsMap">
- <result property="id" column="id"/>
- <result property="orderId" column="order_id"/>
- <result property="goodsId" column="goods_id"/>
- <result property="goodsName" column="goods_name"/>
- <result property="goodsSn" column="goods_sn"/>
- <result property="productId" column="product_id"/>
- <result property="number" column="number"/>
- <result property="marketPrice" column="market_price"/>
- <result property="retailPrice" column="retail_price"/>
- <result property="goodsSpecificationNameValue" column="goods_specification_name_value"/>
- <result property="isReal" column="is_real"/>
- <result property="goodsSpecificationIds" column="goods_specification_ids"/>
- <result property="listPicUrl" column="list_pic_url"/>
- <result property="sku" column="sku"/>
- </resultMap>
- <select id="queryObject" resultType="com.kmall.admin.entity.OrderGoodsEntity">
- select * from mall_order_goods where id = #{value}
- </select>
- <select id="queryList" resultType="com.kmall.admin.entity.OrderGoodsEntity">
- select * from mall_order_goods
- WHERE 1=1
- <if test="orderId != null">
- AND order_id = #{orderId}
- </if>
- <choose>
- <when test="sidx != null and sidx.trim() != ''">
- order by ${sidx} ${order}
- </when>
- <otherwise>
- order by id desc
- </otherwise>
- </choose>
- <if test="offset != null and limit != null">
- limit #{offset}, #{limit}
- </if>
- </select>
- <select id="queryTotal" resultType="int">
- select count(*) from mall_order_goods WHERE 1=1
- <if test="orderId != null">
- AND order_id = #{orderId}
- </if>
- </select>
- <insert id="save" parameterType="com.kmall.admin.entity.OrderGoodsEntity" useGeneratedKeys="true" keyProperty="id">
- insert into mall_order_goods
- (
- `order_id`,
- `goods_id`,
- `goods_name`,
- `goods_sn`,
- `product_id`,
- `number`,
- `market_price`,
- `retail_price`,
- `goods_specification_name_value`,
- `is_real`,
- `goods_specification_ids`,
- `list_pic_url`
- )
- values
- (
- #{orderId},
- #{goodsId},
- #{goodsName},
- #{goodsSn},
- #{productId},
- #{number},
- #{marketPrice},
- #{retailPrice},
- #{goodsSpecificationNameValue},
- #{isReal},
- #{goodsSpecificationIds},
- #{listPicUrl}
- )
- </insert>
- <update id="update" parameterType="com.kmall.admin.entity.OrderGoodsEntity">
- update mall_order_goods
- <set>
- <if test="orderId != null">`order_id` = #{orderId},</if>
- <if test="goodsId != null">`goods_id` = #{goodsId},</if>
- <if test="goodsName != null">`goods_name` = #{goodsName},</if>
- <if test="goodsSn != null">`goods_sn` = #{goodsSn},</if>
- <if test="productId != null">`product_id` = #{productId},</if>
- <if test="number != null">`number` = #{number},</if>
- <if test="marketPrice != null">`market_price` = #{marketPrice},</if>
- <if test="retailPrice != null">`retail_price` = #{retailPrice},</if>
- <if test="goodsSpecificationNameValue != null">`goods_specification_name_value` =
- #{goodsSpecificationNameValue},
- </if>
- <if test="isReal != null">`is_real` = #{isReal},</if>
- <if test="goodsSpecificationIds != null">`goods_specification_ids` = #{goodsSpecificationIds},</if>
- <if test="listPicUrl != null">`list_pic_url` = #{listPicUrl}</if>
- </set>
- where id = #{id}
- </update>
- <delete id="delete">
- delete from mall_order_goods where id = #{value}
- </delete>
- <delete id="deleteBatch">
- delete from mall_order_goods where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </delete>
- </mapper>
|