public TransferObjectWrapper getObjectWrapper(TransferInputStream tins) {
     allTypeBean = new AllTypeBean();
     allTypeBean.setAboolean(tins.readBoolean());
     allTypeBean.setAbyte(tins.readByte());
     allTypeBean.setAshort(tins.readShort());
     allTypeBean.setAchar(tins.readChar());
     allTypeBean.setAint(tins.readInt());
     allTypeBean.setAlong(tins.readLong());
     allTypeBean.setAfloat(tins.readFloat());
     allTypeBean.setAdouble(tins.readDouble());
     allTypeBean.setAdate(tins.readDate());
     allTypeBean.setAstring(tins.readString());
     return this;
 }
 public void setAllTypeBean(AllTypeBean allTypeBean) {
     this.allTypeBean = allTypeBean;
 }
 public AllTypeBeanWrapper(AllTypeBean allTypeBean) {
     this.allTypeBean = allTypeBean;
 }