| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <?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="goods_name" jdbcType="VARCHAR" property="goodsName" />
- <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,goods_name
- </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>
- <select id="findByGoods" resultType="com.sckw.transport.model.KwtLogisticsOrderGoods" >
- SELECT
- id, l_order_id lOrderId, l_order_no lOrderNo, goods_id goodsId, goods_name goodsName, sku_id skuId,
- remark, `status`, create_by createBy, create_time createTime, update_by updateBy, update_time updateTime
- from kwt_logistics_order_goods
- where del_flag = 0
- and l_order_id = #{lOrderId, jdbcType=BIGINT}
- </select>
- </mapper>
|