Commit b55a6e5a by fudahua

会员标签同步-标签查询接口

parent a57ee6ca
......@@ -140,4 +140,13 @@ public interface QywxTagApiService {
*/
public QywxTagRelationDTO getQywxTagRelationByRelationId(String relationId);
/**
* 根据会员标签关联id 查询关联信息
*
* @param qywxTagId
* @return
*/
public QywxTagInfoDTO getQywxTagByQywxTagId(String qywxTagId);
}
......@@ -863,4 +863,10 @@ public class QywxTagApiServiceImpl implements QywxTagApiService {
TabQywxTagRelation tagRelation = qywxTagService.getQywxTagRelationById(relationId);
return EntityUtil.changeEntityByJSON(QywxTagRelationDTO.class, tagRelation);
}
@Override
public QywxTagInfoDTO getQywxTagByQywxTagId(String qywxTagId) {
TabQywxTag tabQywxTag = qywxTagService.getQywxTagByQywxTagId(null, qywxTagId);
return EntityUtil.changeEntityByJSON(QywxTagInfoDTO.class, tabQywxTag);
}
}
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