我的数据模型如下:
public class CustomerObject implements Serializable
{
public Integer pkid;
public String code;
public String name;
public CustomerObject()
{
pkid = new Integer(0);
code = "";
name = "";
}
}
现在我从另一个类中调用它:
public CustomerObject getCustObj() {
CustomerObject custObj = new CustomerObject();
custObj.pkid = new Integer(1001);
custObj.code = "CUST1001";
return custObj;
}
现在在getCustObj()
函数中我只想传递pkid
and code
。我的意思是我想name
从对象中删除变量“”然后通过。所以我的传递对象看起来像:
CustomerObject()
{
pkid = 1000;
code = CUST1001;
}
请帮助我如何做到这一点。
实际上我有一个 200 变量的数据模型。我将使用网络服务传递它。但是在通过网络服务传递期间,我可能只需要 20 就可以通过。所以我想减少数据大小。