Skip to content

Commit

Permalink
fix(controller): mapper name error with Upper case (#1151)
Browse files Browse the repository at this point in the history
fix mapper name error after add check style
  • Loading branch information
goldenxinxing authored Sep 8, 2022
1 parent b938ed2 commit 8a99e2c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@
order by dsv.version_order desc
</select>

<select id="findByDSIdAndVersionNameForUpdate" resultMap="dsVersionResultMap">
<select id="findByDsIdAndVersionNameForUpdate" resultMap="dsVersionResultMap">
<include refid="select_swds_version"/>
and dataset_id = #{datasetId}
and version_name = #{versionName}
for update
</select>

<select id="findByDSIdAndVersionName" resultMap="dsVersionResultMap">
<select id="findByDsIdAndVersionName" resultMap="dsVersionResultMap">
<include refid="select_swds_version"/>
<if test="datasetId != null">
and dataset_id = #{datasetId}
Expand Down

0 comments on commit 8a99e2c

Please sign in to comment.