use of com.itrus.portal.db.ExtraBillMapper in project portal by ixinportal.
the class ExtraBillServiceImpl method updateByPrimaryKeySelective.
public void updateByPrimaryKeySelective(ExtraBill ExtraBill) throws Exception {
ExtraBillMapper mapper = sqlSession.getMapper(ExtraBillMapper.class);
mapper.updateByPrimaryKeySelective(ExtraBill);
sqlSession.flushStatements();
}
use of com.itrus.portal.db.ExtraBillMapper in project portal by ixinportal.
the class ExtraBillServiceImpl method updateByPrimaryKey.
public void updateByPrimaryKey(ExtraBill ExtraBill) throws Exception {
ExtraBillMapper mapper = sqlSession.getMapper(ExtraBillMapper.class);
mapper.updateByPrimaryKey(ExtraBill);
sqlSession.flushStatements();
}
use of com.itrus.portal.db.ExtraBillMapper in project portal by ixinportal.
the class ExtraBillServiceImpl method selectByPrimaryKey.
public ExtraBill selectByPrimaryKey(Long id) {
ExtraBillMapper mapper = sqlSession.getMapper(ExtraBillMapper.class);
ExtraBill ExtraBill = mapper.selectByPrimaryKey(id);
return ExtraBill;
}
use of com.itrus.portal.db.ExtraBillMapper in project portal by ixinportal.
the class ExtraBillServiceImpl method deleteByPrimaryKey.
public void deleteByPrimaryKey(Long id) {
ExtraBillMapper mapper = sqlSession.getMapper(ExtraBillMapper.class);
mapper.deleteByPrimaryKey(id);
}
use of com.itrus.portal.db.ExtraBillMapper in project portal by ixinportal.
the class ExtraBillServiceImpl method insert.
public ExtraBill insert(ExtraBill ExtraBill) throws Exception {
ExtraBillMapper mapper = sqlSession.getMapper(ExtraBillMapper.class);
mapper.insert(ExtraBill);
sqlSession.flushStatements();
return ExtraBill;
}
Aggregations