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;
}
Aggregations