use of com.itrus.portal.db.ExtraProductMapper in project portal by ixinportal.
the class ExtraProductServiceImpl method insert.
public ExtraProduct insert(ExtraProduct extraProduct) throws Exception {
ExtraProductMapper mapper = sqlSession.getMapper(ExtraProductMapper.class);
mapper.insert(extraProduct);
sqlSession.flushStatements();
return extraProduct;
}
use of com.itrus.portal.db.ExtraProductMapper in project portal by ixinportal.
the class ExtraProductServiceImpl method selectByPrimaryKey.
public ExtraProduct selectByPrimaryKey(Long id) {
ExtraProductMapper mapper = sqlSession.getMapper(ExtraProductMapper.class);
ExtraProduct extraProduct = mapper.selectByPrimaryKey(id);
return extraProduct;
}
Aggregations