depreciation.java

来自「struts做得固定资产管理系统 带毕业论文完整版」· Java 代码 · 共 78 行

JAVA
78
字号
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 + =
减小字号Ctrl + -
显示快捷键?