forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInStorageForm.java
More file actions
53 lines (40 loc) · 1006 Bytes
/
InStorageForm.java
File metadata and controls
53 lines (40 loc) · 1006 Bytes
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
package com.actionForm;
import java.util.*;
import org.apache.struts.action.*;
public class InStorageForm extends ActionForm {
private int id;
private String ino;
private int stockid;
private Date createTime;
private String username;
public int getId() {
return id;
}
public String getIno() {
return ino;
}
public int getStockid() {
return stockid;
}
public Date getCreateTime() {
return createTime;
}
public String getUsername() {
return username;
}
public void setId(int id) {
this.id = id;
}
public void setIno(String ino) {
this.ino = ino;
}
public void setStockid(int stockid) {
this.stockid = stockid;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public void setUsername(String username) {
this.username = username;
}
}