935090232@qq.com
2021-03-19 81a3369395a7cccceb7cd36f5238cc6fe2aa88e5
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
package com.matrix.system.oa.bean;
 
import com.matrix.core.anotations.Extend;
import com.matrix.core.pojo.EntityDTO;
 
/**
 * @description 固定资产
 * @author 
 * @date 2019-12-13 07:19
 */
public class OaFixedAssets  extends EntityDTO{
    @Extend
    private static final long serialVersionUID = 1L; 
 
    
    /**
     * 主键
     */
    private String  id;
            
    
    /**
     * 资产类型
     */
    private String  assetsType;
            
    
    /**
     * 资产名称
     */
    private String  name;
            
    
    /**
     * 资产编号
     */
    private String  number;
            
    
    /**
     * 资产型号
     */
    private String  model;
            
    
    /**
     * 所在部门
     */
    private String  department;
            
    
    /**
     * 成本价
     */
    private Double  price;
            
    
    /**
     * 数量
     */
    private Integer  count;
            
    
    /**
     * 往来单位
     */
    private String  supplier;
            
    
    /**
     * 使用人
     */
    private String  user;
            
    
    /**
     * 所属公司ID
     */
    private Long companyId;
            
    
 
    public String getId() {
        return id;
    }
       
       public void setId(String id) {
        this.id=id;
    }
       
 
    public String getAssetsType() {
        return assetsType;
    }
       
       public void setAssetsType(String assetsType) {
        this.assetsType=assetsType;
    }
       
 
    public String getName() {
        return name;
    }
       
       public void setName(String name) {
        this.name=name;
    }
       
 
    public String getNumber() {
        return number;
    }
       
       public void setNumber(String number) {
        this.number=number;
    }
       
 
    public String getModel() {
        return model;
    }
       
       public void setModel(String model) {
        this.model=model;
    }
       
 
    public String getDepartment() {
        return department;
    }
       
       public void setDepartment(String department) {
        this.department=department;
    }
       
 
    public Double getPrice() {
        return price;
    }
       
       public void setPrice(Double price) {
        this.price=price;
    }
       
 
    public Integer getCount() {
        return count;
    }
       
       public void setCount(Integer count) {
        this.count=count;
    }
       
 
    public String getSupplier() {
        return supplier;
    }
       
       public void setSupplier(String supplier) {
        this.supplier=supplier;
    }
       
 
    public String getUser() {
        return user;
    }
       
       public void setUser(String user) {
        this.user=user;
    }
 
    public Long getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Long companyId) {
        this.companyId = companyId;
    }
}