diff --git a/blxc-system/src/main/resources/mapper/portal/back/NdNewMapper.xml b/blxc-system/src/main/resources/mapper/portal/back/NdNewMapper.xml index c260e61..86ff302 100644 --- a/blxc-system/src/main/resources/mapper/portal/back/NdNewMapper.xml +++ b/blxc-system/src/main/resources/mapper/portal/back/NdNewMapper.xml @@ -78,9 +78,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" order by a.publish_time desc,a.create_time desc limit ${paramLimitno} + + diff --git a/blxc-system/src/main/resources/mapper/system/NdLbtMapper.xml b/blxc-system/src/main/resources/mapper/system/NdLbtMapper.xml new file mode 100644 index 0000000..8e8a453 --- /dev/null +++ b/blxc-system/src/main/resources/mapper/system/NdLbtMapper.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + select id, file_path, sort from nd_lbt + + + + + + + + insert into nd_lbt + + id, + file_path, + sort, + + + #{id}, + #{filePath}, + #{sort}, + + + + + update nd_lbt + + file_path = #{filePath}, + sort = #{sort}, + + + where id = #{id} + + + + delete from nd_lbt where id = #{id} + + + + delete from nd_lbt where id in + + #{id} + + + + \ No newline at end of file diff --git a/blxc-system/target/classes/mapper/portal/back/NdNewMapper.xml b/blxc-system/target/classes/mapper/portal/back/NdNewMapper.xml index c260e61..86ff302 100644 --- a/blxc-system/target/classes/mapper/portal/back/NdNewMapper.xml +++ b/blxc-system/target/classes/mapper/portal/back/NdNewMapper.xml @@ -78,9 +78,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" order by a.publish_time desc,a.create_time desc limit ${paramLimitno} + +