| | |
| | | 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; |
| | |
| | | * @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 |
| | |
| | | */ |
| | | 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); |
| | | |
| | | } |