1 package org.kuali.mobility.library.entity;
2
3 import javax.persistence.Column;
4 import javax.persistence.Entity;
5 import javax.persistence.GeneratedValue;
6 import javax.persistence.GenerationType;
7 import javax.persistence.Id;
8 import javax.persistence.Table;
9
10
11
12
13
14
15 @Entity
16 @Table(name="LIBRARY_HOUR_PERIOD")
17 public class LibraryHourPeriod {
18
19
20
21
22 @Id
23 @GeneratedValue(strategy = GenerationType.TABLE)
24 @Column(name="ID")
25 private Long id;
26
27
28
29
30 @Column(name="LABEL")
31 private String label;
32
33
34
35
36 @Column(name="ORDR")
37 private int order;
38
39
40
41
42
43 public Long getId() {
44 return id;
45 }
46
47
48
49
50
51 public void setId(Long id) {
52 this.id = id;
53 }
54
55
56
57
58
59 public String getLabel() {
60 return label;
61 }
62
63
64
65
66
67 public void setLabel(String label) {
68 this.label = label;
69 }
70
71
72
73
74
75 public int getOrder() {
76 return order;
77 }
78
79
80
81
82
83 public void setOrder(int order) {
84 this.order = order;
85 }
86
87 }