| | |
| | | #{id} |
| | | </foreach> |
| | | </delete> |
| | | |
| | | <select id="getArdTankLockProcessLogByCarPlate" parameterType="java.lang.String" resultMap="ArdTankLockProcessLogResult"> |
| | | select * from ard_tank_lock_process_log where car_plate like #{carPlate} |
| | | order by process_time desc |
| | | </select> |
| | | |
| | | <select id="getArdTankLockProcessLogTotalByCarPlate" parameterType="java.lang.String" resultType="java.lang.Long"> |
| | | select count(*) from ard_tank_lock_process_log where car_plate like #{carPlate} |
| | | </select> |
| | | |
| | | <select id="getArdTankLockProcessLogAll" parameterType="java.lang.String" resultMap="ArdTankLockProcessLogResult"> |
| | | select * from ard_tank_lock_process_log order by process_time desc |
| | | </select> |
| | | |
| | | <select id="getArdTankLockProcessLogTotal" parameterType="java.lang.String" resultType="java.lang.Long"> |
| | | select count(*) from ard_tank_lock_process_log |
| | | </select> |
| | | </mapper> |