用IDL写的struct映射成JAVA的类,但是映射的基本类型都是int等
但是我现在要映射成Integer,怎么写啊???如下:
struct Person
{
     long id; 
};映射成Person.java后,其类型为
int id;但是我想映射成
Integer id;谢谢