修改班级信息同步数据

This commit is contained in:
2025-12-30 11:41:09 +08:00
parent 4b4f25f813
commit 0a1058f7d8
7 changed files with 171 additions and 22 deletions

View File

@@ -22,7 +22,10 @@
select b.JXZYBH as zydm,b.JXZYJC as zyjc,b.JXZYMC as zymc,a.BMMC yxmc from from_gxsdxyxxzx_xzbm a left join from_gxsdxyxxzx_zyxx b on a.BMBH=b.JXZYSSYXBBH
where b.JXZYBH is not null
</select>
<select id="getClassInfoList" resultType="java.util.Map">
<select id="getClassInfoList" resultType="java.util.Map" parameterType="String">
select BJBH as bjdm,BJSSJXZYBH as zyid,BJMC as bjmc,BJSSNJ as njid from from_gxsdxyxxzx_class
<where>
<if test="bjdm != null and bjdm!= '' ">and BJBH=#{bjdm}</if>
</where>
</select>
</mapper>