parent
7555d7e03c
commit
6a3828bbb7
@ -0,0 +1,35 @@
|
|||||||
|
package top.ezzd.pojo;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class PhotoType {
|
||||||
|
private int typeId;
|
||||||
|
private int photoId;
|
||||||
|
private String type;
|
||||||
|
private List<Photo> photo;
|
||||||
|
public int getTypeId() {
|
||||||
|
return typeId;
|
||||||
|
}
|
||||||
|
public void setTypeId(int typeId) {
|
||||||
|
this.typeId = typeId;
|
||||||
|
}
|
||||||
|
public int getPhotoId() {
|
||||||
|
return photoId;
|
||||||
|
}
|
||||||
|
public void setPhotoId(int photoId) {
|
||||||
|
this.photoId = photoId;
|
||||||
|
}
|
||||||
|
public String getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
public void setType(String type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
public List<Photo> getPhoto() {
|
||||||
|
return photo;
|
||||||
|
}
|
||||||
|
public void setPhoto(List<Photo> photo) {
|
||||||
|
this.photo = photo;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue