This commit is contained in:
shuo.wang
2025-04-13 16:23:21 +08:00
parent e123987f3e
commit 688e14a7d8
6 changed files with 24 additions and 3 deletions

View File

@@ -33,6 +33,7 @@
<result column="province_code" jdbcType="VARCHAR" property="provinceCode"/>
<result column="city_code" jdbcType="VARCHAR" property="cityCode"/>
<result column="district_code" jdbcType="VARCHAR" property="districtCode"/>
<result column="point_location" jdbcType="VARCHAR" property="pointLocation"/>
</resultMap>
<sql id="allColumn">
@@ -41,7 +42,7 @@
development_time, point_status, point_score, select_status, submit_audit_count, point_source, deleted,
create_time, update_time,
province, city, district, township, opportunity_point_code, opportunity_point_name,
province_code, city_code, district_code
province_code, city_code, district_code, point_location
</sql>
<select id="getMyPointData" resultType="com.cool.store.vo.point.PointHomePageDataVO">
@@ -330,7 +331,13 @@
city = #{request.city},
district = #{request.district},
township = #{request.township},
point_score = #{request.pointScore}
point_score = #{request.pointScore},
opportunity_point_code = #{request.opportunityPointCode},
opportunity_point_name = #{request.opportunityPointName},
province_code = #{request.provinceCode},
city_code = #{request.cityCode},
district_code = #{request.districtCode},
point_location = #{request.pointLocation}
where id = #{request.id}
</update>