From 59e91a4e9ddaf23cebb12993c774aa899ab22d16 Mon Sep 17 00:00:00 2001
From: 郑永安 <zyazyz250@sina.com>
Date: Mon, 19 Jun 2023 14:22:45 +0800
Subject: [PATCH] 描述
---
src/main/java/com/gk/firework/Domain/SmsLogInfo.java | 79 +++++++++++++++++++++++++++++++++++++++
1 files changed, 79 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/gk/firework/Domain/SmsLogInfo.java b/src/main/java/com/gk/firework/Domain/SmsLogInfo.java
new file mode 100644
index 0000000..aea7574
--- /dev/null
+++ b/src/main/java/com/gk/firework/Domain/SmsLogInfo.java
@@ -0,0 +1,79 @@
+package com.gk.firework.Domain;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import java.io.Serializable;
+import java.util.Date;
+
+@TableName("smslog")
+public class SmsLogInfo implements Serializable {
+ @TableField(exist = false)
+ private static final long serialVersionUID = 1L;
+
+ @TableId(type = IdType.AUTO)
+ /** id id **/
+ private Long id;
+
+ /** 手机号 mobile **/
+ private String mobile;
+
+ /** 发送时间 sendtime **/
+ private Date sendtime;
+
+ /** 发送次数 times **/
+ private Integer times;
+
+ /**时间类型 1小时 2天**/
+ private Byte type;
+
+ /** id id **/
+ public Long getId() {
+ return id;
+ }
+
+ /** id id **/
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ /** 手机号 mobile **/
+ public String getMobile() {
+ return mobile;
+ }
+
+ /** 手机号 mobile **/
+ public void setMobile(String mobile) {
+ this.mobile = mobile == null ? null : mobile.trim();
+ }
+
+ /** 发送时间 sendtime **/
+ public Date getSendtime() {
+ return sendtime;
+ }
+
+ /** 发送时间 sendtime **/
+ public void setSendtime(Date sendtime) {
+ this.sendtime = sendtime;
+ }
+
+ /** 发送次数 times **/
+ public Integer getTimes() {
+ return times;
+ }
+
+ /** 发送次数 times **/
+ public void setTimes(Integer times) {
+ this.times = times;
+ }
+
+ public Byte getType() {
+ return type;
+ }
+
+ public void setType(Byte type) {
+ this.type = type;
+ }
+}
--
Gitblit v1.9.2