java 多层对象转json_java基础 -- json多层转换成对象

packagecom.justinmobile.lticket.domain.dto;importjava.io.Serializable;importjava.util.List;/*** 返回提货订单信息

*@authorcm*/@SuppressWarnings("serial")public class DataInfoDto implementsSerializable

{publicString infoSource;publicLong actOrderId;publicString orderAppId;publicString orderAppCustomCategory;public intchannelLevel1;public intchannelLevel2;public intchannelLevel3;publicString channelLevel4;public intorderStatus;publicString orderStatusDesc;public intpayStatus;public intrefundStatus;public intexpressStatus;public intclossStatus;publicString createTime;publicString payTime;publicLong userId;publicString andUserId;publicString showUrl;publicString shopId;publicString shopName;public inthasRefund;public intpayOnDelivery;public ListgoodsInfos;public ListexpressInfos;public inttotalPay;publicString refundUrl;publicDataInfoDto(){super();

}publicString getInfoSource()

{returninfoSource;

}public voidsetInfoSource(String infoSource)

{this.infoSource =infoSource;

}publicLong getActOrderId()

{returnactOrderId;

}public voidsetActOrderId(Long actOrderId)

{this.actOrderId =actOrderId;

}publicString getOrderAppId()

{returnorderAppId;

}public voidsetOrderAppId(String orderAppId)

{this.orderAppId =orderAppId;

}publicString getOrderAppCustomCategory()

{returnorderAppCustomCategory;

}public voidsetOrderAppCustomCategory(String orderAppCustomCategory)

{this.orderAppCustomCategory =orderAppCustomCategory;

}public intgetChannelLevel1()

{returnchannelLevel1;

}public void setChannelLevel1(intchannelLevel1)

{this.channelLevel1 =channelLevel1;

}public intgetChannelLevel2()

{returnchannelLevel2;

}public void setChannelLevel2(intchannelLevel2)

{this.channelLevel2 =channelLevel2;

}public intgetChannelLevel3()

{returnchannelLevel3;

}public void setChannelLevel3(intchannelLevel3)

{this.channelLevel3 =channelLevel3;

}publicString getChannelLevel4()

{returnchannelLevel4;

}public voidsetChannelLevel4(String channelLevel4)

{this.channelLevel4 =channelLevel4;

}public intgetOrderStatus()

{returnorderStatus;

}public void setOrderStatus(intorderStatus)

{this.orderStatus =orderStatus;

}publicString getOrderStatusDesc()

{returnorderStatusDesc;

}public voidsetOrderStatusDesc(String orderStatusDesc)

{this.orderStatusDesc =orderStatusDesc;

}public intgetPayStatus()

{returnpayStatus;

}public void setPayStatus(intpayStatus)

{this.payStatus =payStatus;

}public intgetRefundStatus()

{returnrefundStatus;

}public void setRefundStatus(intrefundStatus)

{this.refundStatus =refundStatus;

}public intgetExpressStatus()

{returnexpressStatus;

}public void setExpressStatus(intexpressStatus)

{this.expressStatus =expressStatus;

}public intgetClossStatus()

{returnclossStatus;

}public void setClossStatus(intclossStatus)

{this.clossStatus =clossStatus;

}publicString getCreateTime()

{returncreateTime;

}public voidsetCreateTime(String createTime)

{this.createTime =createTime;

}publicString getPayTime()

{returnpayTime;

}public voidsetPayTime(String payTime)

{this.payTime =payTime;

}publicLong getUserId()

{returnuserId;

}public voidsetUserId(Long userId)

{this.userId =userId;

}publicString getAndUserId()

{returnandUserId;

}public voidsetAndUserId(String andUserId)

{this.andUserId =andUserId;

}publicString getShowUrl()

{returnshowUrl;

}public voidsetShowUrl(String showUrl)

{this.showUrl =showUrl;

}publicString getShopId()

{returnshopId;

}public voidsetShopId(String shopId)

{this.shopId =shopId;

}publicString getShopName()

{returnshopName;

}public voidsetShopName(String shopName)

{this.shopName =shopName;

}public intgetHasRefund()

{returnhasRefund;

}public void setHasRefund(inthasRefund)

{this.hasRefund =hasRefund;

}public intgetPayOnDelivery()

{returnpayOnDelivery;

}public void setPayOnDelivery(intpayOnDelivery)

{this.payOnDelivery =payOnDelivery;

}public ListgetGoodsInfos()

{returngoodsInfos;

}public void setGoodsInfos(ListgoodsInfos)

{this.goodsInfos =goodsInfos;

}public ListgetExpressInfos()

{returnexpressInfos;

}public void setExpressInfos(ListexpressInfos)

{this.expressInfos =expressInfos;

}public intgetTotalPay()

{returntotalPay;

}public void setTotalPay(inttotalPay)

{this.totalPay =totalPay;

}publicString getRefundUrl()

{returnrefundUrl;

}public voidsetRefundUrl(String refundUrl)

{this.refundUrl =refundUrl;

}

}


版权声明:本文为weixin_32124135原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。