From adddb6522e95c08bef6bc6b00338ff27d82aa55d Mon Sep 17 00:00:00 2001 From: xusd <hugeinfo123> Date: Thu, 17 Oct 2024 14:42:24 +0800 Subject: [PATCH] fix:网格平台登录对接调整 --- dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/PaAccountMapper.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/PaAccountMapper.java b/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/PaAccountMapper.java index 98abde9..ea6a6da 100644 --- a/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/PaAccountMapper.java +++ b/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/PaAccountMapper.java @@ -1,6 +1,7 @@ package cn.huge.module.pauser.dao.mapper; import cn.huge.module.pauser.domain.po.PaAccount; +import cn.huge.module.oper.dto.SeCustWechatDTO; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.springframework.data.domain.PageRequest; @@ -14,7 +15,7 @@ * @Description 此处仅涉及复杂SQL操作,务必不要在此再次写单表的CRUD操作,因为mybatisPlus已经实现。 * @company: hugeinfo * @author: liyj -* @time: 2024-08-17 15:33:41 +* @time: 2024-08-19 20:04:19 * @version 1.0.0 */ @Repository @@ -61,4 +62,11 @@ */ List<PaAccount> pageTerms(@Param("page") PageRequest page, @Param("terms") Map<String, Object> terms); + /** + * 根据appid查询小程序配置 + * @param appid 小程序appid + * @return SeCustWechatDTO + */ + SeCustWechatDTO getSeCustWechatByAppid(@Param("appid") String appid); + } -- Gitblit v1.8.0