生成一条关联信息(DATA_INT)

public RelateInfo genRelateInfoDataInt(int index, String key, int value) Exception;

调用该接口,中间件将会生成一个标准的DATA_INT类型的标识关联数据对象。

参数名 类型 说明
index int 标识关联信息索引号(不能重复,大于0)
key String 数据key值
value int 整型数字
类型 说明
RelateInfo 标识关联信息对象

....
RelateInfo info = GdssApi2.genRelateInfoDataInt(1,"数量", 1000);
.....