|
@@ -0,0 +1,177 @@
|
|
|
|
|
+<?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.sckw.transport.dao.KwtLogisticsOrderGoodsMapper">
|
|
|
|
|
+ <resultMap id="BaseResultMap" type="com.sckw.transport.model.KwtLogisticsOrderGoods">
|
|
|
|
|
+ <id column="id" jdbcType="BIGINT" property="id" />
|
|
|
|
|
+ <result column="l_order_id" jdbcType="BIGINT" property="lOrderId" />
|
|
|
|
|
+ <result column="order_no" jdbcType="VARCHAR" property="lOrderNo" />
|
|
|
|
|
+ <result column="goods_id" jdbcType="BIGINT" property="goodsId" />
|
|
|
|
|
+ <result column="sku_id" jdbcType="BIGINT" property="skuId" />
|
|
|
|
|
+ <result column="remark" jdbcType="VARCHAR" property="remark" />
|
|
|
|
|
+ <result column="status" jdbcType="INTEGER" property="status" />
|
|
|
|
|
+ <result column="create_by" jdbcType="BIGINT" property="createBy" />
|
|
|
|
|
+ <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
|
|
|
+ <result column="update_by" jdbcType="BIGINT" property="updateBy" />
|
|
|
|
|
+ <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
|
|
|
+ <result column="del_flag" jdbcType="INTEGER" property="delFlag" />
|
|
|
|
|
+ </resultMap>
|
|
|
|
|
+ <sql id="Base_Column_List">
|
|
|
|
|
+ id, l_order_id, l_order_no, goods_id, sku_id, remark, `status`, create_by, create_time,
|
|
|
|
|
+ update_by, update_time, del_flag
|
|
|
|
|
+ </sql>
|
|
|
|
|
+ <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
|
|
|
+ select
|
|
|
|
|
+ <include refid="Base_Column_List" />
|
|
|
|
|
+ from kwt_logistics_order_goods
|
|
|
|
|
+ where id = #{id,jdbcType=BIGINT}
|
|
|
|
|
+ </select>
|
|
|
|
|
+ <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
|
|
|
+ delete from kwt_logistics_order_goods
|
|
|
|
|
+ where id = #{id,jdbcType=BIGINT}
|
|
|
|
|
+ </delete>
|
|
|
|
|
+<!-- <insert id="insert" parameterType="com.sckw.transport.model.KwtLogisticsOrderGoods">-->
|
|
|
|
|
+<!-- insert into kwt_logistics_order_goods (id, l_order_id, l_order_no,-->
|
|
|
|
|
+<!-- goods_id, sku_id, remark,-->
|
|
|
|
|
+<!-- `status`, create_by, create_time,-->
|
|
|
|
|
+<!-- update_by, update_time, del_flag-->
|
|
|
|
|
+<!-- )-->
|
|
|
|
|
+<!-- values (#{id,jdbcType=BIGINT}, #{lOrderId,jdbcType=BIGINT}, #{lOrderNo,jdbcType=VARCHAR},-->
|
|
|
|
|
+<!-- #{goodsId,jdbcType=BIGINT}, #{skuId,jdbcType=BIGINT}, #{remark,jdbcType=VARCHAR},-->
|
|
|
|
|
+<!-- #{status,jdbcType=INTEGER}, #{createBy,jdbcType=BIGINT}, #{createTime,jdbcType=TIMESTAMP},-->
|
|
|
|
|
+<!-- #{updateBy,jdbcType=BIGINT}, #{updateTime,jdbcType=TIMESTAMP}, #{delFlag,jdbcType=INTEGER}-->
|
|
|
|
|
+<!-- )-->
|
|
|
|
|
+<!-- </insert>-->
|
|
|
|
|
+ <insert id="insertSelective" parameterType="com.sckw.transport.model.KwtLogisticsOrderGoods">
|
|
|
|
|
+ insert into kwt_logistics_order_goods
|
|
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
|
|
+ <if test="id != null">
|
|
|
|
|
+ id,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="lOrderId != null">
|
|
|
|
|
+ l_order_id,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="lOrderNo != null">
|
|
|
|
|
+ l_order_no,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="goodsId != null">
|
|
|
|
|
+ goods_id,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="skuId != null">
|
|
|
|
|
+ sku_id,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="remark != null">
|
|
|
|
|
+ remark,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="status != null">
|
|
|
|
|
+ `status`,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="createBy != null">
|
|
|
|
|
+ create_by,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="createTime != null">
|
|
|
|
|
+ create_time,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="updateBy != null">
|
|
|
|
|
+ update_by,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="updateTime != null">
|
|
|
|
|
+ update_time,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="delFlag != null">
|
|
|
|
|
+ del_flag,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ </trim>
|
|
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
|
|
+ <if test="id != null">
|
|
|
|
|
+ #{id,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="lOrderId != null">
|
|
|
|
|
+ #{lOrderId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="lOrderNo != null">
|
|
|
|
|
+ #{lOrderNo,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="goodsId != null">
|
|
|
|
|
+ #{goodsId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="skuId != null">
|
|
|
|
|
+ #{skuId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="remark != null">
|
|
|
|
|
+ #{remark,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="status != null">
|
|
|
|
|
+ #{status,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="createBy != null">
|
|
|
|
|
+ #{createBy,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="createTime != null">
|
|
|
|
|
+ #{createTime,jdbcType=TIMESTAMP},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="updateBy != null">
|
|
|
|
|
+ #{updateBy,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="updateTime != null">
|
|
|
|
|
+ #{updateTime,jdbcType=TIMESTAMP},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="delFlag != null">
|
|
|
|
|
+ #{delFlag,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ </trim>
|
|
|
|
|
+ </insert>
|
|
|
|
|
+ <update id="updateByPrimaryKeySelective" parameterType="com.sckw.transport.model.KwtLogisticsOrderGoods">
|
|
|
|
|
+ update kwt_logistics_order_goods
|
|
|
|
|
+ <set>
|
|
|
|
|
+ <if test="lOrderId != null">
|
|
|
|
|
+ l_order_id = #{lOrderId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="lOrderNo != null">
|
|
|
|
|
+ l_order_no = #{lOrderNo,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="goodsId != null">
|
|
|
|
|
+ goods_id = #{goodsId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="skuId != null">
|
|
|
|
|
+ sku_id = #{skuId,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="remark != null">
|
|
|
|
|
+ remark = #{remark,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="status != null">
|
|
|
|
|
+ `status` = #{status,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="createBy != null">
|
|
|
|
|
+ create_by = #{createBy,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="createTime != null">
|
|
|
|
|
+ create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="updateBy != null">
|
|
|
|
|
+ update_by = #{updateBy,jdbcType=BIGINT},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="updateTime != null">
|
|
|
|
|
+ update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="delFlag != null">
|
|
|
|
|
+ del_flag = #{delFlag,jdbcType=INTEGER},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ </set>
|
|
|
|
|
+ where id = #{id,jdbcType=BIGINT}
|
|
|
|
|
+ </update>
|
|
|
|
|
+ <update id="updateByPrimaryKey" parameterType="com.sckw.transport.model.KwtLogisticsOrderGoods">
|
|
|
|
|
+ update kwt_logistics_order_goods
|
|
|
|
|
+ set l_order_id = #{lOrderId,jdbcType=BIGINT},
|
|
|
|
|
+ l_order_no = #{lOrderNo,jdbcType=VARCHAR},
|
|
|
|
|
+ goods_id = #{goodsId,jdbcType=BIGINT},
|
|
|
|
|
+ sku_id = #{skuId,jdbcType=BIGINT},
|
|
|
|
|
+ remark = #{remark,jdbcType=VARCHAR},
|
|
|
|
|
+ `status` = #{status,jdbcType=INTEGER},
|
|
|
|
|
+ create_by = #{createBy,jdbcType=BIGINT},
|
|
|
|
|
+ create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
|
|
|
+ update_by = #{updateBy,jdbcType=BIGINT},
|
|
|
|
|
+ update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
|
|
|
+ del_flag = #{delFlag,jdbcType=INTEGER}
|
|
|
|
|
+ where id = #{id,jdbcType=BIGINT}
|
|
|
|
|
+ </update>
|
|
|
|
|
+</mapper>
|