实际功率字段

This commit is contained in:
2023-03-03 15:02:10 +08:00
parent 2e72fb7df8
commit 333d076f6e
26 changed files with 85 additions and 78 deletions

View File

@@ -24,6 +24,14 @@
<select id="list" resultType="com.cnbm.packing.dto.ChangePackagingBoxHistoryDTO">
select * from t_change_packaging_box_history
<where>
<if test="startTime != null and endTime != null">
and create_time BETWEEN #{startTime} AND #{endTime}
</if>
<if test="type != null">
and type = #{type}
</if>
</where>
order by id asc
</select>