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

📄 depreciation.java

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

public class Depreciation {

	private Integer id;// 编号 主键

	private Integer assetId;// 对应资产ID

	private String arithmetic;// 折旧算法

	private Asset asset = new Asset();//资产级联

	public Depreciation() {

	}

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

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

	/**
	 * @return the arithmetic
	 */
	public String getArithmetic() {
		return arithmetic;
	}

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

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

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

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

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

}

⌨️ 快捷键说明

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