From 78c1f87d61d1411356a422ab841afde67342d228 Mon Sep 17 00:00:00 2001 From: wangwh <2397901735@qq.com> Date: Wed, 04 Sep 2024 20:52:15 +0800 Subject: [PATCH] 1、事项登记、详情查询接口 2、ocr识别文字接口 3、办理流转-查询下属人员、选择经办人、获取工作人员信息、添加办理反馈、获取办理反馈信息、修改办理反馈信息 4、督办-添加督办、回复督办、查询督办列表 5、查询评价 --- dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaAccountMapper.xml | 27 +++++++++++++++++++++++++-- 1 files changed, 25 insertions(+), 2 deletions(-) diff --git a/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaAccountMapper.xml b/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaAccountMapper.xml index cb2ce84..6e45fad 100644 --- a/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaAccountMapper.xml +++ b/dyh-service/dyh-cust/src/main/java/cn/huge/module/pauser/dao/mapper/xml/PaAccountMapper.xml @@ -5,7 +5,7 @@ * @description: 自定义sql,请自行实现业务逻辑 * @company: hugeinfo * @author: liyj - * @time:2024-08-17 15:33:41 + * @time:2024-08-19 20:04:19 * @version 1.0.0 --> <mapper namespace="cn.huge.module.pauser.dao.mapper.PaAccountMapper"> @@ -90,7 +90,7 @@ and limit_time = #{terms.limitTime} </if> <if test="terms.deleteStatus = null and terms.deleteStatus =''"> - and delete_status = '1' + and delete_status = 0 </if> <if test="terms.deleteStatus != null and terms.deleteStatus !=''"> and delete_status = #{terms.deleteStatus} @@ -175,4 +175,27 @@ limit #{page.offset}, #{page.size} </select> + <!-- SeCustWechatDTO结果集 --> + <resultMap id="seCustWechatDTO" type="cn.huge.module.oper.dto.SeCustWechatDTO"> + <result property="id" column="id"/> + <result property="custId" column="cust_id"/> + <result property="mainId" column="main_id"/> + <result property="mainName" column="main_name"/> + <result property="mainAcc" column="main_acc"/> + <result property="mainPower" column="main_power"/> + <result property="appid" column="appid"/> + <result property="secret" column="secret"/> + <result property="token" column="token"/> + <result property="aeskey" column="aeskey"/> + <result property="msgDataFormat" column="msg_data_format"/> + <result property="createTime" column="create_time"/> + <result property="updateTime" column="update_time"/> + </resultMap> + <!-- 根据appid查询小程序配置 --> + <select id="getSeCustWechatByAppid" resultMap="seCustWechatDTO"> + SELECT + * + FROM dyh_se_cust_wechat + WHERE appid = #{appid} + </select> </mapper> \ No newline at end of file -- Gitblit v1.8.0