parent
ea435de388
commit
7555d7e03c
@ -0,0 +1,58 @@
|
|||||||
|
package top.ezzd.pojo;
|
||||||
|
|
||||||
|
public class Photo {
|
||||||
|
private int photoId;
|
||||||
|
private String address;
|
||||||
|
private int typeId;
|
||||||
|
private int uid;
|
||||||
|
private String title;
|
||||||
|
private String shortText;
|
||||||
|
private String multiText;
|
||||||
|
public String getMultiText() {
|
||||||
|
return multiText;
|
||||||
|
}
|
||||||
|
public void setMultiText(String multiText) {
|
||||||
|
this.multiText = multiText;
|
||||||
|
}
|
||||||
|
public String getTitle() {
|
||||||
|
return title;
|
||||||
|
}
|
||||||
|
public void setTitle(String title) {
|
||||||
|
this.title = title;
|
||||||
|
}
|
||||||
|
public String getShortText() {
|
||||||
|
return shortText;
|
||||||
|
}
|
||||||
|
public void setShortText(String shortText) {
|
||||||
|
this.shortText = shortText;
|
||||||
|
}
|
||||||
|
public int getUid() {
|
||||||
|
return uid;
|
||||||
|
}
|
||||||
|
public void setUid(int uid) {
|
||||||
|
this.uid = uid;
|
||||||
|
}
|
||||||
|
public int getPhotoId() {
|
||||||
|
return photoId;
|
||||||
|
}
|
||||||
|
public void setPhotoId(int photoId) {
|
||||||
|
this.photoId = photoId;
|
||||||
|
}
|
||||||
|
public String getAddress() {
|
||||||
|
return address;
|
||||||
|
}
|
||||||
|
public void setAddress(String address) {
|
||||||
|
this.address = address;
|
||||||
|
}
|
||||||
|
public int getTypeId() {
|
||||||
|
return typeId;
|
||||||
|
}
|
||||||
|
public void setTypeId(int typeId) {
|
||||||
|
this.typeId = typeId;
|
||||||
|
}
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Photo [photoId=" + photoId + ", address=" + address + ", typeId=" + typeId + ", uid=" + uid + ", title="
|
||||||
|
+ title + ", shortText=" + shortText + ", multiText=" + multiText + "]";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue