package com.github.hunter0x7c7.sync.model.bean; import com.google.gson.annotations.SerializedName; import java.util.List; /** * @Auther: Hunter * @Date: 2022/12/05/9:29 * @Description: */ public class PhotoBean { @SerializedName("items") private List list; public List getList() { return list; } public void setList(List list) { this.list = list; } public static class DataBean { /** * picUrl : * thumbUrl : */ @SerializedName("picUrl") private String maxUrl; @SerializedName("thumbUrl") private String minUrl; @SerializedName("name") private String imgName; public String getMaxUrl() { return maxUrl; } public void setMaxUrl(String maxUrl) { this.maxUrl = maxUrl; } public String getMinUrl() { return minUrl; } public void setMinUrl(String minUrl) { this.minUrl = minUrl; } public String getImgName() { return imgName; } public void setImgName(String imgName) { this.imgName = imgName; } @Override public String toString() { return "DataBean{" + "maxUrl='" + maxUrl + '\'' + ", minUrl='" + minUrl + '\'' + ", imgName='" + imgName + '\'' + '}'; } } @Override public String toString() { return "PhotoBean{" + "list=" + list + '}'; } }