photobean.java

来自「spring+struts+hibernate做的银行系统」· Java 代码 · 共 66 行

JAVA
66
字号
/*
 * 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 + =
减小字号Ctrl + -
显示快捷键?