DecryptMapper.java 277 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.zehong.system.mapper;

import com.zehong.system.domain.keyInformation;
import org.apache.ibatis.annotations.Mapper;

@Mapper
public interface DecryptMapper {

    /**
     * 查询企业秘钥
     * @param qybm
     */
    keyInformation selectkey(String qybm);
}