📄 photobean.java
字号:
/*
* Created on 2006-3-15
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package cn.com.tym.vip;
import java.io.Serializable;
/**
* @author jack_booth
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class PhotoBean implements Serializable {
private String photoId=null;
private String photoname=null;
private String photopath=null;
private String newtime=null;
private String cartle=null;
/**
* @return Returns the photoname.
*/
public String getPhotoname() {
return photoname;
}
/**
* @param photoname The photoname to set.
*/
public void setPhotoname(String photoname) {
this.photoname = photoname;
}
public String getCartle() {
return cartle;
}
public void setCartle(String cartle) {
this.cartle = cartle;
}
public String getNewtime() {
return newtime;
}
public void setNewtime(String newtime) {
this.newtime = newtime;
}
public String getPhotoId() {
return photoId;
}
public void setPhotoId(String photoId) {
this.photoId = photoId;
}
public String getPhotopath() {
return photopath;
}
public void setPhotopath(String photopath) {
this.photopath = photopath;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -