New file |
| | |
| | | package com.hdl.sdk.link.bean; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | import androidx.annotation.NonNull; |
| | | |
| | | /** |
| | | * Created by Zoro |
| | | * Created on 2022/1/23 |
| | | * description: |
| | | */ |
| | | public class LinkCreateSceneImageToCloudBean implements Serializable { |
| | | private String imageId; |
| | | private String cloudUrl; |
| | | private String localUrl; |
| | | |
| | | public String getImageId() { |
| | | return imageId == null ? "" : imageId; |
| | | } |
| | | |
| | | public void setImageId(@NonNull String imageId) { |
| | | this.imageId = imageId; |
| | | } |
| | | |
| | | public String getCloudUrl() { |
| | | return cloudUrl == null ? "" : cloudUrl; |
| | | } |
| | | |
| | | public void setCloudUrl(@NonNull String cloudUrl) { |
| | | this.cloudUrl = cloudUrl; |
| | | } |
| | | |
| | | public String getLocalUrl() { |
| | | return localUrl == null ? "" : localUrl; |
| | | } |
| | | |
| | | public void setLocalUrl(@NonNull String localUrl) { |
| | | this.localUrl = localUrl; |
| | | } |
| | | } |