xiaoxuan
xiaoxuan
可以将代码里的数据库类型映射JavaTypeEnum中的varchar(4096)改成text
master分支 下面是合约源码 pragma solidity >=0.6.10 string) extra; } // Evidence hash => Evidence mapping(bytes32 => Evidence) evidences; // extra id => Evidence hash mapping(string => bytes32) extraKeyMapping; // Evidence attribute...
ABICodecObjectUtil中对于byte类型的解析 case BYTES: { result.add(new String(argObject.getBytesValue().getValue())); break; } 此处new String会将byte[]解析成乱码,可修改自行解析成16进制的字符串