billbean.java

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

JAVA
62
字号
/*
 * Created on 2006-4-27
 *
 * 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 BillBean {
	
	private int billId=0;		 			// 主键
	private String billTitle=null;				//标题
	private String urlPath=null;				//链接路径
	private String urlPhoto=null;				//图片路径
	private String photohight=null;					//高度
	private String photoweight=null;					//宽度
 
	
	public int getBillId() {
		return billId;
	}
	public void setBillId(int billId) {
		this.billId = billId;
	}
	public String getBillTitle() {
		return billTitle;
	}
	public void setBillTitle(String billTitle) {
		this.billTitle = billTitle;
	}
	public String getPhotohight() {
		return photohight;
	}
	public void setPhotohight(String photohight) {
		this.photohight = photohight;
	}
	public String getPhotoweight() {
		return photoweight;
	}
	public void setPhotoweight(String photoweight) {
		this.photoweight = photoweight;
	}
	public String getUrlPath() {
		return urlPath;
	}
	public void setUrlPath(String urlPath) {
		this.urlPath = urlPath;
	}
	public String getUrlPhoto() {
		return urlPhoto;
	}
	public void setUrlPhoto(String urlPhoto) {
		this.urlPhoto = urlPhoto;
	}
}

⌨️ 快捷键说明

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