package com.dayu.pipirrapp.bean; /** * ImageBean -图片显示adapter * * @author zuoxiao * @version 1.0 * @since 2025-01-09 */ public class ImageBean { String id; String webPath; int type; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getWebPath() { return webPath; } public void setWebPath(String webPath) { this.webPath = webPath; } public int getType() { return type; } public void setType(int type) { this.type = type; } }