Search in sources :

Example 6 with ServiceHallMapper

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;
}
Also used : ServiceHall(com.itrus.portal.db.ServiceHall) ServiceHallMapper(com.itrus.portal.db.ServiceHallMapper)

Example 7 with ServiceHallMapper

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();
}
Also used : ServiceHallMapper(com.itrus.portal.db.ServiceHallMapper)

Aggregations

ServiceHallMapper (com.itrus.portal.db.ServiceHallMapper)7 ServiceHall (com.itrus.portal.db.ServiceHall)2