jsp页面获取后台返回的对象,对象其中一个属性是list。
<span style="color:#000000;">public class OwnerShopDto {
@JsonProperty(value = "shopId")
privateInteger shopId;
@JsonProperty(value = "shopName")
privateString shopName;
@JsonProperty(value = "shopType")
privateInteger shopType;
@JsonProperty(value = "sendDistance")
privateInteger sendDistance;
@JsonProperty(value = "sendLimit")
privateInteger sendLimit;
@JsonProperty(value = "address")
privateString address;</span>
@JsonProperty(value = "playList")
privateList<PlayTypeDto> list;<span st