# decryptSn 解密sn

# Attributes

属性 类型 必要 默认值 说明
cryptSnStr String Y 需要解密的sn

# 调用示例

window.bridge.decryptSn({cryptSnStr: sn},res=>{})

# callback

属性 类型 必要 默认值 说明
code Number Y 返回状态 0成功 -1失败
decryptSnStr String Y 解密的sn

# 接口返回示例

{
    code:0,
    decryptSnStr:''
}