commit | author | age
|
a18bfa
|
1 |
package com.changhong.autoform.entity; |
Z |
2 |
|
|
3 |
public class ProcessBudget { |
|
4 |
|
|
5 |
public String getFormType() { |
|
6 |
return formType; |
|
7 |
} |
|
8 |
|
|
9 |
public String getFormId() { |
|
10 |
return formId; |
|
11 |
} |
|
12 |
|
|
13 |
public void setFormId(String formId) { |
|
14 |
this.formId = formId; |
|
15 |
} |
|
16 |
|
|
17 |
public String getTenantID() { |
|
18 |
return tenantID; |
|
19 |
} |
|
20 |
|
|
21 |
public void setTenantID(String tenantID) { |
|
22 |
this.tenantID = tenantID; |
|
23 |
} |
|
24 |
|
|
25 |
public void setFormType(String formType) { |
|
26 |
this.formType = formType; |
|
27 |
} |
|
28 |
|
|
29 |
public Integer getDataRowNUm() { |
|
30 |
return dataRowNUm; |
|
31 |
} |
|
32 |
|
|
33 |
public void setDataRowNUm(Integer dataRowNUm) { |
|
34 |
this.dataRowNUm = dataRowNUm; |
|
35 |
} |
|
36 |
|
|
37 |
public String getToken() { |
|
38 |
return token; |
|
39 |
} |
|
40 |
|
|
41 |
public void setToken(String token) { |
|
42 |
this.token = token; |
|
43 |
} |
|
44 |
|
|
45 |
public String getCostType() { |
|
46 |
return costType; |
|
47 |
} |
|
48 |
|
|
49 |
public void setCostType(String costType) { |
|
50 |
this.costType = costType; |
|
51 |
} |
|
52 |
|
|
53 |
|
|
54 |
public String getAlias() { |
|
55 |
return alias; |
|
56 |
} |
|
57 |
|
|
58 |
public void setAlias(String alias) { |
|
59 |
this.alias = alias; |
|
60 |
} |
|
61 |
|
|
62 |
|
|
63 |
private String formId; |
|
64 |
|
|
65 |
private String tenantID; |
|
66 |
|
|
67 |
private Integer dataRowNUm; |
|
68 |
|
|
69 |
private String token; |
|
70 |
|
|
71 |
private String costType; |
|
72 |
|
|
73 |
private String alias; |
|
74 |
|
|
75 |
private String formType; |
|
76 |
|
|
77 |
|
|
78 |
public ProcessBudget(){ |
|
79 |
} |
|
80 |
|
|
81 |
public ProcessBudget(String formID, Integer dataRowNUm, String alias){ |
|
82 |
this.formId = formID; |
|
83 |
this.dataRowNUm = dataRowNUm; |
|
84 |
this.alias = alias; |
|
85 |
} |
|
86 |
|
|
87 |
} |