use of com.itrus.portal.db.ServiceProviderMapper in project portal by ixinportal.
the class ServiceProviderServiceImpl method updateByPrimaryKeySelective.
public void updateByPrimaryKeySelective(ServiceProvider serviceProvider) throws Exception {
ServiceProviderMapper mapper = sqlSession.getMapper(ServiceProviderMapper.class);
mapper.updateByPrimaryKeySelective(serviceProvider);
sqlSession.flushStatements();
}
use of com.itrus.portal.db.ServiceProviderMapper in project portal by ixinportal.
the class ServiceProviderServiceImpl method deleteByPrimaryKey.
public void deleteByPrimaryKey(Long id) {
ServiceProviderMapper mapper = sqlSession.getMapper(ServiceProviderMapper.class);
mapper.deleteByPrimaryKey(id);
}
Aggregations