From 27a798ad231418135e8cfb78c3d0d2c1bcfb39ad Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期二, 18 七月 2023 13:55:43 +0800 Subject: [PATCH] 添加路径 --- ruoyi-project/src/main/resources/mapper/project/BaseTravelcityMapper.xml | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ruoyi-project/src/main/resources/mapper/project/BaseTravelcityMapper.xml b/ruoyi-project/src/main/resources/mapper/project/BaseTravelcityMapper.xml index 89c0b4b..826726b 100644 --- a/ruoyi-project/src/main/resources/mapper/project/BaseTravelcityMapper.xml +++ b/ruoyi-project/src/main/resources/mapper/project/BaseTravelcityMapper.xml @@ -4,7 +4,7 @@ "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.ruoyi.project.mapper.BaseTravelcityMapper"> - <resultMap type="BaseTravelcity" id="BaseTravelcityResult"> + <resultMap type="com.ruoyi.project.domain.BaseTravelcity" id="BaseTravelcityResult"> <result property="id" column="id" /> <result property="citycode" column="citycode" /> <result property="cityname" column="cityname" /> @@ -14,7 +14,7 @@ <result property="others" column="others" /> <result property="food" column="food" /> <result property="remark" column="remark" /> - <result property="delFlag" column="del_flag" /> + <result property="del_flag" column="del_flag" /> <result property="createBy" column="create_by" /> <result property="createTime" column="create_time" /> <result property="updateBy" column="update_by" /> @@ -25,7 +25,7 @@ select id, citycode, cityname, province, transport, hotel, others, food, remark, del_flag, create_by, create_time, update_by, update_time from base_travelcity </sql> - <select id="selectBaseTravelcityList" parameterType="BaseTravelcity" resultMap="BaseTravelcityResult"> + <select id="selectBaseTravelcityList" parameterType="com.ruoyi.project.domain.BaseTravelcity" resultMap="BaseTravelcityResult"> <include refid="selectBaseTravelcityVo"/> <where> <if test="citycode != null and citycode != ''"> and citycode = #{citycode}</if> -- Gitblit v1.9.3