userbean.java

来自「基于java的图文报表系统的设计与实现,报表的生成一直是企业级应用系统开发时专案」· Java 代码 · 共 145 行

JAVA
145
字号
package pojo;

import java.io.*;

public class UserBean implements Serializable {

	private static final long serialVersionUID = -8494537169780682000L;

	private String yhxm = null;

	private String mm = null;

	private String qx = null;

	private String xy = null;

	private String xs = null;

	private String js = null;

	private String lxdh = null;

	private String xb = null;

	/**
	 * @return Returns the js.
	 */
	public String getJs() {
		return js;
	}

	/**
	 * @param js
	 *            The js to set.
	 */
	public void setJs(String js) {
		this.js = js;
	}

	/**
	 * @return Returns the lxdh.
	 */
	public String getLxdh() {
		return lxdh;
	}

	/**
	 * @param lxdh
	 *            The lxdh to set.
	 */
	public void setLxdh(String lxdh) {
		this.lxdh = lxdh;
	}

	/**
	 * @return Returns the mm.
	 */
	public String getMm() {
		return mm;
	}

	/**
	 * @param mm
	 *            The mm to set.
	 */
	public void setMm(String mm) {
		this.mm = mm;
	}

	/**
	 * @return Returns the qx.
	 */
	public String getQx() {
		return qx;
	}

	/**
	 * @param qx
	 *            The qx to set.
	 */
	public void setQx(String qx) {
		this.qx = qx;
	}

	/**
	 * @return Returns the xb.
	 */
	public String getXb() {
		return xb;
	}

	/**
	 * @param xb
	 *            The xb to set.
	 */
	public void setXb(String xb) {
		this.xb = xb;
	}

	/**
	 * @return Returns the xs.
	 */
	public String getXs() {
		return xs;
	}

	/**
	 * @param xs
	 *            The xs to set.
	 */
	public void setXs(String xs) {
		this.xs = xs;
	}

	/**
	 * @return Returns the xy.
	 */
	public String getXy() {
		return xy;
	}

	/**
	 * @param xy
	 *            The xy to set.
	 */
	public void setXy(String xy) {
		this.xy = xy;
	}

	/**
	 * @return Returns the yhxm.
	 */
	public String getYhxm() {
		return yhxm;
	}

	/**
	 * @param yhxm
	 *            The yhxm to set.
	 */
	public void setYhxm(String yhxm) {
		this.yhxm = yhxm;
	}

}

⌨️ 快捷键说明

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