|
|
@@ -0,0 +1,32 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2017. nTels.co.,ltd. to Present.
|
|
|
+ * All rights reserved.
|
|
|
+ */
|
|
|
+
|
|
|
+package com.ntels.kneet.v3.common.db.entity;
|
|
|
+
|
|
|
+import io.realm.RealmObject;
|
|
|
+import io.realm.annotations.PrimaryKey;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <pre>
|
|
|
+ * 1. ClassName : LoginInfo
|
|
|
+ * 2. FileName : LoginInfo.java
|
|
|
+ * 3. Package : com.ntels.kneet.v3.common.db.entity
|
|
|
+ * 4. Date : 2017-08-11
|
|
|
+ * 5. Author : aaron
|
|
|
+ * 6. Comment : Initialize
|
|
|
+ * </pre>
|
|
|
+ */
|
|
|
+
|
|
|
+public class LoginInfo extends RealmObject {
|
|
|
+
|
|
|
+ @PrimaryKey
|
|
|
+ private String seq;
|
|
|
+ private String loginId;
|
|
|
+ private String loginPass;
|
|
|
+ private String saveIdYn;
|
|
|
+ private String autoLoginYn;
|
|
|
+ private String manualNotViewYn;
|
|
|
+ private String pushYn;
|
|
|
+}
|