ImgInfo.java 502 B

1234567891011121314151617181920212223242526272829
  1. package com.ydtech.modules.ins.model;
  2. /**
  3. * @author qinfenglong
  4. * @version 1.0.0
  5. * @description ImgInfo
  6. * @since 2020/11/18 16:59
  7. */
  8. public class ImgInfo {
  9. private String imgType;
  10. private String image;
  11. public String getImgType() {
  12. return imgType;
  13. }
  14. public void setImgType(String imgType) {
  15. this.imgType = imgType;
  16. }
  17. public String getImage() {
  18. return image;
  19. }
  20. public void setImage(String image) {
  21. this.image = image;
  22. }
  23. }