forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDamageForm.java
More file actions
98 lines (75 loc) · 1.91 KB
/
DamageForm.java
File metadata and controls
98 lines (75 loc) · 1.91 KB
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
package com.actionForm;
import java.util.*;
import org.apache.struts.action.*;
public class DamageForm extends ActionForm {
private int id;
private int branchid;
private int goodsid;
private int damagenum;
private Date createtime;
private String principal;
private String username;
private String cause;
private GoodsForm goods;
private BranchForm branch;
public int getId() {
return id;
}
public int getBranchid() {
return branchid;
}
public int getGoodsid() {
return goodsid;
}
public int getDamagenum() {
return damagenum;
}
public Date getCreatetime() {
return createtime;
}
public String getPrincipal() {
return principal;
}
public String getUsername() {
return username;
}
public String getCause() {
return cause;
}
public GoodsForm getGoods() {
return goods;
}
public BranchForm getBranch() {
return branch;
}
public void setId(int id) {
this.id = id;
}
public void setBranchid(int branchid) {
this.branchid = branchid;
}
public void setGoodsid(int goodsid) {
this.goodsid = goodsid;
}
public void setDamagenum(int damagenum) {
this.damagenum = damagenum;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public void setPrincipal(String principal) {
this.principal = principal;
}
public void setUsername(String username) {
this.username = username;
}
public void setCause(String cause) {
this.cause = cause;
}
public void setGoods(GoodsForm goods) {
this.goods = goods;
}
public void setBranch(BranchForm branch) {
this.branch = branch;
}
}