From d511a5d775b9bdc5639eefb9dcc8842c9f3e51ce Mon Sep 17 00:00:00 2001
From: zhangzeli <123456>
Date: 星期二, 09 十一月 2021 14:40:31 +0800
Subject: [PATCH] 意见建议

---
 xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/RemoteCall.java |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/RemoteCall.java b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/RemoteCall.java
new file mode 100644
index 0000000..52b5b5f
--- /dev/null
+++ b/xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/entity/RemoteCall.java
@@ -0,0 +1,36 @@
+package cn.exrick.xboot.your.entity;
+
+import cn.exrick.xboot.core.base.XbootBaseEntity;
+import com.baomidou.mybatisplus.annotation.TableName;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import org.hibernate.annotations.DynamicInsert;
+import org.hibernate.annotations.DynamicUpdate;
+
+import javax.persistence.Entity;
+import javax.persistence.Table;
+
+/**
+ * @author Exrick
+ */
+@Data
+@Entity
+@DynamicInsert
+@DynamicUpdate
+@Table(name = "t_remote_call")
+@TableName("t_remote_call")
+@ApiModel(value = "杩滅▼鍛煎彨璁板綍")
+public class RemoteCall extends XbootBaseEntity {
+
+    private static final long serialVersionUID = 1L;
+
+    @ApiModelProperty(value = "鍟嗘埛")
+    private String customerId;
+
+    @ApiModelProperty(value = "鍛煎彨浜�")
+    private String userId;
+
+    @ApiModelProperty(value = "鍛煎彨鐢佃瘽")
+    private String phone;
+}
\ No newline at end of file

--
Gitblit v1.9.1