|
@@ -2771,9 +2771,24 @@
|
|
|
<if test="materialName != null and materialName != ''">
|
|
<if test="materialName != null and materialName != ''">
|
|
|
and MATERIAL_NAME LIKE '%${materialName}%'
|
|
and MATERIAL_NAME LIKE '%${materialName}%'
|
|
|
</if>
|
|
</if>
|
|
|
|
|
+ <if test="updateManNo != null and updateManNo != ''">
|
|
|
|
|
+ and UPDATE_MAN_NO LIKE '%${updateManNo}%'
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="updateManName != null and updateManName != ''">
|
|
|
|
|
+ and UPDATE_MAN_NAME LIKE '%${updateManName}'
|
|
|
|
|
+ </if>
|
|
|
|
|
+ <if test="createManName != null and createManName != ''">
|
|
|
|
|
+ and CREATE_MAN_NAME LIKE '%${createManName}%'
|
|
|
|
|
+ </if>
|
|
|
<if test="startTime != null and endTime != null and startTime != '' and endTime != ''">
|
|
<if test="startTime != null and endTime != null and startTime != '' and endTime != ''">
|
|
|
and NET_TIME >= TO_DATE(#{startTime}, 'yyyy-MM-dd HH24:mi:ss') and NET_TIME <= TO_DATE(#{endTime}, 'yyyy-MM-dd HH24:mi:ss')
|
|
and NET_TIME >= TO_DATE(#{startTime}, 'yyyy-MM-dd HH24:mi:ss') and NET_TIME <= TO_DATE(#{endTime}, 'yyyy-MM-dd HH24:mi:ss')
|
|
|
</if>
|
|
</if>
|
|
|
order by net_time desc
|
|
order by net_time desc
|
|
|
</select>
|
|
</select>
|
|
|
|
|
+
|
|
|
|
|
+ <select id="getCreateManNo" parameterType="java.util.HashMap" resultType="String">
|
|
|
|
|
+ select distinct create_man_name
|
|
|
|
|
+ from METER_WORK_MEASURING_INSTRUMENT
|
|
|
|
|
+ group by create_man_name
|
|
|
|
|
+ </select>
|
|
|
</mapper>
|
|
</mapper>
|