UpSoftVersion.java
1.07 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
package com.xkl.domain;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* 用户数据的domain类
*/
@Entity
@Table(name = "xkl_upsoft_version")
public class UpSoftVersion {
//用户id
@Id
@Column(name = "id")
private long id;
//版本号
@Column(name = "version_num")
private int version_num;
//版本名称
@Column(name = "name")
private String name;
//版本详情
@Column(name = "note")
private String note;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public int getVersion_num() {
return version_num;
}
public void setVersion_num(int version_num) {
this.version_num = version_num;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
}