use of com.itrus.portal.db.ServiceHallMapper in project portal by ixinportal.
the class ServiceHallServiceImpl method selectByPrimaryKey.
public ServiceHall selectByPrimaryKey(Long id) {
ServiceHallMapper mapper = sqlSession.getMapper(ServiceHallMapper.class);
ServiceHall serviceHall = mapper.selectByPrimaryKey(id);
return serviceHall;
}
use of com.itrus.portal.db.ServiceHallMapper in project portal by ixinportal.
the class ServiceHallServiceImpl method updateByPrimaryKey.
public void updateByPrimaryKey(ServiceHall serviceHall) throws Exception {
ServiceHallMapper mapper = sqlSession.getMapper(ServiceHallMapper.class);
mapper.updateByPrimaryKey(serviceHall);
sqlSession.flushStatements();
}
Aggregations