spring mybatis 调用存储过程

~controler层:

在xxx方法里:

 HashMap map = new HashMap();
 map.put("argHotelGroupId", hotelGroupId);
 map.put("argHotelId", hotelId);
 map.put("argHotelCode", hotelCode);
   
 systemService.upRoom(map);


~service层:

@Transactional(readOnly = false)
public void upRoom(HashMap map){

userDao.upImportRoom(map);
}


~Dao层:

public void upImportRoom(HashMap map);


~mapper.xml:




       
       
     
         
     
 

你可能感兴趣的:(spring mybatis 调用存储过程)