forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoft.java
More file actions
128 lines (125 loc) · 2.75 KB
/
Soft.java
File metadata and controls
128 lines (125 loc) · 2.75 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
package com.model;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: MR</p>
* @author BWM
* @version 1.0
*/
public class Soft {
private int sfid;
private String name="ÎÞ";
private String edition;
private float price;
private String uptime;
private String uid;
private String iid;
private int sid;
private String environment;
private int filesize;
private int commend;
private int loadnum;
private int regular;
private String introduce;
private String path;
private String resume;
public Soft() {
}
public int getSfid() {
return sfid;
}
public void setSfid(int sfid) {
this.sfid = sfid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getEdition() {
return edition;
}
public void setEdition(String edition) {
this.edition = edition;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public String getUptime() {
return uptime;
}
public void setUptime(String uptime) {
this.uptime = uptime;
}
public String getUid() {
return uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public String getIid() {
return iid;
}
public void setIid(String iid) {
this.iid = iid;
}
public int getSid() {
return sid;
}
public void setSid(int sid) {
this.sid = sid;
}
public String getEnvironment() {
return environment;
}
public void setEnvironment(String environment) {
this.environment = environment;
}
public int getFilesize() {
return filesize;
}
public void setFilesize(int filesize) {
this.filesize = filesize;
}
public int getCommend() {
return commend;
}
public void setCommend(int commend) {
this.commend = commend;
}
public int getLoadnum() {
return loadnum;
}
public void setLoadnum(int loadnum) {
this.loadnum = loadnum;
}
public int getRegular() {
return regular;
}
public void setRegular(int regular) {
this.regular = regular;
}
public String getIntroduce() {
return introduce;
}
public void setIntroduce(String introduce) {
this.introduce = introduce;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getResume() {
return resume;
}
public void setResume(String resume) {
this.resume = resume;
}
}