初始化项目

This commit is contained in:
2024-04-01 09:20:31 +08:00
commit fefd704e6e
4694 changed files with 1869737 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE mapper
PUBLIC '-//mybatis.org//DTD Mapper 3.0//EN'
'http://mybatis.org/dtd/mybatis-3-mapper.dtd'>
<mapper namespace='com.njcn.mapper.data.SynDataMapper'>
<!-- 删除 -->
<update id="deleteByIndex">
delete from Pqs_syndata where myIndex = #{myIndex} and node = #{node}
</update>
<select id="getSynData" resultType="Float">
select synData from pqs_syndata where myIndex = #{myIndex} and node = #{node}
</select>
</mapper>