use of com.itrus.portal.db.ExtraProductReleaseMapper in project portal by ixinportal.
the class ExtraProductReleaseServiceImpl method selectByPrimaryKey.
public ExtraProductRelease selectByPrimaryKey(Long id) {
ExtraProductReleaseMapper mapper = sqlSession.getMapper(ExtraProductReleaseMapper.class);
ExtraProductRelease extraProductRelease = mapper.selectByPrimaryKey(id);
return extraProductRelease;
}
use of com.itrus.portal.db.ExtraProductReleaseMapper in project portal by ixinportal.
the class ExtraProductReleaseServiceImpl method updateByPrimaryKey.
public void updateByPrimaryKey(ExtraProductRelease extraProductRelease) throws Exception {
ExtraProductReleaseMapper mapper = sqlSession.getMapper(ExtraProductReleaseMapper.class);
mapper.updateByPrimaryKey(extraProductRelease);
sqlSession.flushStatements();
}
use of com.itrus.portal.db.ExtraProductReleaseMapper in project portal by ixinportal.
the class ExtraProductReleaseServiceImpl method deleteByPrimaryKey.
public void deleteByPrimaryKey(Long id) {
ExtraProductReleaseMapper mapper = sqlSession.getMapper(ExtraProductReleaseMapper.class);
mapper.deleteByPrimaryKey(id);
}
use of com.itrus.portal.db.ExtraProductReleaseMapper in project portal by ixinportal.
the class ExtraProductReleaseServiceImpl method updateByPrimaryKeySelective.
public void updateByPrimaryKeySelective(ExtraProductRelease extraProductRelease) throws Exception {
ExtraProductReleaseMapper mapper = sqlSession.getMapper(ExtraProductReleaseMapper.class);
mapper.updateByPrimaryKeySelective(extraProductRelease);
sqlSession.flushStatements();
}
use of com.itrus.portal.db.ExtraProductReleaseMapper in project portal by ixinportal.
the class ExtraProductReleaseServiceImpl method countByExample.
public Integer countByExample(ExtraProductReleaseExample example) {
ExtraProductReleaseMapper mapper = sqlSession.getMapper(ExtraProductReleaseMapper.class);
Integer count = mapper.countByExample(example);
return count;
}
Aggregations