1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.core.dto;
17
18 import java.io.Serializable;
19 import java.util.Date;
20
21 import javax.xml.bind.annotation.XmlAccessType;
22 import javax.xml.bind.annotation.XmlAccessorType;
23 import javax.xml.bind.annotation.XmlElement;
24
25
26
27
28
29 @XmlAccessorType(XmlAccessType.FIELD)
30 public class MetaInfo implements Serializable {
31
32 private static final long serialVersionUID = 1L;
33
34 @XmlElement
35 private String versionInd;
36
37 @XmlElement
38 private Date createTime;
39
40 @XmlElement
41 private String createId;
42
43 @XmlElement
44 private Date updateTime;
45
46 @XmlElement
47 private String updateId;
48
49
50
51
52 public String getVersionInd() {
53 return versionInd;
54 }
55
56 public void setVersionInd(String versionInd) {
57 this.versionInd = versionInd;
58 }
59
60
61
62
63 public Date getCreateTime() {
64 return createTime;
65 }
66
67 public void setCreateTime(Date createTime) {
68 this.createTime = createTime;
69 }
70
71
72
73
74 public String getCreateId() {
75 return createId;
76 }
77
78 public void setCreateId(String createId) {
79 this.createId = createId;
80 }
81
82
83
84
85 public Date getUpdateTime() {
86 return updateTime;
87 }
88
89 public void setUpdateTime(Date updateTime) {
90 this.updateTime = updateTime;
91 }
92
93
94
95
96 public String getUpdateId() {
97 return updateId;
98 }
99
100 public void setUpdateId(String updateId) {
101 this.updateId = updateId;
102 }
103 }