Commit 92df036f by guojuxing

协作商户查询修改,商户ID是写作商户ID

parent 9b5a856e
......@@ -94,7 +94,7 @@ public interface CollaboratorApiService {
/**
* 查询主键ID,协作人那边授权跳转,需要主键ID
* @param enterpriseId
* @param enterpriseId 协作商户ID
* @param phone
* @param appId
* @return
......@@ -103,7 +103,7 @@ public interface CollaboratorApiService {
/**
* 删除
* @param enterpriseId
* @param enterpriseId 写作商户ID
* @param phone
* @param appId
* @return
......
......@@ -251,7 +251,7 @@
select <include refid="Base_Column_List"></include>
from
tab_sys_collaborator
where enterprise_id = #{enterpriseId}
where collaboration_enterprise_id = #{enterpriseId}
and phone = #{phone}
and app_id = #{appId}
and status != 0
......@@ -260,7 +260,7 @@
<update id="deleteByPhoneAndAppId">
update tab_sys_collaborator set status = 0
where enterprise_id = #{enterpriseId}
where collaboration_enterprise_id = #{enterpriseId}
and phone = #{phone}
and app_id = #{appId}
and status != 0
......
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