use of com.itrus.portal.db.KeyUnlockExample in project portal by ixinportal.
the class KeyUnlockServiceImpl method getKeyUnlockByBillId.
public KeyUnlock getKeyUnlockByBillId(Long billId) {
KeyUnlock keyUnlock = null;
KeyUnlockExample example = new KeyUnlockExample();
example.or().andBillEqualTo(billId);
keyUnlock = sqlSession.selectOne("com.itrus.portal.db.KeyUnlockMapper.selectByExample", example);
return keyUnlock;
}
Aggregations