|
|
@ -64,7 +64,10 @@ public interface WxmpResiUserSubscribeDao extends BaseDao<WxmpResiUserSubscribeE |
|
|
|
* @Author liushaowen |
|
|
|
* @Date 2020/10/22 13:23 |
|
|
|
*/ |
|
|
|
int clearResiSubscribeCount(@Param("openId") String openId, @Param("templateId") String templateId, @Param("customerId") String customerId,@Param("userId") String userId); |
|
|
|
int clearResiSubscribeCount(@Param("openId") String openId, |
|
|
|
@Param("templateId") String templateId, |
|
|
|
@Param("customerId") String customerId, |
|
|
|
@Param("userId") String userId); |
|
|
|
|
|
|
|
WxmpResiUserSubscribeEntity getWxResiSubscribe(@Param("userId") String userId, |
|
|
|
@Param("customerId") String customerId, |
|
|
@ -77,5 +80,8 @@ public interface WxmpResiUserSubscribeDao extends BaseDao<WxmpResiUserSubscribeE |
|
|
|
@Param("templateId")String templateId, |
|
|
|
@Param("resiOpenId") String resiOpenId); |
|
|
|
|
|
|
|
void unSubscribe(String userId, String customerId, String templateId, String resiOpenId); |
|
|
|
void unSubscribe(@Param("userId") String userId, |
|
|
|
@Param("customerId") String customerId, |
|
|
|
@Param("templateId") String templateId, |
|
|
|
@Param("resiOpenId") String resiOpenId); |
|
|
|
} |
|
|
|