summaryrefslogtreecommitdiff
path: root/src/nis/nms/domains/TableUserDepartment.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/nis/nms/domains/TableUserDepartment.java')
-rw-r--r--src/nis/nms/domains/TableUserDepartment.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/nis/nms/domains/TableUserDepartment.java b/src/nis/nms/domains/TableUserDepartment.java
new file mode 100644
index 0000000..23a6d74
--- /dev/null
+++ b/src/nis/nms/domains/TableUserDepartment.java
@@ -0,0 +1,56 @@
+package nis.nms.domains;
+
+/**
+ * TableUserDepartment entity.
+ *
+ * @author MyEclipse Persistence Tools
+ */
+
+public class TableUserDepartment implements java.io.Serializable {
+
+ // Fields
+
+ private Long id;
+ private Long userid;
+ private Long deptid;
+
+ // Constructors
+
+ /** default constructor */
+ public TableUserDepartment() {
+ }
+
+ /** full constructor */
+ public TableUserDepartment(Long id, Long userid, Long deptid) {
+ this.id = id;
+ this.userid = userid;
+ this.deptid = deptid;
+ }
+
+ // Property accessors
+
+ public Long getId() {
+ return this.id;
+ }
+
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ public Long getUserid() {
+ return this.userid;
+ }
+
+ public void setUserid(Long userid) {
+ this.userid = userid;
+ }
+
+ public Long getDeptid() {
+ return this.deptid;
+ }
+
+ public void setDeptid(Long deptid) {
+ this.deptid = deptid;
+ }
+
+} \ No newline at end of file