use of com.itrus.portal.db.ExtraProductSpecMapper in project portal by ixinportal.
the class ExtraProductSpecServiceImpl method selectByExample.
public List<ExtraProductSpec> selectByExample(ExtraProductSpecExample example) throws Exception {
ExtraProductSpecMapper mapper = sqlSession.getMapper(ExtraProductSpecMapper.class);
List<ExtraProductSpec> list = mapper.selectByExample(example);
return list;
}
use of com.itrus.portal.db.ExtraProductSpecMapper in project portal by ixinportal.
the class ExtraProductSpecServiceImpl method updateByPrimaryKeySelective.
public void updateByPrimaryKeySelective(ExtraProductSpec extraProductSpec) throws Exception {
ExtraProductSpecMapper mapper = sqlSession.getMapper(ExtraProductSpecMapper.class);
mapper.updateByPrimaryKeySelective(extraProductSpec);
sqlSession.flushStatements();
}
use of com.itrus.portal.db.ExtraProductSpecMapper in project portal by ixinportal.
the class ExtraProductSpecServiceImpl method updateByPrimaryKey.
public void updateByPrimaryKey(ExtraProductSpec extraProductSpec) throws Exception {
ExtraProductSpecMapper mapper = sqlSession.getMapper(ExtraProductSpecMapper.class);
mapper.updateByPrimaryKey(extraProductSpec);
sqlSession.flushStatements();
}
use of com.itrus.portal.db.ExtraProductSpecMapper in project portal by ixinportal.
the class ExtraProductSpecServiceImpl method selectByPrimaryKey.
public ExtraProductSpec selectByPrimaryKey(Long id) {
ExtraProductSpecMapper mapper = sqlSession.getMapper(ExtraProductSpecMapper.class);
ExtraProductSpec extraProductSpec = mapper.selectByPrimaryKey(id);
return extraProductSpec;
}
use of com.itrus.portal.db.ExtraProductSpecMapper in project portal by ixinportal.
the class ExtraProductSpecServiceImpl method deleteByPrimaryKey.
public void deleteByPrimaryKey(Long id) {
ExtraProductSpecMapper mapper = sqlSession.getMapper(ExtraProductSpecMapper.class);
mapper.deleteByPrimaryKey(id);
}
Aggregations