| 1234567891011121314151617181920212223242526272829 |
- 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;
- }
- }
|