⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 assetlend.java

📁 struts做得固定资产管理系统 带毕业论文完整版
💻 JAVA
字号:
package com.qrsx.appcam.model;

/**
 * 资产借出类
 * 
 * @author user
 * 
 */
public class AssetLend {

	private Integer id; // 编号

	private Integer assetId;// 资产编号

	private String lendDate;// 借出日期

	private String givebackPlanDate;// 预计归还日期

	private String lendEmployee;// 发放人编号 必须为当前系统的操作员

	private String borrowMan;// 借用人

	private Integer clientId;// 借用单位、

	private Integer deptmentId;// 本部门借用对应单位号

	private String givebackDate;// 归还日期

	private Integer state;// 状态 1为借出 2 为归还、

	private Asset asset = new Asset();// 借出资产类型的级联对象

	private Client client = new Client();// 借出单位的级联对象

	private Deptment deptment = new Deptment();// 级联的本公司单位对象

	public AssetLend() {

	}
	

	/**
	 * @return the deptment
	 */
	public Deptment getDeptment() {
		return deptment;
	}


	/**
	 * @param deptment the deptment to set
	 */
	public void setDeptment(Deptment deptment) {
		this.deptment = deptment;
	}


	/**
	 * @return the asset
	 */
	public Asset getAsset() {
		return asset;
	}

	/**
	 * @param asset
	 *            the asset to set
	 */
	public void setAsset(Asset asset) {
		this.asset = asset;
	}

	/**
	 * @return the assetId
	 */
	public Integer getAssetId() {
		return assetId;
	}

	/**
	 * @param assetId
	 *            the assetId to set
	 */
	public void setAssetId(Integer assetId) {
		this.assetId = assetId;
	}

	/**
	 * @return the borrowMan
	 */
	public String getBorrowMan() {
		return borrowMan;
	}

	/**
	 * @param borrowMan
	 *            the borrowMan to set
	 */
	public void setBorrowMan(String borrowMan) {
		this.borrowMan = borrowMan;
	}

	/**
	 * @return the client
	 */
	public Client getClient() {
		return client;
	}

	/**
	 * @param client
	 *            the client to set
	 */
	public void setClient(Client client) {
		this.client = client;
	}

	/**
	 * @return the clientId
	 */
	public Integer getClientId() {
		return clientId;
	}

	/**
	 * @param clientId
	 *            the clientId to set
	 */
	public void setClientId(Integer clientId) {
		this.clientId = clientId;
	}

	/**
	 * @return the deptmentId
	 */
	public Integer getDeptmentId() {
		return deptmentId;
	}

	/**
	 * @param deptmentId
	 *            the deptmentId to set
	 */
	public void setDeptmentId(Integer deptmentId) {
		this.deptmentId = deptmentId;
	}

	/**
	 * @return the givebackDate
	 */
	public String getGivebackDate() {
		return givebackDate;
	}

	/**
	 * @param givebackDate
	 *            the givebackDate to set
	 */
	public void setGivebackDate(String givebackDate) {
		this.givebackDate = givebackDate;
	}

	/**
	 * @return the givebackPlanDate
	 */
	public String getGivebackPlanDate() {
		return givebackPlanDate;
	}

	/**
	 * @param givebackPlanDate
	 *            the givebackPlanDate to set
	 */
	public void setGivebackPlanDate(String givebackPlanDate) {
		this.givebackPlanDate = givebackPlanDate;
	}

	/**
	 * @return the id
	 */
	public Integer getId() {
		return id;
	}

	/**
	 * @param id
	 *            the id to set
	 */
	public void setId(Integer id) {
		this.id = id;
	}

	/**
	 * @return the lendDate
	 */
	public String getLendDate() {
		return lendDate;
	}

	/**
	 * @param lendDate
	 *            the lendDate to set
	 */
	public void setLendDate(String lendDate) {
		this.lendDate = lendDate;
	}

	/**
	 * @return the lendEmployee
	 */
	public String getLendEmployee() {
		return lendEmployee;
	}

	/**
	 * @param lendEmployee
	 *            the lendEmployee to set
	 */
	public void setLendEmployee(String lendEmployee) {
		this.lendEmployee = lendEmployee;
	}

	/**
	 * @return the state
	 */
	public Integer getState() {
		return state;
	}

	/**
	 * @param state
	 *            the state to set
	 */
	public void setState(Integer state) {
		this.state = state;
	}

}

⌨️ 快捷键说明

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