|
|
@@ -56,6 +56,12 @@
|
|
|
<if test="dto.newMaterialsRfid != null and dto.newMaterialsRfid.trim != ''">
|
|
|
and c.new_materials_rfid like concat('%',#{dto.newMaterialsRfid},'%')
|
|
|
</if>
|
|
|
+ <if test="dto.operateType != null and dto.operateType.trim != '' and dto.operateType == 3">
|
|
|
+ and c.operate_type = '3'
|
|
|
+ </if>
|
|
|
+ <if test="dto.operateType != null and dto.operateType.trim != '' and dto.operateType == 4">
|
|
|
+ and c.operate_type != '3'
|
|
|
+ </if>
|
|
|
</where>
|
|
|
order by c.change_id desc
|
|
|
</select>
|