zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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;
 
}