myphotosbean.java

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

JAVA
69
字号
/*
 * Created on 2006-4-14
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package cn.com.tym.table.bean;

/**
 * @author jack_booth
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class MyphotosBean {
	
	private int photoId=0;
	private String Filename_id=null;
	private String Photoname=null;
	private String photopath=null;
	private String newtime=null;
	private String content=null;
	private int visualize=0;    // 0 代表没有会员没有设置形象图, 1代表设置了形象图
	
	MyphotosBean(){}
	public String getContent() {
		return content;
	}
	public void setContent(String content) {
		this.content = content;
	}
	public String getFilename_id() {
		return Filename_id;
	}
	public void setFilename_id(String filename_id) {
		Filename_id = filename_id;
	}
	public String getNewtime() {
		return newtime;
	}
	public void setNewtime(String newtime) {
		this.newtime = newtime;
	}
	public int getPhotoId() {
		return photoId;
	}
	public void setPhotoId(int photoId) {
		this.photoId = photoId;
	}
	public String getPhotoname() {
		return Photoname;
	}
	public void setPhotoname(String photoname) {
		Photoname = photoname;
	}
	public String getPhotopath() {
		return photopath;
	}
	public void setPhotopath(String photopath) {
		this.photopath = photopath;
	}
	public int getVisualize() {
		return visualize;
	}
	public void setVisualize(int visualize) {
		this.visualize = visualize;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?