Search in sources :

Example 6 with ExtraProductMapper

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

Example 7 with ExtraProductMapper

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

Aggregations

ExtraProductMapper (com.itrus.portal.db.ExtraProductMapper)7 ExtraProduct (com.itrus.portal.db.ExtraProduct)2