Commit 777af585 by 墨竹

Merge remote-tracking branch 'origin/developer' into developer

parents 3787af53 31165474
...@@ -147,7 +147,6 @@ public interface TabHaobanHmQrcodeMapper { ...@@ -147,7 +147,6 @@ public interface TabHaobanHmQrcodeMapper {
*/ */
TabHaobanHmQrcode queryByClerkIdAndOverFlag(@Param("clerkId") String clerkId, TabHaobanHmQrcode queryByClerkIdAndOverFlag(@Param("clerkId") String clerkId,
@Param("wxEnterpriseId") String wxEnterpriseId, @Param("wxEnterpriseId") String wxEnterpriseId,
@Param("overFlag") Integer overFlag,
@Param("hmType") Integer hmType); @Param("hmType") Integer hmType);
/** /**
......
...@@ -123,7 +123,7 @@ public interface HmQrcodeService { ...@@ -123,7 +123,7 @@ public interface HmQrcodeService {
* @author mozhu * @author mozhu
* @date 2022-07-27 14:52:40 * @date 2022-07-27 14:52:40
*/ */
HmQrcodeBO queryByClerkId(String clerkId, String wxEnterpriseId, Integer overFlag,Integer hmType); HmQrcodeBO queryByClerkId(String clerkId, String wxEnterpriseId, Integer hmType);
/** /**
......
...@@ -109,9 +109,9 @@ public class HmQrcodeServiceImpl implements HmQrcodeService { ...@@ -109,9 +109,9 @@ public class HmQrcodeServiceImpl implements HmQrcodeService {
} }
@Override @Override
public HmQrcodeBO queryByClerkId(String clerkId, String wxEnterpriseId, Integer overFlag, Integer hmType) { public HmQrcodeBO queryByClerkId(String clerkId, String wxEnterpriseId, Integer hmType) {
return EntityUtil.changeEntity(HmQrcodeBO.class, return EntityUtil.changeEntity(HmQrcodeBO.class,
tabHaobanHmQrcodeMapper.queryByClerkIdAndOverFlag(clerkId, wxEnterpriseId, overFlag, hmType)); tabHaobanHmQrcodeMapper.queryByClerkIdAndOverFlag(clerkId, wxEnterpriseId, hmType));
} }
@Override @Override
......
...@@ -311,7 +311,6 @@ ...@@ -311,7 +311,6 @@
from tab_haoban_hm_qrcode from tab_haoban_hm_qrcode
where clerk_id = #{clerkId} and status_flag = 1 where clerk_id = #{clerkId} and status_flag = 1
and wx_enterprise_id = #{wxEnterpriseId} and wx_enterprise_id = #{wxEnterpriseId}
and over_flag = #{overFlag}
<if test="hmType != null"> <if test="hmType != null">
and hm_type = #{hmType} and hm_type = #{hmType}
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment