package com.changhong.epc.bean.form;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 部门折旧资产信息
|
* 对应表 :epc_fixed_summary_{rule}
|
*/
|
@Data
|
public class SectoralAssets implements Serializable{
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
* 计提期间(yyyy-MM)
|
*/
|
private String calculationPeriod;
|
/**
|
* 部门名称code
|
*/
|
private String useDepartment;
|
/**
|
* 部门名Name
|
*/
|
private String useDepartmentName;
|
/**
|
* 原值
|
*/
|
private String originalMoney;
|
/**
|
* 累计折旧额
|
*/
|
private String cumulativeDepreciation;
|
/**
|
* 本期折旧额
|
*/
|
private String currentDepreciation;
|
/**
|
* 折后净值
|
*/
|
private String netMoney;
|
/**
|
* 计提状态
|
*/
|
private String countingState;
|
/**
|
* 计提日期
|
*/
|
private String calculationData;
|
/**
|
* 记账状态
|
*/
|
private String bookkeepingState;
|
/**
|
* 点击记账时间
|
*/
|
private String bookkeepingData;
|
/**
|
* 完成记账的时间
|
*/
|
private String accountingTime;
|
|
/**
|
* 记账编号
|
*/
|
private String number;
|
|
/**
|
* 云尚行订单号
|
*/
|
private String orderCode;
|
|
private int id;
|
|
}
|