You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
379 B
Java
24 lines
379 B
Java
package com.xypower.mppreview.bean;
|
|
|
|
public class PngPhotoBean {
|
|
|
|
private long etime;
|
|
private String path;
|
|
|
|
public long getEtime() {
|
|
return etime;
|
|
}
|
|
|
|
public void setEtime(long etime) {
|
|
this.etime = etime;
|
|
}
|
|
|
|
public String getPath() {
|
|
return path;
|
|
}
|
|
|
|
public void setPath(String path) {
|
|
this.path = path;
|
|
}
|
|
}
|