Search in sources :

Example 1 with KeyUnlockExample

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;
}
Also used : KeyUnlock(com.itrus.portal.db.KeyUnlock) KeyUnlockExample(com.itrus.portal.db.KeyUnlockExample)

Aggregations

KeyUnlock (com.itrus.portal.db.KeyUnlock)1 KeyUnlockExample (com.itrus.portal.db.KeyUnlockExample)1