51,411
社区成员
发帖
与我相关
我的任务
分享carInfo=carInfoService.findByProperty("infoLpn", carApply.getCarLpn()).get(0);
carInfo.setInfoCarstate("忙碌");
carInfoService.save(carInfo);
String driverName = request.getParameter("carDriver.drivereName");
carApply.setCarDriver(driverName);
carApply.setState("待审核");
flag = CarApplyService.save(carApply);private Session getSession() {
return sessionFactory.getCurrentSession();
}