AdmPointImage.java 472 B

1234567891011121314151617181920212223242526272829
  1. package com.persagy.proxy.adm.model;
  2. import lombok.Data;
  3. /**
  4. * @ClassName AdmLocationPoint
  5. * @Description: ADM点位图片
  6. * @Author linhuili
  7. * @Date 2021/8/31 09:44
  8. * @Version V1.0
  9. **/
  10. @Data
  11. public class AdmPointImage {
  12. /** 图片 id */
  13. private String id;
  14. /** 图片 key */
  15. private String key;
  16. /** 图片类型 */
  17. private String type;
  18. /** 图片名称 */
  19. private String name;
  20. /** 对象id */
  21. private String objectId;
  22. }