PicDataVo.java
2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.viontech.vo;
import java.util.Map;
/**
* @Author: zhaibailin
* @Date: 2020/7/8.
* @Description:
*/
public class PicDataVo {
private String pic_base64;
private String src_url;
private String format;
private String pic_unid;
private String shoot_dt;
private String width;
private String hight;
private String ofilename;
private String type;
private Map object_rect;
private Map feature_rect;
public String getPic_base64() {
return pic_base64;
}
public void setPic_base64(String pic_base64) {
this.pic_base64 = pic_base64;
}
public String getSrc_url() {
return src_url;
}
public void setSrc_url(String src_url) {
this.src_url = src_url;
}
public String getFormat() {
return format;
}
public void setFormat(String format) {
this.format = format;
}
public String getPic_unid() {
return pic_unid;
}
public void setPic_unid(String pic_unid) {
this.pic_unid = pic_unid;
}
public String getShoot_dt() {
return shoot_dt;
}
public void setShoot_dt(String shoot_dt) {
this.shoot_dt = shoot_dt;
}
public String getWidth() {
return width;
}
public void setWidth(String width) {
this.width = width;
}
public String getHight() {
return hight;
}
public void setHight(String hight) {
this.hight = hight;
}
public String getOfilename() {
return ofilename;
}
public void setOfilename(String ofilename) {
this.ofilename = ofilename;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Map getObject_rect() {
return object_rect;
}
public void setObject_rect(Map object_rect) {
this.object_rect = object_rect;
}
public Map getFeature_rect() {
return feature_rect;
}
public void setFeature_rect(Map feature_rect) {
this.feature_rect = feature_rect;
}
}