📄 fixedassets.java
字号:
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-14 hliu Create com.szmx.tlms.finance.model.FixedAssets
* =============================================
*/
package com.szmx.tlms.finance.model;
import com.szmx.framework.base.model.VersionObject;
import java.util.Date;
import java.math.BigDecimal;
/**
* This class is the implement of the FixedAssetsService
*
* @author hliu
* @since 2006-4-14
*/
public class FixedAssets extends VersionObject {
//Which company is this fixed asset belonged.
private Long companyId;
//Reference number of the fixed assets.
private Long voucherSysId;
//Fixed assets's number.
private String assetsNumber;
//Description of the fixed assets.
private String description;
//The category of the record
//For example 1:Fixed assets
// 2:Deferred and prepaid expenses
private Integer assetsCategory;
//The date when buy the fixed assets.
private Date dateInService;
//The original cost of the fixed assets.
private BigDecimal originalCost;
//How many percent will be salvaged of the value of the fixed assets.
//For example if the salvageValuePercent is 10,
//The original value of the fixed assets is $500
//The salvageValue will be 500*10%=50.
private Integer salvageValuePercent;
//How many value will be salvaged of the fixed assets. Above is the method to account it
private BigDecimal salvageValue;
//The sum value of the depreciation.
private BigDecimal accumulatedDepreciation;
//
private Integer lifeMonth;
private Account fixedAssetsAccount;
private Account depreciationAccount;
private Account depreciationExpenseAccount;
private Account defferedAndPrepaidExpensesAccount;
private Double fixAssetsRetirementEarning;
private Date retirementDate;
//The fixed assets's status : New , In use , Retirement
private Integer status;
public Long getCompanyId() {
return companyId;
}
public void setCompanyId(Long companyId) {
this.companyId = companyId;
}
public Long getVoucherSysId() {
return voucherSysId;
}
public void setVoucherSysId(Long voucherSysId) {
this.voucherSysId = voucherSysId;
}
public String getAssetsNumber() {
return assetsNumber;
}
public void setAssetsNumber(String assetsNumber) {
this.assetsNumber = assetsNumber;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getAssetsCategory() {
return assetsCategory;
}
public void setAssetsCategory(Integer assetsCategory) {
this.assetsCategory = assetsCategory;
}
public Date getDateInService() {
return dateInService;
}
public void setDateInService(Date dateInService) {
this.dateInService = dateInService;
}
public BigDecimal getOriginalCost() {
return originalCost;
}
public void setOriginalCost(BigDecimal originalCost) {
this.originalCost = originalCost;
}
public Integer getSalvageValuePercent() {
return salvageValuePercent;
}
public void setSalvageValuePercent(Integer salvageValuePercent) {
this.salvageValuePercent = salvageValuePercent;
}
public BigDecimal getSalvageValue() {
return salvageValue;
}
public void setSalvageValue(BigDecimal salvageValue) {
this.salvageValue = salvageValue;
}
public BigDecimal getAccumulatedDepreciation() {
return accumulatedDepreciation;
}
public void setAccumulatedDepreciation(BigDecimal accumulatedDepreciation) {
this.accumulatedDepreciation = accumulatedDepreciation;
}
public Integer getLifeMonth() {
return lifeMonth;
}
public void setLifeMonth(Integer lifeMonth) {
this.lifeMonth = lifeMonth;
}
public Account getFixedAssetsAccount() {
return fixedAssetsAccount;
}
public void setFixedAssetsAccount(Account fixedAssetsAccount) {
this.fixedAssetsAccount = fixedAssetsAccount;
}
public Account getDepreciationAccount() {
return depreciationAccount;
}
public void setDepreciationAccount(Account depreciationAccount) {
this.depreciationAccount = depreciationAccount;
}
public Account getDepreciationExpenseAccount() {
return depreciationExpenseAccount;
}
public void setDepreciationExpenseAccount(Account depreciationExpenseAccount) {
this.depreciationExpenseAccount = depreciationExpenseAccount;
}
public Account getDefferedAndPrepaidExpensesAccount() {
return defferedAndPrepaidExpensesAccount;
}
public void setDefferedAndPrepaidExpensesAccount(Account defferedAndPrepaidExpensesAccount) {
this.defferedAndPrepaidExpensesAccount = defferedAndPrepaidExpensesAccount;
}
public Double getFixAssetsRetirementEarning() {
return fixAssetsRetirementEarning;
}
public void setFixAssetsRetirementEarning(Double fixAssetsRetirementEarning) {
this.fixAssetsRetirementEarning = fixAssetsRetirementEarning;
}
public Date getRetirementDate() {
return retirementDate;
}
public void setRetirementDate(Date retirementDate) {
this.retirementDate = retirementDate;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -