From 27d341342925f11c19fb7a31da7050f5e9041319 Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 19 十月 2023 17:52:29 +0800
Subject: [PATCH] 新增数据分析模块

---
 src/main/java/com/flightfeather/monitor/domain/ds1/entity/LoginInfo.java |  106 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 106 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/flightfeather/monitor/domain/ds1/entity/LoginInfo.java b/src/main/java/com/flightfeather/monitor/domain/ds1/entity/LoginInfo.java
new file mode 100644
index 0000000..503b60a
--- /dev/null
+++ b/src/main/java/com/flightfeather/monitor/domain/ds1/entity/LoginInfo.java
@@ -0,0 +1,106 @@
+package com.flightfeather.monitor.domain.ds1.entity;
+
+import java.util.Date;
+import javax.persistence.*;
+
+@Table(name = "du_js_t_login_info")
+public class LoginInfo {
+    @Id
+    private Integer id;
+
+    @Column(name = "user_name")
+    private String userName;
+
+    private String password;
+
+    private String cookie;
+
+    @Column(name = "cookie_timestamp")
+    private Date cookieTimestamp;
+
+    private String region;
+
+    /**
+     * @return id
+     */
+    public Integer getId() {
+        return id;
+    }
+
+    /**
+     * @param id
+     */
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    /**
+     * @return user_name
+     */
+    public String getUserName() {
+        return userName;
+    }
+
+    /**
+     * @param userName
+     */
+    public void setUserName(String userName) {
+        this.userName = userName == null ? null : userName.trim();
+    }
+
+    /**
+     * @return password
+     */
+    public String getPassword() {
+        return password;
+    }
+
+    /**
+     * @param password
+     */
+    public void setPassword(String password) {
+        this.password = password == null ? null : password.trim();
+    }
+
+    /**
+     * @return cookie
+     */
+    public String getCookie() {
+        return cookie;
+    }
+
+    /**
+     * @param cookie
+     */
+    public void setCookie(String cookie) {
+        this.cookie = cookie == null ? null : cookie.trim();
+    }
+
+    /**
+     * @return cookie_timestamp
+     */
+    public Date getCookieTimestamp() {
+        return cookieTimestamp;
+    }
+
+    /**
+     * @param cookieTimestamp
+     */
+    public void setCookieTimestamp(Date cookieTimestamp) {
+        this.cookieTimestamp = cookieTimestamp;
+    }
+
+    /**
+     * @return region
+     */
+    public String getRegion() {
+        return region;
+    }
+
+    /**
+     * @param region
+     */
+    public void setRegion(String region) {
+        this.region = region == null ? null : region.trim();
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3