forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoanForm.java
More file actions
153 lines (118 loc) · 3.17 KB
/
LoanForm.java
File metadata and controls
153 lines (118 loc) · 3.17 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
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
package com.actionForm;
import java.util.*;
import org.apache.struts.action.*;
public class LoanForm extends ActionForm {
private int id;
private String lno;
private int goodsid;
private int number;
private String username;
private String principal;
private String borrowperson;
private String btel="";
private String bunit="";
private Date createtime;
private short state=0; //״̬ 0£¨Î´ÉóºË£©1£¨ÒÑÉóºË£©2£¨Òѹ黹£©
// private short state=new Short("0"); //״̬ 0£¨Î´ÉóºË£©1£¨ÒÑÉóºË£©2£¨Òѹ黹£©
private String taster=""; //ÉóºËÈË
private Date approvetime=null;
private GoodsForm goods;
private String backperson=""; //¹é»¹²Ù×÷Ô±
private Date backtime=null;
public void setId(int id) {
this.id = id;
}
public void setLno(String lno) {
this.lno = lno;
}
public void setGoodsid(int goodsid) {
this.goodsid = goodsid;
}
public void setNumber(int number) {
this.number = number;
}
public void setUsername(String username) {
this.username = username;
}
public void setPrincipal(String principal) {
this.principal = principal;
}
public void setBorrowperson(String borrowperson) {
this.borrowperson = borrowperson;
}
public void setBtel(String btel) {
this.btel = btel;
}
public void setBunit(String bunit) {
this.bunit = bunit;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public void setState(short state) {
this.state = state;
}
public void setTaster(String taster) {
this.taster = taster;
}
public void setApprovetime(Date approvetime) {
this.approvetime = approvetime;
}
public void setGoods(GoodsForm goods) {
this.goods = goods;
}
public void setBackperson(String backperson) {
this.backperson = backperson;
}
public void setBacktime(Date backtime) {
this.backtime = backtime;
}
public int getId() {
return id;
}
public String getLno() {
return lno;
}
public int getGoodsid() {
return goodsid;
}
public int getNumber() {
return number;
}
public String getUsername() {
return username;
}
public String getPrincipal() {
return principal;
}
public String getBorrowperson() {
return borrowperson;
}
public String getBtel() {
return btel;
}
public String getBunit() {
return bunit;
}
public Date getCreatetime() {
return createtime;
}
public short getState() {
return state;
}
public String getTaster() {
return taster;
}
public Date getApprovetime() {
return approvetime;
}
public GoodsForm getGoods() {
return goods;
}
public String getBackperson() {
return backperson;
}
public Date getBacktime() {
return backtime;
}
}