package com.ydtech.modules.ins.model; /** * @author qinfenglong * @version 1.0.0 * @description ImgInfo * @since 2020/11/18 16:59 */ public class ImgInfo { private String imgType; private String image; public String getImgType() { return imgType; } public void setImgType(String imgType) { this.imgType = imgType; } public String getImage() { return image; } public void setImage(String image) { this.image = image; } }