Search in sources :

Example 1 with IxinUkeyRegrecordExample

use of com.itrus.portal.db.IxinUkeyRegrecordExample in project portal by ixinportal.

the class IxinUkeyRegrecordServiceImpl method selectByCertSn.

/**
 * 根据证书序列号,获取记录
 * @param certSn
 * @return
 */
public IxinUkeyRegrecord selectByCertSn(String certSn) {
    IxinUkeyRegrecordExample example = new IxinUkeyRegrecordExample();
    IxinUkeyRegrecordExample.Criteria criteria = example.or();
    criteria.andCertSnEqualTo(certSn);
    IxinUkeyRegrecord ixinUkeyRegrecord = sqlSession.selectOne("com.itrus.portal.db.IxinUkeyRegrecordMapper.selectByExample", example);
    return ixinUkeyRegrecord;
}
Also used : IxinUkeyRegrecordExample(com.itrus.portal.db.IxinUkeyRegrecordExample) IxinUkeyRegrecord(com.itrus.portal.db.IxinUkeyRegrecord)

Aggregations

IxinUkeyRegrecord (com.itrus.portal.db.IxinUkeyRegrecord)1 IxinUkeyRegrecordExample (com.itrus.portal.db.IxinUkeyRegrecordExample)1