public static native int[] ObjectGetIdList(int dwObjectType);
// 获取业务对象参数值(整型)
public static native int ObjectGetIntValue(int dwObjectType, int dwObjectId, int dwInfoName);
// 获取业务对象参数值(字符串)
public static native String ObjectGetStringValue(int dwObjectType, int dwObjectId, int dwInfoName);
// 业务对象参数设置(整形)
public static native int ObjectSetIntValue(int dwObjectType, int dwObjectId, int dwInfoName, int dwValue);
// 业务对象参数设置(字符串)
public static native int ObjectSetStringValue(int dwObjectType, int dwObjectId, int dwInfoName, String lpStrValue);
// 业务对象参数控制
public static native int ObjectControl(int dwObjectType, int dwObjectId, int dwCtrlCode, int dwParam1, int dwParam2, int dwParam3, int dwParam4, String lpStrValue);