|
@@ -114,6 +114,9 @@
|
|
|
<result column="IS_PRE_SCALE" jdbcType="VARCHAR" property="isPreScale" />
|
|
<result column="IS_PRE_SCALE" jdbcType="VARCHAR" property="isPreScale" />
|
|
|
<result column="BOUND_LIST_URL" jdbcType="VARCHAR" property="boundListUrl" />
|
|
<result column="BOUND_LIST_URL" jdbcType="VARCHAR" property="boundListUrl" />
|
|
|
<result column="IS_BOUND_LIST" jdbcType="VARCHAR" property="isBoundList" />
|
|
<result column="IS_BOUND_LIST" jdbcType="VARCHAR" property="isBoundList" />
|
|
|
|
|
+ <result column="CONTRACT_ID" jdbcType="VARCHAR" property="contractId" />
|
|
|
|
|
+ <result column="IS_BOUND_LIST_DOWNLOADED" jdbcType="VARCHAR" property="isBoundListDownloaded" />
|
|
|
|
|
+ <result column="DOCUMENT_ID" jdbcType="VARCHAR" property="documentId" />
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
<sql id="columns">
|
|
<sql id="columns">
|
|
|
ACTUAL_NO, PREDICTION_NO, NOTICE_NO, CAR_NO, TRAILER_NO, MATTER_NO, MATTER_NAME,
|
|
ACTUAL_NO, PREDICTION_NO, NOTICE_NO, CAR_NO, TRAILER_NO, MATTER_NO, MATTER_NAME,
|
|
@@ -134,7 +137,8 @@
|
|
|
RESOURCE_SYSTEM, GROUP_PACKAGE_AMOUNT, GROUP_PACKAGE_UNIT, PACKAGE_AMOUNT, PACKAGE_UNIT,
|
|
RESOURCE_SYSTEM, GROUP_PACKAGE_AMOUNT, GROUP_PACKAGE_UNIT, PACKAGE_AMOUNT, PACKAGE_UNIT,
|
|
|
THEORY_AMOUNT, MEASURE_BATCH, MEASURE_BATCH_COUNT, SENDER_TYPE, SENDER_REMARK, RECEIVER_TYPE,
|
|
THEORY_AMOUNT, MEASURE_BATCH, MEASURE_BATCH_COUNT, SENDER_TYPE, SENDER_REMARK, RECEIVER_TYPE,
|
|
|
RECEIVER_REMARK, AMOUNT_UNIT, MEASURE_OBJECT_TYPE, MEASURE_TASK_NUM, BILL_TYPE, CREATE_MAN_NAME,
|
|
RECEIVER_REMARK, AMOUNT_UNIT, MEASURE_OBJECT_TYPE, MEASURE_TASK_NUM, BILL_TYPE, CREATE_MAN_NAME,
|
|
|
- CREATE_TIME, DATA_SOURCE, IS_PRE_SCALE, BOUND_LIST_URL, IS_BOUND_LIST
|
|
|
|
|
|
|
+ CREATE_TIME, DATA_SOURCE, IS_PRE_SCALE, BOUND_LIST_URL, IS_BOUND_LIST, CONTRACT_ID,
|
|
|
|
|
+ IS_BOUND_LIST_DOWNLOADED, DOCUMENT_ID
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="columns_alias">
|
|
<sql id="columns_alias">
|
|
|
t.ACTUAL_NO, t.PREDICTION_NO, t.NOTICE_NO, t.CAR_NO, t.TRAILER_NO, t.MATTER_NO, t.MATTER_NAME,
|
|
t.ACTUAL_NO, t.PREDICTION_NO, t.NOTICE_NO, t.CAR_NO, t.TRAILER_NO, t.MATTER_NO, t.MATTER_NAME,
|
|
@@ -157,7 +161,8 @@
|
|
|
t.GROUP_PACKAGE_UNIT, t.PACKAGE_AMOUNT, t.PACKAGE_UNIT, t.THEORY_AMOUNT, t.MEASURE_BATCH,
|
|
t.GROUP_PACKAGE_UNIT, t.PACKAGE_AMOUNT, t.PACKAGE_UNIT, t.THEORY_AMOUNT, t.MEASURE_BATCH,
|
|
|
t.MEASURE_BATCH_COUNT, t.SENDER_TYPE, t.SENDER_REMARK, t.RECEIVER_TYPE, t.RECEIVER_REMARK,
|
|
t.MEASURE_BATCH_COUNT, t.SENDER_TYPE, t.SENDER_REMARK, t.RECEIVER_TYPE, t.RECEIVER_REMARK,
|
|
|
t.AMOUNT_UNIT, t.MEASURE_OBJECT_TYPE, t.MEASURE_TASK_NUM, t.BILL_TYPE, t.CREATE_MAN_NAME,
|
|
t.AMOUNT_UNIT, t.MEASURE_OBJECT_TYPE, t.MEASURE_TASK_NUM, t.BILL_TYPE, t.CREATE_MAN_NAME,
|
|
|
- t.CREATE_TIME, t.DATA_SOURCE, t.IS_PRE_SCALE, t.BOUND_LIST_URL, t.IS_BOUND_LIST
|
|
|
|
|
|
|
+ t.CREATE_TIME, t.DATA_SOURCE, t.IS_PRE_SCALE, t.BOUND_LIST_URL, t.IS_BOUND_LIST,
|
|
|
|
|
+ t.CONTRACT_ID, t.IS_BOUND_LIST_DOWNLOADED, t.DOCUMENT_ID
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="select">
|
|
<sql id="select">
|
|
|
SELECT <include refid="columns" /> FROM METER_WORK_CAR_ACTUAL
|
|
SELECT <include refid="columns" /> FROM METER_WORK_CAR_ACTUAL
|
|
@@ -503,6 +508,15 @@
|
|
|
<if test="isBoundList != null and isBoundList != ''">
|
|
<if test="isBoundList != null and isBoundList != ''">
|
|
|
and IS_BOUND_LIST = #{isBoundList}
|
|
and IS_BOUND_LIST = #{isBoundList}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="contractId != null and contractId != ''">
|
|
|
|
|
+ and CONTRACT_ID = #{contractId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="isBoundListDownloaded != null and isBoundListDownloaded != ''">
|
|
|
|
|
+ and IS_BOUND_LIST_DOWNLOADED = #{isBoundListDownloaded}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="documentId != null and documentId != ''">
|
|
|
|
|
+ and DOCUMENT_ID = #{documentId}
|
|
|
|
|
+ </if>
|
|
|
</where>
|
|
</where>
|
|
|
</sql>
|
|
</sql>
|
|
|
<sql id="whereLike">
|
|
<sql id="whereLike">
|
|
@@ -843,6 +857,15 @@
|
|
|
<if test="isBoundList != null and isBoundList != ''">
|
|
<if test="isBoundList != null and isBoundList != ''">
|
|
|
and IS_BOUND_LIST LIKE '%${isBoundList}%'
|
|
and IS_BOUND_LIST LIKE '%${isBoundList}%'
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="contractId != null and contractId != ''">
|
|
|
|
|
+ and CONTRACT_ID LIKE '%${contractId}%'
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="isBoundListDownloaded != null and isBoundListDownloaded != ''">
|
|
|
|
|
+ and IS_BOUND_LIST_DOWNLOADED LIKE '%${isBoundListDownloaded}%'
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="documentId != null and documentId != ''">
|
|
|
|
|
+ and DOCUMENT_ID LIKE '%${documentId}%'
|
|
|
|
|
+ </if>
|
|
|
</where>
|
|
</where>
|
|
|
</sql>
|
|
</sql>
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
|
@@ -1185,6 +1208,15 @@
|
|
|
<if test="isBoundList != null and isBoundList != ''">
|
|
<if test="isBoundList != null and isBoundList != ''">
|
|
|
or IS_BOUND_LIST = #{isBoundList}
|
|
or IS_BOUND_LIST = #{isBoundList}
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="contractId != null and contractId != ''">
|
|
|
|
|
+ or CONTRACT_ID = #{contractId}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="isBoundListDownloaded != null and isBoundListDownloaded != ''">
|
|
|
|
|
+ or IS_BOUND_LIST_DOWNLOADED = #{isBoundListDownloaded}
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="documentId != null and documentId != ''">
|
|
|
|
|
+ or DOCUMENT_ID = #{documentId}
|
|
|
|
|
+ </if>
|
|
|
</delete>
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.steerinfo.meterwork.meterworkcaractual.model.MeterWorkCarActual">
|
|
<insert id="insert" parameterType="com.steerinfo.meterwork.meterworkcaractual.model.MeterWorkCarActual">
|
|
|
insert into METER_WORK_CAR_ACTUAL (ACTUAL_NO, PREDICTION_NO, NOTICE_NO,
|
|
insert into METER_WORK_CAR_ACTUAL (ACTUAL_NO, PREDICTION_NO, NOTICE_NO,
|
|
@@ -1224,7 +1256,8 @@
|
|
|
RECEIVER_REMARK, AMOUNT_UNIT, MEASURE_OBJECT_TYPE,
|
|
RECEIVER_REMARK, AMOUNT_UNIT, MEASURE_OBJECT_TYPE,
|
|
|
MEASURE_TASK_NUM, BILL_TYPE, CREATE_MAN_NAME,
|
|
MEASURE_TASK_NUM, BILL_TYPE, CREATE_MAN_NAME,
|
|
|
CREATE_TIME, DATA_SOURCE, IS_PRE_SCALE,
|
|
CREATE_TIME, DATA_SOURCE, IS_PRE_SCALE,
|
|
|
- BOUND_LIST_URL, IS_BOUND_LIST)
|
|
|
|
|
|
|
+ BOUND_LIST_URL, IS_BOUND_LIST, CONTRACT_ID,
|
|
|
|
|
+ IS_BOUND_LIST_DOWNLOADED, DOCUMENT_ID)
|
|
|
values (#{actualNo,jdbcType=VARCHAR}, #{predictionNo,jdbcType=VARCHAR}, #{noticeNo,jdbcType=VARCHAR},
|
|
values (#{actualNo,jdbcType=VARCHAR}, #{predictionNo,jdbcType=VARCHAR}, #{noticeNo,jdbcType=VARCHAR},
|
|
|
#{carNo,jdbcType=VARCHAR}, #{trailerNo,jdbcType=VARCHAR}, #{matterNo,jdbcType=VARCHAR},
|
|
#{carNo,jdbcType=VARCHAR}, #{trailerNo,jdbcType=VARCHAR}, #{matterNo,jdbcType=VARCHAR},
|
|
|
#{matterName,jdbcType=VARCHAR}, #{contractNo,jdbcType=VARCHAR}, #{batchNo,jdbcType=VARCHAR},
|
|
#{matterName,jdbcType=VARCHAR}, #{contractNo,jdbcType=VARCHAR}, #{batchNo,jdbcType=VARCHAR},
|
|
@@ -1262,7 +1295,8 @@
|
|
|
#{receiverRemark,jdbcType=VARCHAR}, #{amountUnit,jdbcType=VARCHAR}, #{measureObjectType,jdbcType=VARCHAR},
|
|
#{receiverRemark,jdbcType=VARCHAR}, #{amountUnit,jdbcType=VARCHAR}, #{measureObjectType,jdbcType=VARCHAR},
|
|
|
#{measureTaskNum,jdbcType=VARCHAR}, #{billType,jdbcType=VARCHAR}, #{createManName,jdbcType=VARCHAR},
|
|
#{measureTaskNum,jdbcType=VARCHAR}, #{billType,jdbcType=VARCHAR}, #{createManName,jdbcType=VARCHAR},
|
|
|
#{createTime,jdbcType=TIMESTAMP}, #{dataSource,jdbcType=VARCHAR}, #{isPreScale,jdbcType=VARCHAR},
|
|
#{createTime,jdbcType=TIMESTAMP}, #{dataSource,jdbcType=VARCHAR}, #{isPreScale,jdbcType=VARCHAR},
|
|
|
- #{boundListUrl,jdbcType=VARCHAR}, #{isBoundList,jdbcType=VARCHAR})
|
|
|
|
|
|
|
+ #{boundListUrl,jdbcType=VARCHAR}, #{isBoundList,jdbcType=VARCHAR}, #{contractId,jdbcType=VARCHAR},
|
|
|
|
|
+ #{isBoundListDownloaded,jdbcType=VARCHAR}, #{documentId,jdbcType=VARCHAR})
|
|
|
</insert>
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.steerinfo.meterwork.meterworkcaractual.model.MeterWorkCarActual">
|
|
<insert id="insertSelective" parameterType="com.steerinfo.meterwork.meterworkcaractual.model.MeterWorkCarActual">
|
|
|
insert into METER_WORK_CAR_ACTUAL
|
|
insert into METER_WORK_CAR_ACTUAL
|
|
@@ -1603,6 +1637,15 @@
|
|
|
<if test="isBoundList != null">
|
|
<if test="isBoundList != null">
|
|
|
IS_BOUND_LIST,
|
|
IS_BOUND_LIST,
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="contractId != null">
|
|
|
|
|
+ CONTRACT_ID,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="isBoundListDownloaded != null">
|
|
|
|
|
+ IS_BOUND_LIST_DOWNLOADED,
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="documentId != null">
|
|
|
|
|
+ DOCUMENT_ID,
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="actualNo != null">
|
|
<if test="actualNo != null">
|
|
@@ -1941,6 +1984,15 @@
|
|
|
<if test="isBoundList != null">
|
|
<if test="isBoundList != null">
|
|
|
#{isBoundList,jdbcType=VARCHAR},
|
|
#{isBoundList,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="contractId != null">
|
|
|
|
|
+ #{contractId,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="isBoundListDownloaded != null">
|
|
|
|
|
+ #{isBoundListDownloaded,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="documentId != null">
|
|
|
|
|
+ #{documentId,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
</insert>
|
|
</insert>
|
|
|
<update id="updateByPrimaryKey" parameterType="com.steerinfo.meterwork.meterworkcaractual.model.MeterWorkCarActual">
|
|
<update id="updateByPrimaryKey" parameterType="com.steerinfo.meterwork.meterworkcaractual.model.MeterWorkCarActual">
|
|
@@ -2055,7 +2107,10 @@
|
|
|
DATA_SOURCE = #{dataSource,jdbcType=VARCHAR},
|
|
DATA_SOURCE = #{dataSource,jdbcType=VARCHAR},
|
|
|
IS_PRE_SCALE = #{isPreScale,jdbcType=VARCHAR},
|
|
IS_PRE_SCALE = #{isPreScale,jdbcType=VARCHAR},
|
|
|
BOUND_LIST_URL = #{boundListUrl,jdbcType=VARCHAR},
|
|
BOUND_LIST_URL = #{boundListUrl,jdbcType=VARCHAR},
|
|
|
- IS_BOUND_LIST = #{isBoundList,jdbcType=VARCHAR}
|
|
|
|
|
|
|
+ IS_BOUND_LIST = #{isBoundList,jdbcType=VARCHAR},
|
|
|
|
|
+ CONTRACT_ID = #{contractId,jdbcType=VARCHAR},
|
|
|
|
|
+ IS_BOUND_LIST_DOWNLOADED = #{isBoundListDownloaded,jdbcType=VARCHAR},
|
|
|
|
|
+ DOCUMENT_ID = #{documentId,jdbcType=VARCHAR}
|
|
|
where ACTUAL_NO = #{actualNo,jdbcType=VARCHAR}
|
|
where ACTUAL_NO = #{actualNo,jdbcType=VARCHAR}
|
|
|
</update>
|
|
</update>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.meterwork.meterworkcaractual.model.MeterWorkCarActual">
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.steerinfo.meterwork.meterworkcaractual.model.MeterWorkCarActual">
|
|
@@ -2394,6 +2449,15 @@
|
|
|
<if test="isBoundList != null">
|
|
<if test="isBoundList != null">
|
|
|
IS_BOUND_LIST = #{isBoundList,jdbcType=VARCHAR},
|
|
IS_BOUND_LIST = #{isBoundList,jdbcType=VARCHAR},
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="contractId != null">
|
|
|
|
|
+ CONTRACT_ID = #{contractId,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="isBoundListDownloaded != null">
|
|
|
|
|
+ IS_BOUND_LIST_DOWNLOADED = #{isBoundListDownloaded,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="documentId != null">
|
|
|
|
|
+ DOCUMENT_ID = #{documentId,jdbcType=VARCHAR},
|
|
|
|
|
+ </if>
|
|
|
</set>
|
|
</set>
|
|
|
where ACTUAL_NO = #{actualNo,jdbcType=VARCHAR}
|
|
where ACTUAL_NO = #{actualNo,jdbcType=VARCHAR}
|
|
|
</update>
|
|
</update>
|
|
@@ -2453,7 +2517,9 @@
|
|
|
RECEIVER_REMARK, AMOUNT_UNIT, MEASURE_OBJECT_TYPE,
|
|
RECEIVER_REMARK, AMOUNT_UNIT, MEASURE_OBJECT_TYPE,
|
|
|
MEASURE_TASK_NUM, BILL_TYPE, CREATE_MAN_NAME,
|
|
MEASURE_TASK_NUM, BILL_TYPE, CREATE_MAN_NAME,
|
|
|
CREATE_TIME, DATA_SOURCE, IS_PRE_SCALE,
|
|
CREATE_TIME, DATA_SOURCE, IS_PRE_SCALE,
|
|
|
- BOUND_LIST_URL, IS_BOUND_LIST)
|
|
|
|
|
|
|
+ BOUND_LIST_URL, IS_BOUND_LIST, CONTRACT_ID,
|
|
|
|
|
+ IS_BOUND_LIST_DOWNLOADED, DOCUMENT_ID
|
|
|
|
|
+ )
|
|
|
( <foreach collection="list" item="item" separator="union all">
|
|
( <foreach collection="list" item="item" separator="union all">
|
|
|
select
|
|
select
|
|
|
#{item.actualNo,jdbcType=VARCHAR},
|
|
#{item.actualNo,jdbcType=VARCHAR},
|
|
@@ -2498,7 +2564,9 @@
|
|
|
#{item.receiverRemark,jdbcType=VARCHAR}, #{item.amountUnit,jdbcType=VARCHAR}, #{item.measureObjectType,jdbcType=VARCHAR},
|
|
#{item.receiverRemark,jdbcType=VARCHAR}, #{item.amountUnit,jdbcType=VARCHAR}, #{item.measureObjectType,jdbcType=VARCHAR},
|
|
|
#{item.measureTaskNum,jdbcType=VARCHAR}, #{item.billType,jdbcType=VARCHAR}, #{item.createManName,jdbcType=VARCHAR},
|
|
#{item.measureTaskNum,jdbcType=VARCHAR}, #{item.billType,jdbcType=VARCHAR}, #{item.createManName,jdbcType=VARCHAR},
|
|
|
#{item.createTime,jdbcType=TIMESTAMP}, #{item.dataSource,jdbcType=VARCHAR}, #{item.isPreScale,jdbcType=VARCHAR},
|
|
#{item.createTime,jdbcType=TIMESTAMP}, #{item.dataSource,jdbcType=VARCHAR}, #{item.isPreScale,jdbcType=VARCHAR},
|
|
|
- #{item.boundListUrl,jdbcType=VARCHAR}, #{item.isBoundList,jdbcType=VARCHAR} from dual
|
|
|
|
|
|
|
+ #{item.boundListUrl,jdbcType=VARCHAR}, #{item.isBoundList,jdbcType=VARCHAR}, #{item.contractId,jdbcType=VARCHAR},
|
|
|
|
|
+ #{item.isBoundListDownloaded,jdbcType=VARCHAR}, #{item.documentId,jdbcType=VARCHAR}
|
|
|
|
|
+ from dual
|
|
|
</foreach> )
|
|
</foreach> )
|
|
|
</insert>
|
|
</insert>
|
|
|
<update id="batchUpdate" parameterType="java.util.List">
|
|
<update id="batchUpdate" parameterType="java.util.List">
|
|
@@ -2952,6 +3020,18 @@
|
|
|
<foreach close="end" collection="list" index="index" item="item" open="case ACTUAL_NO" separator=" ">
|
|
<foreach close="end" collection="list" index="index" item="item" open="case ACTUAL_NO" separator=" ">
|
|
|
when #{item.actualNo,jdbcType=VARCHAR} then #{item.isBoundList,jdbcType=VARCHAR}
|
|
when #{item.actualNo,jdbcType=VARCHAR} then #{item.isBoundList,jdbcType=VARCHAR}
|
|
|
</foreach>
|
|
</foreach>
|
|
|
|
|
+ ,CONTRACT_ID=
|
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case ACTUAL_NO" separator=" ">
|
|
|
|
|
+ when #{item.actualNo,jdbcType=VARCHAR} then #{item.contractId,jdbcType=VARCHAR}
|
|
|
|
|
+ </foreach>
|
|
|
|
|
+ ,IS_BOUND_LIST_DOWNLOADED=
|
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case ACTUAL_NO" separator=" ">
|
|
|
|
|
+ when #{item.actualNo,jdbcType=VARCHAR} then #{item.isBoundListDownloaded,jdbcType=VARCHAR}
|
|
|
|
|
+ </foreach>
|
|
|
|
|
+ ,DOCUMENT_ID=
|
|
|
|
|
+ <foreach close="end" collection="list" index="index" item="item" open="case ACTUAL_NO" separator=" ">
|
|
|
|
|
+ when #{item.actualNo,jdbcType=VARCHAR} then #{item.documentId,jdbcType=VARCHAR}
|
|
|
|
|
+ </foreach>
|
|
|
where ACTUAL_NO in
|
|
where ACTUAL_NO in
|
|
|
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
<foreach close=")" collection="list" index="index" item="item" open="(" separator=",">
|
|
|
#{item.actualNo,jdbcType=VARCHAR}
|
|
#{item.actualNo,jdbcType=VARCHAR}
|
|
@@ -2966,7 +3046,6 @@
|
|
|
</delete>
|
|
</delete>
|
|
|
<!-- 友情提示!!!-->
|
|
<!-- 友情提示!!!-->
|
|
|
<!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
|
|
<!-- 请将自己写的代码放在此标签之下,方便以后粘贴复制。-->
|
|
|
-
|
|
|
|
|
<sql id="whereTime">
|
|
<sql id="whereTime">
|
|
|
<where>
|
|
<where>
|
|
|
<if test="startTime != null and endTime != null and startTime != '' and endTime != ''">
|
|
<if test="startTime != null and endTime != null and startTime != '' and endTime != ''">
|
|
@@ -3484,4 +3563,5 @@
|
|
|
and value_flag != '0'
|
|
and value_flag != '0'
|
|
|
order by ACTUAL_NO desc
|
|
order by ACTUAL_NO desc
|
|
|
</select>
|
|
</select>
|
|
|
|
|
+
|
|
|
</mapper>
|
|
</mapper>
|