From 6e4481f095c1c565c6e68e9fbd95ade3ff361210 Mon Sep 17 00:00:00 2001
From: xin <1099200748@qq.com>
Date: Fri, 30 May 2025 17:38:08 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/feature-leomon'

---
 oying-system/src/main/java/com/oying/modules/message/domain/MessageOrderLeave.java |   50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 50 insertions(+), 0 deletions(-)

diff --git a/oying-system/src/main/java/com/oying/modules/message/domain/MessageOrderLeave.java b/oying-system/src/main/java/com/oying/modules/message/domain/MessageOrderLeave.java
new file mode 100644
index 0000000..7a6d625
--- /dev/null
+++ b/oying-system/src/main/java/com/oying/modules/message/domain/MessageOrderLeave.java
@@ -0,0 +1,50 @@
+package com.oying.modules.message.domain;
+
+import lombok.Data;
+import cn.hutool.core.bean.BeanUtil;
+import io.swagger.annotations.ApiModelProperty;
+import cn.hutool.core.bean.copier.CopyOptions;
+import java.sql.Timestamp;
+import javax.validation.constraints.NotBlank;
+import javax.validation.constraints.NotNull;
+import java.io.Serializable;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+
+/**
+* @description /
+* @author 李萌
+* @date 2025-05-20
+**/
+@Data
+@TableName("message_order_leave")
+public class MessageOrderLeave implements Serializable {
+
+    @TableId(value = "id", type = IdType.AUTO)
+    @ApiModelProperty(value = "主键,自增")
+    private Integer id;
+
+    @NotNull
+    @ApiModelProperty(value = "订单ID")
+    private Integer orderId;
+
+    @NotBlank
+    @ApiModelProperty(value = "顾客评价内容")
+    private String customerReview="顾客尚未评价";
+
+    @NotBlank
+    @ApiModelProperty(value = "商家回复内容")
+    private String sellerReply="商家尚未回复";
+
+    @NotBlank
+    @ApiModelProperty(value = "跳转链接")
+    private String link="https://example.com/default-link";
+
+    @ApiModelProperty(value = "创建时间")
+    private Timestamp createTime;
+
+    public void copy(MessageOrderLeave source){
+        BeanUtil.copyProperties(source,this, CopyOptions.create().setIgnoreNullValue(true));
+    }
+}

--
Gitblit v1.9.3