Commit 9d6e136f authored by luben's avatar luben

Merge branch 'dev' into 'main'

Dev

See merge request !182
parents e69cfb78 ee1100dd
Pipeline #143600 failed with stages
in 29 minutes and 13 seconds
......@@ -73,4 +73,6 @@ public interface GridRegionMapper {
String getRegionJzArea(@Param("id")String id);
int updateRegionJzArea(@Param("id")String id,@Param("JzArea")String JzArea);
String getJzAreaByCode(@Param("code")String code);
}
\ No newline at end of file
......@@ -716,8 +716,12 @@
select jz_area from grid_region
where id = #{id}
</select>
<select id="getJzAreaByCode" resultType="java.lang.String">
select jz_area from grid_region
where wg_code = #{code}
</select>
<update id="changeTreeNodeName">
<update id="changeTreeNodeName">
update grid_region set wg_name=#{name} where id = #{id}
</update>
<update id="changeTreeNodeNameByCode">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment