From 1894cd3ea093726db90a6baa780a1a2bde708138 Mon Sep 17 00:00:00 2001
From: xuefei <564615061@qq.cm>
Date: 星期二, 17 十月 2023 10:47:13 +0800
Subject: [PATCH] 图片url地址转换
---
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