文档中心 > 文档资源

1.3.2.1. 短信接口

  1. 变更:

    AdapterMobileWapPushManager接口的参数messageId由int型修改为long型。

  2. 变更原因:

    int型会导致重复,因此同时修改了数据库表的主键数据类型。

  3. 影响版本:

    V3.5Sp1 2014年二月修复包以后版本

    V5.1

  4. 修改方法

    所有继承AdapterMobileWapPushManager的类需修改sendMessage方法的messageId为long并重新编译,如

    public boolean sendMessage(int messageId, String srcPhone, String destPhone, String content)

    改为

    public boolean sendMessage(long messageId, String srcPhone, String destPhone, String content)