Commit a9dcdb5a authored by jiaorz's avatar jiaorz

修改车辆管理提示语

parent bc26c0a6
......@@ -58,7 +58,6 @@ public class VehicleActiveService {
*
* @param departureVo
*/
@Transactional(rollbackFor = RuntimeException.class)
public void departure(VehicleDepartureVo departureVo) {
try {
Vehicle vehicle = vehicleMapper.selectByPrimaryKey(departureVo.getVehicleId());
......@@ -192,7 +191,6 @@ public class VehicleActiveService {
return stringBuilder.toString();
}
@Transactional(rollbackFor = RuntimeException.class)
public void arrival(VehicleArrivalVo arrivalVo) {
try {
Vehicle vehicle = vehicleMapper.selectByPrimaryKey(arrivalVo.getVehicleId());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment