summaryrefslogtreecommitdiff
path: root/src/main/resources/mapper/SysDictDao.xml
diff options
context:
space:
mode:
authortanghao <[email protected]>2021-08-06 15:48:55 +0800
committertanghao <[email protected]>2021-08-06 15:48:55 +0800
commit9a61d3da264f1bb86d4ebc305b96b4a5cd80a415 (patch)
treef235a8fc280dcde92530e9b20e09e63e1586011e /src/main/resources/mapper/SysDictDao.xml
parente1bde573b0b647b2e416782711abab638632d2b0 (diff)
fix: 同步原数据过滤已经删除的数据HEADmaster
Diffstat (limited to 'src/main/resources/mapper/SysDictDao.xml')
-rw-r--r--src/main/resources/mapper/SysDictDao.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/mapper/SysDictDao.xml b/src/main/resources/mapper/SysDictDao.xml
index 40a310d..6201514 100644
--- a/src/main/resources/mapper/SysDictDao.xml
+++ b/src/main/resources/mapper/SysDictDao.xml
@@ -4,6 +4,6 @@
<mapper namespace="com.nis.dao.SysDictDao">
<select id="selectDatas" resultType="com.nis.entity.SysDictEntity">
- select * from sys_dict_copy where type = #{type}
+ select * from sys_dict_copy where type = #{type} and del_flag=0
</select>
</mapper> \ No newline at end of file