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