|
|
@@ -1,188 +1,44 @@
|
|
|
<?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.KwtLogisticsOrderCirculateMapper">
|
|
|
- <resultMap id="BaseResultMap" type="com.sckw.transport.model.KwtLogisticsOrderCirculate">
|
|
|
- <id column="id" jdbcType="BIGINT" property="id" />
|
|
|
- <result column="ent_id" jdbcType="BIGINT" property="entId" />
|
|
|
- <result column="order_id" jdbcType="BIGINT" property="orderId" />
|
|
|
- <result column="car_num" jdbcType="VARCHAR" property="carNum" />
|
|
|
- <result column="driver_id" jdbcType="BIGINT" property="driverId" />
|
|
|
- <result column="entrust_amount" jdbcType="DECIMAL" property="entrustAmount" />
|
|
|
- <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, ent_id, order_id, car_num, driver_id, entrust_amount, 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_circulate
|
|
|
- where id = #{id,jdbcType=BIGINT}
|
|
|
- </select>
|
|
|
- <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
|
- delete from kwt_logistics_order_circulate
|
|
|
- where id = #{id,jdbcType=BIGINT}
|
|
|
- </delete>
|
|
|
- <insert id="insert" parameterType="com.sckw.transport.model.KwtLogisticsOrderCirculate">
|
|
|
- insert into kwt_logistics_order_circulate (id, ent_id, order_id,
|
|
|
- car_num, driver_id, entrust_amount,
|
|
|
- remark, `status`, create_by,
|
|
|
- create_time, update_by, update_time,
|
|
|
- del_flag)
|
|
|
- values (#{id,jdbcType=BIGINT}, #{entId,jdbcType=BIGINT}, #{orderId,jdbcType=BIGINT},
|
|
|
- #{carNum,jdbcType=VARCHAR}, #{driverId,jdbcType=BIGINT}, #{entrustAmount,jdbcType=DECIMAL},
|
|
|
- #{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.KwtLogisticsOrderCirculate">
|
|
|
- insert into kwt_logistics_order_circulate
|
|
|
- <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
- <if test="id != null">
|
|
|
- id,
|
|
|
- </if>
|
|
|
- <if test="entId != null">
|
|
|
- ent_id,
|
|
|
- </if>
|
|
|
- <if test="orderId != null">
|
|
|
- order_id,
|
|
|
- </if>
|
|
|
- <if test="carNum != null">
|
|
|
- car_num,
|
|
|
- </if>
|
|
|
- <if test="driverId != null">
|
|
|
- driver_id,
|
|
|
- </if>
|
|
|
- <if test="entrustAmount != null">
|
|
|
- entrust_amount,
|
|
|
- </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="entId != null">
|
|
|
- #{entId,jdbcType=BIGINT},
|
|
|
- </if>
|
|
|
- <if test="orderId != null">
|
|
|
- #{orderId,jdbcType=BIGINT},
|
|
|
- </if>
|
|
|
- <if test="carNum != null">
|
|
|
- #{carNum,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
- <if test="driverId != null">
|
|
|
- #{driverId,jdbcType=BIGINT},
|
|
|
- </if>
|
|
|
- <if test="entrustAmount != null">
|
|
|
- #{entrustAmount,jdbcType=DECIMAL},
|
|
|
- </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.KwtLogisticsOrderCirculate">
|
|
|
- update kwt_logistics_order_circulate
|
|
|
- <set>
|
|
|
- <if test="entId != null">
|
|
|
- ent_id = #{entId,jdbcType=BIGINT},
|
|
|
- </if>
|
|
|
- <if test="orderId != null">
|
|
|
- order_id = #{orderId,jdbcType=BIGINT},
|
|
|
- </if>
|
|
|
- <if test="carNum != null">
|
|
|
- car_num = #{carNum,jdbcType=VARCHAR},
|
|
|
- </if>
|
|
|
- <if test="driverId != null">
|
|
|
- driver_id = #{driverId,jdbcType=BIGINT},
|
|
|
- </if>
|
|
|
- <if test="entrustAmount != null">
|
|
|
- entrust_amount = #{entrustAmount,jdbcType=DECIMAL},
|
|
|
- </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.KwtLogisticsOrderCirculate">
|
|
|
- update kwt_logistics_order_circulate
|
|
|
- set ent_id = #{entId,jdbcType=BIGINT},
|
|
|
- order_id = #{orderId,jdbcType=BIGINT},
|
|
|
- car_num = #{carNum,jdbcType=VARCHAR},
|
|
|
- driver_id = #{driverId,jdbcType=BIGINT},
|
|
|
- entrust_amount = #{entrustAmount,jdbcType=DECIMAL},
|
|
|
- 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>
|
|
|
+ <resultMap id="BaseResultMap" type="com.sckw.transport.model.KwtLogisticsOrderCirculate">
|
|
|
+ <id column="id" jdbcType="BIGINT" property="id" />
|
|
|
+ <result column="ent_id" jdbcType="BIGINT" property="entId" />
|
|
|
+ <result column="l_order_id" jdbcType="BIGINT" property="lOrderId" />
|
|
|
+ <result column="w_order_id" jdbcType="BIGINT" property="wOrderId" />
|
|
|
+ <result column="truck_no" jdbcType="VARCHAR" property="truckNo" />
|
|
|
+ <result column="driver_id" jdbcType="BIGINT" property="driverId" />
|
|
|
+ <result column="type" jdbcType="BIGINT" property="type" />
|
|
|
+ <result column="actual_amount" jdbcType="DECIMAL" property="actualAmount" />
|
|
|
+ <result column="entrust_amount" jdbcType="DECIMAL" property="entrustAmount" />
|
|
|
+ <result column="entrust_date" jdbcType="TIMESTAMP" property="entrustDate" />
|
|
|
+ <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, ent_id, l_order_id, w_order_id, truck_no,type, driver_id, actual_amount, entrust_amount,
|
|
|
+ entrust_date, remark, `status`, create_by, create_time, update_by, update_time, del_flag
|
|
|
+ </sql>
|
|
|
+ <select id="selectDriverOrderByStatus" resultType="java.lang.Long">
|
|
|
+ SELECT b.w_order_id as wOrderId
|
|
|
+ FROM kwt_waybill_order a
|
|
|
+ LEFT JOIN `kwt_logistics_order_circulate` b ON a.id = b.w_order_id
|
|
|
+ WHERE a.del_flag = '0'
|
|
|
+ AND b.`status` = '0'
|
|
|
+ AND a.type = '1'
|
|
|
+ <if test="id != null and id !=''">
|
|
|
+ and b.driver_id = #{id,jdbcType=BIGINT}
|
|
|
+ </if>
|
|
|
+ <if test="status != null and status.size() > 0">
|
|
|
+ AND a.`status` IN
|
|
|
+ <foreach collection="status" item="item" open="(" close=")" separator=",">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+ </select>
|
|
|
</mapper>
|