Explorar el Código

get方法取消del_flag=0条件.

zhengqiang hace 5 años
padre
commit
f48b027baa
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      common/src/main/resources/mapper/base/PersonInfo.xml

+ 1 - 1
common/src/main/resources/mapper/base/PersonInfo.xml

@@ -161,7 +161,7 @@
         a.*,b.name_ as company_name
         from base_person_info a
         left join base_company_info b on a.company_id = b.id_
-        where a.id_=#{0} and a.del_flag = 0 limit 1
+        where a.id_=#{0} limit 1
     </select>
     <select id="exist" parameterType="long" resultType="int">
         select count(*) from base_person_info where id_=#{0}  and del_flag = 0