|
@@ -2,14 +2,12 @@
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.platform.dao.mapper.store.OutStoreFormMapper">
|
|
|
<sql id="Base_Column_List">
|
|
|
- outstoreform
|
|
|
- .
|
|
|
- id
|
|
|
- ,
|
|
|
+ outstoreform.id,
|
|
|
outstoreform.total_price,
|
|
|
outstoreform.out_no,
|
|
|
outstoreform.type,
|
|
|
outstoreform.yy_id,
|
|
|
+outstoreform.apply_user,outstoreform.apply_user_name,
|
|
|
outstoreform.yy_message,
|
|
|
outstoreform.pick_id,
|
|
|
outstoreform.pick_no,
|
|
@@ -28,13 +26,11 @@ outstoreform.process_instance_id,
|
|
|
outstoreform.update_time
|
|
|
</sql>
|
|
|
<sql id="Ref_Column_List">
|
|
|
- outstoreform
|
|
|
- .
|
|
|
- out_no
|
|
|
- ,
|
|
|
+ outstoreform.out_no,
|
|
|
outstoreform.total_price,
|
|
|
outstoreform.status,
|
|
|
outstoreform.yy_id,
|
|
|
+outstoreform.apply_user,outstoreform.apply_user_name,
|
|
|
outstoreform.yy_message,
|
|
|
outstoreform.type,
|
|
|
outstoreform.store_id,
|
|
@@ -59,6 +55,12 @@ outstoreform.process_instance_id,
|
|
|
<if test="storeId != null and storeId != ''">
|
|
|
and outstoreform.store_id = #{storeId}
|
|
|
</if>
|
|
|
+ <if test="applyUser != null and applyUser != ''">
|
|
|
+ and outstoreform.apply_user = #{applyUser}
|
|
|
+ </if>
|
|
|
+ <if test="applyUserName != null and applyUserName != ''">
|
|
|
+ and outstoreform.apply_user_name = #{applyUserName}
|
|
|
+ </if>
|
|
|
<if test="pickId != null and pickId != ''">
|
|
|
and outstoreform.pick_id = #{pickId}
|
|
|
</if>
|