Search in sources :

Example 6 with ExtraProductSpecMapper

use of com.itrus.portal.db.ExtraProductSpecMapper in project portal by ixinportal.

the class ExtraProductSpecServiceImpl method insert.

public ExtraProductSpec insert(ExtraProductSpec extraProductSpec) throws Exception {
    ExtraProductSpecMapper mapper = sqlSession.getMapper(ExtraProductSpecMapper.class);
    mapper.insert(extraProductSpec);
    sqlSession.flushStatements();
    return extraProductSpec;
}
Also used : ExtraProductSpecMapper(com.itrus.portal.db.ExtraProductSpecMapper)

Aggregations

ExtraProductSpecMapper (com.itrus.portal.db.ExtraProductSpecMapper)6 ExtraProductSpec (com.itrus.portal.db.ExtraProductSpec)2