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
| package com.moral.entity;
|
| import java.util.Date;
|
| public class History {
| private String mac;
|
| private Object value;
|
| private Date time;
|
| private Integer version;
|
| public String getMac() {
| return mac;
| }
|
| public void setMac(String mac) {
| this.mac = mac;
| }
|
| public Object getValue() {
| return value;
| }
|
| public void setValue(Object value) {
| this.value = value;
| }
|
| public Date getTime() {
| return time;
| }
|
| public void setTime(Date time) {
| this.time = time;
| }
|
| public Integer getVersion() {
| return version;
| }
|
| public void setVersion(Integer version) {
| this.version = version;
| }
| }
|
|