From a3fffa17c643bb96159a23880e1749c486279906 Mon Sep 17 00:00:00 2001 From: leomon <2233021400@qq.com> Date: Thu, 05 Jun 2025 00:32:29 +0800 Subject: [PATCH] 消息中心统一 响应R --- oying-system/src/main/resources/mapper/message/MessageSystemMapper.xml | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/oying-system/src/main/resources/mapper/message/MessageSystemMapper.xml b/oying-system/src/main/resources/mapper/message/MessageSystemMapper.xml index b03dca7..8ef7543 100644 --- a/oying-system/src/main/resources/mapper/message/MessageSystemMapper.xml +++ b/oying-system/src/main/resources/mapper/message/MessageSystemMapper.xml @@ -5,10 +5,14 @@ <id column="id" property="id"/> <result column="start_time" property="startTime"/> <result column="end_time" property="endTime"/> + <result column="create_time" property="createTime"/> + <result column="update_time" property="updateTime"/> + <result column="create_by" property="createBy"/> + <result column="update_by" property="updateBy"/> </resultMap> <sql id="Base_Column_List"> - id, start_time, end_time + id, start_time, end_time, create_time, update_time, create_by, update_by </sql> <select id="findAll" resultMap="BaseResultMap"> -- Gitblit v1.9.3