From 57b1a48ab07ad479600e1e1f5f9e661f6a9c9b6e Mon Sep 17 00:00:00 2001 From: leomon <2233021400@qq.com> Date: Tue, 17 Jun 2025 16:00:42 +0800 Subject: [PATCH] 消息中心:添加广告模块 --- 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