diff --git a/src/main/java/com/saye/hospitalgd/controller/InpatientBillController.java b/src/main/java/com/saye/hospitalgd/controller/InpatientBillController.java new file mode 100644 index 0000000..09533f9 --- /dev/null +++ b/src/main/java/com/saye/hospitalgd/controller/InpatientBillController.java @@ -0,0 +1,418 @@ +package com.saye.hospitalgd.controller; + +import com.github.pagehelper.PageHelper; +import com.github.pagehelper.PageInfo; +import com.saye.hospitalgd.commons.date.DateDUtil; +import com.saye.hospitalgd.commons.excel.ExportXLSX; +import com.saye.hospitalgd.commons.excel.HashMapConversionImpl; +import com.saye.hospitalgd.commons.excel.IConversionByExport; +import com.saye.hospitalgd.commons.log.ExceptionDUtil; +import com.saye.hospitalgd.commons.log.LogUtil; +import com.saye.hospitalgd.commons.string.StringDUtil; +import com.saye.hospitalgd.model.Dicinfo; +import com.saye.hospitalgd.model.StatusDefine; +import com.saye.hospitalgd.service.InpatientBillService; +import com.saye.hospitalgd.service.system.DicinfoService; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import io.swagger.annotations.ApiParam; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.ModelMap; +import org.springframework.web.bind.annotation.*; + +import java.io.File; +import java.util.*; + +/** + * @author thuang + * @version 1.0 + * @description: 住院账单查询 + * @date 2025/11/21 + */ +@Api(value = "住院账单查询相关接口") +@Controller +@RequestMapping("/inpatientBill") +public class InpatientBillController { + + @Autowired + private InpatientBillService inpatientBillService; + + @Autowired + private DicinfoService dicinfoService; + + /** + * 跳转到住院账单查询页面 + */ + @RequestMapping("/toInpatientBill") + public String toInpatientBill(ModelMap modelMap) { + Calendar calendar = Calendar.getInstance(); + calendar.setTime(new Date()); + calendar.add(Calendar.DATE, -1); + Date startDate = calendar.getTime(); + + String startTime = DateDUtil.DateToStr(DateDUtil.yyyy_MM_dd, startDate); + String endTime = DateDUtil.getCurrentDate(DateDUtil.yyyy_MM_dd); + + modelMap.addAttribute("startTime", startTime); + modelMap.addAttribute("endTime", endTime); + + // 支付方式 + List pay_type = dicinfoService.findDicinfoTreeNodeList("PAY_TYPE"); + modelMap.addAttribute("payTypeList", pay_type); + + // 业务类型 + List biz_type = dicinfoService.findDicinfoTreeNodeList("BIZ_TYPE"); + modelMap.addAttribute("bizTypeList", biz_type); + + // 三方支付方式 + List third_pay = dicinfoService.findDicinfoTreeNodeList("THIRD_PAY"); + modelMap.addAttribute("thirdPayList", third_pay); + + return "financialReconciliation/inpatientBill"; + } + + /** + * 查询HIS住院账单明细 + */ + @ApiOperation(value = "查询HIS住院账单明细", notes = "") + @GetMapping("/findHisInpatientDetail") + @ResponseBody + public HashMap findHisInpatientDetail( + @ApiParam(value = "开始时间") String startTime, + @ApiParam(value = "结束时间") String endTime, + @ApiParam(value = "支付方式") String payType, + @ApiParam(value = "业务类型") String bizType, + @ApiParam(value = "模糊查询字段") String likeFiled, + @ApiParam(value = "页码") int page, + @ApiParam(value = "每页限制个数") int limit) { + HashMap responseMap = new HashMap<>(); + + try { + HashMap map = new HashMap<>(); + map.put("startTime", startTime); + map.put("endTime", endTime); + map.put("payType", payType); + map.put("bizType", bizType); + map.put("likeFiled", likeFiled); + + String militaryPaymentCode = getPayTypeCodeByNames("军保支付", "医院垫支"); + String checkPaymentCode = getPayTypeCodeByNames("支票支付", "支票"); + if (checkPaymentCode == null || "".equals(checkPaymentCode)) { + checkPaymentCode = "无"; + } + map.put("military_payment_code", militaryPaymentCode); + map.put("check_payment_code", checkPaymentCode); + + PageHelper.startPage(page, limit); + PageInfo> pageInfo = new PageInfo<>(inpatientBillService.findHisInpatientDetail(map)); + + responseMap.put("code", 0); + responseMap.put("msg", "OK"); + responseMap.put("count", pageInfo.getTotal()); + responseMap.put("data", pageInfo.getList()); + } catch (Exception e) { + e.printStackTrace(); + String msg = e.getMessage(); + responseMap.put("code", 1); + responseMap.put("msg", "查询失败,原因:" + msg); + } + + return responseMap; + } + + /** + * 查询银行住院账单明细 + */ + @ApiOperation(value = "查询银行住院账单明细", notes = "") + @GetMapping("/findBankInpatientDetail") + @ResponseBody + public HashMap findBankInpatientDetail( + @ApiParam(value = "开始时间") String startTime, + @ApiParam(value = "结束时间") String endTime, + @ApiParam(value = "支付方式") String c_zffs, + @ApiParam(value = "模糊查询字段") String likeFiled, + @ApiParam(value = "页码") int page, + @ApiParam(value = "每页限制个数") int limit) { + HashMap responseMap = new HashMap<>(); + + try { + HashMap map = new HashMap<>(); + map.put("startTime", startTime); + map.put("endTime", endTime); + map.put("c_zffs", c_zffs); + map.put("likeFiled", likeFiled); + + PageHelper.startPage(page, limit); + PageInfo> pageInfo = new PageInfo<>(inpatientBillService.findBankInpatientDetail(map)); + + responseMap.put("code", 0); + responseMap.put("msg", "OK"); + responseMap.put("count", pageInfo.getTotal()); + responseMap.put("data", pageInfo.getList()); + } catch (Exception e) { + e.printStackTrace(); + String msg = e.getMessage(); + responseMap.put("code", 1); + responseMap.put("msg", "查询失败,原因:" + msg); + } + + return responseMap; + } + + /** + * 查询每日汇总数据 + */ + @ApiOperation(value = "查询每日汇总数据", notes = "") + @GetMapping("/findDailySummary") + @ResponseBody + public HashMap findDailySummary( + @ApiParam(value = "开始时间") String startTime, + @ApiParam(value = "结束时间") String endTime) { + HashMap responseMap = new HashMap<>(); + + try { + HashMap map = new HashMap<>(); + map.put("startTime", startTime); + map.put("endTime", endTime); + + String militaryPaymentCode = getPayTypeCodeByNames("军保支付", "医院垫支"); + String checkPaymentCode = getPayTypeCodeByNames("支票支付", "支票"); + if (checkPaymentCode == null || "".equals(checkPaymentCode)) { + checkPaymentCode = "无"; + } + map.put("military_payment_code", militaryPaymentCode); + map.put("check_payment_code", checkPaymentCode); + + List> summaryList = inpatientBillService.findDailySummary(map); + + responseMap.put("code", 0); + responseMap.put("msg", "OK"); + responseMap.put("data", summaryList); + } catch (Exception e) { + e.printStackTrace(); + String msg = e.getMessage(); + responseMap.put("code", 1); + responseMap.put("msg", "查询失败,原因:" + msg); + } + + return responseMap; + } + + /** + * 导出HIS住院账单明细 + */ + @RequestMapping("/exportHisInpatientDetail") + @ResponseBody + @ApiOperation(value = "导出HIS住院账单明细", notes = "") + public HashMap exportHisInpatientDetail(@RequestBody HashMap map) { + HashMap responseMap = new HashMap<>(); + String errCode = "0"; + String errMsg = ""; + String dlName = ""; + String fileName = ""; + + String dowloadName = StringDUtil.changeNullToEmpty(map.get("dowloadName")); + + try { + String militaryPaymentCode = getPayTypeCodeByNames("军保支付", "医院垫支"); + String checkPaymentCode = getPayTypeCodeByNames("支票支付", "支票"); + if (checkPaymentCode == null || "".equals(checkPaymentCode)) { + checkPaymentCode = "无"; + } + map.put("military_payment_code", militaryPaymentCode); + map.put("check_payment_code", checkPaymentCode); + + List> list = inpatientBillService.findHisInpatientDetail(map); + + // 支付方式 + List pay_type = dicinfoService.findDicinfoTreeNodeList("PAY_TYPE"); + HashMap payTypeMap = new HashMap<>(); + for (Dicinfo dicinfo : pay_type) { + payTypeMap.put(dicinfo.getDicvalue(), dicinfo.getDicname()); + } + + // 业务类型 + List biz_type = dicinfoService.findDicinfoTreeNodeList("BIZ_TYPE"); + HashMap bizTypeMap = new HashMap<>(); + for (Dicinfo dicinfo : biz_type) { + bizTypeMap.put(dicinfo.getDicvalue(), dicinfo.getDicname()); + } + + for (HashMap hashMap : list) { + String tradingStatus = StringDUtil.changeNullToEmpty(hashMap.get("TRADINGSTATUS")); + if ("1".equals(tradingStatus)) { + hashMap.put("TRADINGSTATUS", "收款记录"); + } else if ("2".equals(tradingStatus)) { + hashMap.put("TRADINGSTATUS", "退款记录"); + } else { + hashMap.put("TRADINGSTATUS", ""); + } + + String biztype = StringDUtil.changeNullToEmpty(hashMap.get("BIZTYPE")); + hashMap.put("BIZTYPE", bizTypeMap.get(biztype)); + + // 支付方式字典转换 + String paytype = StringDUtil.changeNullToEmpty(hashMap.get("PAYTYPE")); + hashMap.put("PAYTYPE", payTypeMap.get(paytype)); + + hashMap.put("PAYMETHOD", "住院"); + } + + if (list.size() > 0) { + // 定义标题头和文件名 + String[] DISTANCE_HEADERNAME = {"交易状态", "业务类型", "支付方式", "交易时间", "交易日期", "操作员", "总金额", "平台交易号", "his订单号", "HIS交易ID", "患者id", "患者姓名"}; + String[] sqlKey = {"TRADINGSTATUS", "BIZTYPE", "PAYTYPE", "TRADETIME", "TRADE_DATE", "HISOPERCODE", "AMOUNT", "PLATFORMTRANSID", "HISTRANSID", "HISTRANSID", "PATIENTID", "PATIENTNAME"}; + + List rulList = new ArrayList<>(list); + + // 创建工作表 + ExportXLSX exportXLS = new ExportXLSX(DISTANCE_HEADERNAME, sqlKey, ExportXLSX.A3, false); + exportXLS.setTitleName(dowloadName); + IConversionByExport conversion = new HashMapConversionImpl(); + exportXLS.setConversion(conversion); + exportXLS.setData(rulList); + + exportXLS.modifyWidthOfHeader("5000", 0); + exportXLS.modifyWidthOfHeader("5000", 1); + exportXLS.modifyWidthOfHeader("5000", 2); + exportXLS.modifyWidthOfHeader("5000", 3); + exportXLS.modifyWidthOfHeader("5000", 4); + exportXLS.modifyWidthOfHeader("5000", 5); + exportXLS.modifyWidthOfHeader("8000", 6); + exportXLS.modifyWidthOfHeader("5000", 7); + exportXLS.modifyWidthOfHeader("5000", 8); + exportXLS.modifyWidthOfHeader("5000", 9); + exportXLS.modifyWidthOfHeader("5000", 10); + exportXLS.modifyWidthOfHeader("10000", 11); + + // 文件名称 + String randomStr = StringDUtil.generateRandomCodeForLength(4); + dlName = DateDUtil.DateToStr(DateDUtil.yyyyMMddHHmmss, new Date()) + randomStr; + fileName = dlName + ".xlsx"; + + String uploadPath = StatusDefine.filePath + "/InpatientBill/"; + File uploadPathFile = new File(uploadPath); + if (!uploadPathFile.exists()) uploadPathFile.mkdirs(); + + String savePath = uploadPath + fileName; + exportXLS.execGenerateExcel(savePath); + } + + } catch (Exception e) { + errCode = "999"; + errMsg = "未知异常:" + ExceptionDUtil.getDetailExceptionMsg(e); + LogUtil.error(this.getClass(), "@@@系统出错!【" + errMsg + "】"); + } + + responseMap.put("errCode", errCode); + responseMap.put("errMsg", errMsg); + responseMap.put("dlName", "InpatientBill/" + fileName); + return responseMap; + } + + private String getPayTypeCodeByNames(String... names) { + for (String name : names) { + HashMap param = new HashMap<>(); + param.put("parentCode", "PAY_TYPE"); + param.put("dicname", name); + List> list = dicinfoService.selectDicinfoListByCondition(param); + if (list != null && list.size() > 0) { + Object val = list.get(0).get("dicvalue"); + String code = StringDUtil.changeNullToEmpty(val); + if (!"".equals(code)) { + return code; + } + } + } + return ""; + } + + /** + * 导出银行住院账单明细 + */ + @RequestMapping("/exportBankInpatientDetail") + @ResponseBody + @ApiOperation(value = "导出银行住院账单明细", notes = "") + public HashMap exportBankInpatientDetail(@RequestBody HashMap map) { + HashMap responseMap = new HashMap<>(); + String errCode = "0"; + String errMsg = ""; + String dlName = ""; + String fileName = ""; + + String dowloadName = StringDUtil.changeNullToEmpty(map.get("dowloadName")); + + try { + List> list = inpatientBillService.findBankInpatientDetail(map); + + // 支付方式 + List pay_type = dicinfoService.findDicinfoTreeNodeList("THIRD_PAY"); + HashMap peyTypeMap = new HashMap<>(); + for (Dicinfo dicinfo : pay_type) { + peyTypeMap.put(dicinfo.getDicvalue(), dicinfo.getDicname()); + } + + for (HashMap hashMap : list) { + String c_zffs = StringDUtil.changeNullToEmpty(hashMap.get("C_ZFFS")); + hashMap.put("C_ZFFS", peyTypeMap.get(c_zffs)); + } + + if (list.size() > 0) { + // 定义标题头和文件名 + String[] DISTANCE_HEADERNAME = {"交易日期", "交易时间", "清算日期", "流水号", "商户订单号", "银商订单号", "交易类型", "卡号", "发卡行", "交易金额", "清算金额", "手续费", "实际支付金额", "终端号", "支付方式", "卡类型"}; + String[] sqlKey = {"C_JYRQ", "C_JYSJ", "C_QSRQ", "C_LSH", "C_SHDDH", "C_YSDDH", "C_JYLX", "C_CARD", "C_FKH", "C_JYJE", "C_QSJE", "C_SXF", "C_SJZFJE", "C_ZDH", "C_ZFFS", "C_KLX"}; + + List rulList = new ArrayList<>(list); + + // 创建工作表 + ExportXLSX exportXLS = new ExportXLSX(DISTANCE_HEADERNAME, sqlKey, ExportXLSX.A3, false); + exportXLS.setTitleName(dowloadName); + IConversionByExport conversion = new HashMapConversionImpl(); + exportXLS.setConversion(conversion); + exportXLS.setData(rulList); + + exportXLS.modifyWidthOfHeader("5000", 0); + exportXLS.modifyWidthOfHeader("5000", 1); + exportXLS.modifyWidthOfHeader("5000", 2); + exportXLS.modifyWidthOfHeader("10000", 3); + exportXLS.modifyWidthOfHeader("6000", 4); + exportXLS.modifyWidthOfHeader("10000", 5); + exportXLS.modifyWidthOfHeader("5000", 6); + exportXLS.modifyWidthOfHeader("5000", 7); + exportXLS.modifyWidthOfHeader("5000", 8); + exportXLS.modifyWidthOfHeader("5000", 9); + exportXLS.modifyWidthOfHeader("5000", 10); + exportXLS.modifyWidthOfHeader("5000", 11); + exportXLS.modifyWidthOfHeader("5000", 12); + exportXLS.modifyWidthOfHeader("5000", 13); + exportXLS.modifyWidthOfHeader("5000", 14); + exportXLS.modifyWidthOfHeader("10000", 15); + + // 文件名称 + String randomStr = StringDUtil.generateRandomCodeForLength(4); + dlName = DateDUtil.DateToStr(DateDUtil.yyyyMMddHHmmss, new Date()) + randomStr; + fileName = dlName + ".xlsx"; + + String uploadPath = StatusDefine.filePath + "/InpatientBill/"; + File uploadPathFile = new File(uploadPath); + if (!uploadPathFile.exists()) uploadPathFile.mkdirs(); + + String savePath = uploadPath + fileName; + exportXLS.execGenerateExcel(savePath); + } + + } catch (Exception e) { + errCode = "999"; + errMsg = "未知异常:" + ExceptionDUtil.getDetailExceptionMsg(e); + LogUtil.error(this.getClass(), "@@@系统出错!【" + errMsg + "】"); + } + + responseMap.put("errCode", errCode); + responseMap.put("errMsg", errMsg); + responseMap.put("dlName", "InpatientBill/" + fileName); + return responseMap; + } +} + + diff --git a/src/main/java/com/saye/hospitalgd/controller/tomcat-dz-stdout.2025-11-27.log b/src/main/java/com/saye/hospitalgd/controller/tomcat-dz-stdout.2025-11-27.log new file mode 100644 index 0000000..0ab9b32 --- /dev/null +++ b/src/main/java/com/saye/hospitalgd/controller/tomcat-dz-stdout.2025-11-27.log @@ -0,0 +1,1911 @@ + +2025-11-27 17:47:58 Apache Commons Daemon procrun stdout initialized. +17:48:10,624 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback-test.xml] +17:48:10,625 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Could NOT find resource [logback.groovy] +17:48:10,626 |-INFO in ch.qos.logback.classic.LoggerContext[default] - Found resource [logback.xml] at [file:/C:/nxwj-dz/apache-tomcat-9.0.68-windows-x64/apache-tomcat-9.0.68/webapps/ROOT/WEB-INF/classes/logback.xml] +17:48:10,749 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - debug attribute not set +17:48:10,755 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.ConsoleAppender] +17:48:10,764 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [stdout] +17:48:10,839 |-WARN in ch.qos.logback.core.ConsoleAppender[stdout] - This appender no longer admits a layout as a sub-component, set an encoder instead. +17:48:10,839 |-WARN in ch.qos.logback.core.ConsoleAppender[stdout] - To ensure compatibility, wrapping your layout in LayoutWrappingEncoder. +17:48:10,839 |-WARN in ch.qos.logback.core.ConsoleAppender[stdout] - See also http://logback.qos.ch/codes.html#layoutInsteadOfEncoder for details +17:48:10,840 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.rolling.RollingFileAppender] +17:48:10,847 |-INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [appLogAppender] +17:48:10,871 |-INFO in c.q.l.core.rolling.TimeBasedRollingPolicy@1660233209 - No compression will be used +17:48:10,874 |-INFO in c.q.l.core.rolling.TimeBasedRollingPolicy@1660233209 - Will use the pattern /dz_logs//appName_IS_UNDEFINED-%d{yyyy-MM-dd}-%i.log for the active file +17:48:10,878 |-INFO in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@760e06e8 - The date pattern is 'yyyy-MM-dd' from file name pattern '/dz_logs//appName_IS_UNDEFINED-%d{yyyy-MM-dd}-%i.log'. +17:48:10,878 |-INFO in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@760e06e8 - Roll-over at midnight. +17:48:10,879 |-INFO in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@760e06e8 - Setting initial period to Wed Aug 06 16:39:11 CST 2025 +17:48:10,879 |-WARN in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@760e06e8 - SizeAndTimeBasedFNATP is deprecated. Use SizeAndTimeBasedRollingPolicy instead +17:48:10,879 |-WARN in ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP@760e06e8 - For more information see http://logback.qos.ch/manual/appenders.html#SizeAndTimeBasedRollingPolicy +17:48:10,885 |-WARN in ch.qos.logback.core.rolling.RollingFileAppender[appLogAppender] - This appender no longer admits a layout as a sub-component, set an encoder instead. +17:48:10,885 |-WARN in ch.qos.logback.core.rolling.RollingFileAppender[appLogAppender] - To ensure compatibility, wrapping your layout in LayoutWrappingEncoder. +17:48:10,885 |-WARN in ch.qos.logback.core.rolling.RollingFileAppender[appLogAppender] - See also http://logback.qos.ch/codes.html#layoutInsteadOfEncoder for details +17:48:10,889 |-INFO in ch.qos.logback.core.rolling.RollingFileAppender[appLogAppender] - Active log file name: /dz_logs//zs_dz.log +17:48:10,889 |-INFO in ch.qos.logback.core.rolling.RollingFileAppender[appLogAppender] - File property is set to [/dz_logs//zs_dz.log] +17:48:10,893 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [com.jojubanking.dz] to INFO +17:48:10,893 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting level of logger [org.springframework] to INFO +17:48:10,893 |-INFO in ch.qos.logback.classic.joran.action.LoggerAction - Setting additivity of logger [org.springframework] to false +17:48:10,893 |-INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to INFO +17:48:10,893 |-INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [stdout] to Logger[ROOT] +17:48:10,895 |-INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration. +17:48:10,896 |-INFO in ch.qos.logback.classic.joran.JoranConfigurator@57891f37 - Registering current configuration as safe fallback point + + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + :: Spring Boot :: (v2.5.3) + +2025-11-27 17:48:12 [main]**************** INFO com.saye.hospitalgd.ServletInitializer - Starting ServletInitializer v0.0.1-SNAPSHOT using Java 1.8.0_432 on WIN-EK4HK98QR6O with PID 15144 (C:\nxwj-dz\apache-tomcat-9.0.68-windows-x64\apache-tomcat-9.0.68\webapps\ROOT\WEB-INF\classes started by LOCAL SERVICE in C:\nxwj-dz\apache-tomcat-9.0.68-windows-x64\apache-tomcat-9.0.68) +2025-11-27 17:48:12 [main]**************** DEBUG com.saye.hospitalgd.ServletInitializer - Running with Spring Boot v2.5.3, Spring v5.3.9 +2025-11-27 17:48:12 [main]**************** INFO com.saye.hospitalgd.ServletInitializer - No active profile set, falling back to default profiles: default +ShiroConfiguration.shirFilter() +2025-11-27 17:48:19 [main]**************** INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Starting... +2025-11-27 17:48:20 [main]**************** INFO com.zaxxer.hikari.HikariDataSource - HikariCP - Start completed. +2025-11-27 17:48:20 [main]**************** INFO org.quartz.impl.StdSchedulerFactory - Using default implementation for ThreadExecutor +2025-11-27 17:48:20 [main]**************** INFO org.quartz.core.SchedulerSignalerImpl - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2025-11-27 17:48:20 [main]**************** INFO org.quartz.core.QuartzScheduler - Quartz Scheduler v.2.3.2 created. +2025-11-27 17:48:20 [main]**************** INFO org.quartz.simpl.RAMJobStore - RAMJobStore initialized. +2025-11-27 17:48:20 [main]**************** INFO org.quartz.core.QuartzScheduler - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'schedulerFactoryBean' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2025-11-27 17:48:20 [main]**************** INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler 'schedulerFactoryBean' initialized from an externally provided properties instance. +2025-11-27 17:48:20 [main]**************** INFO org.quartz.impl.StdSchedulerFactory - Quartz scheduler version: 2.3.2 +2025-11-27 17:48:20 [main]**************** INFO org.quartz.core.QuartzScheduler - JobFactory set to: com.saye.hospitalgd.scheduler.MyJobFactory@3ceec0d +2025-11-27 17:48:21 [main]**************** INFO s.d.s.w.PropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2Controller#getDocumentation(String, HttpServletRequest)] +2025-11-27 17:48:24 [main]**************** WARN org.thymeleaf.templatemode.TemplateMode - [THYMELEAF][main] Template Mode 'LEGACYHTML5' is deprecated. Using Template Mode 'HTML' instead. +2025-11-27 17:48:24 [main]**************** INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper - Context refreshed +2025-11-27 17:48:24 [main]**************** INFO s.d.s.web.plugins.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s) +2025-11-27 17:48:24 [main]**************** INFO s.d.spring.web.scanners.ApiListingReferenceScanner - Scanning for api listing references +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:24 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toDepartManagerUsingGET_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toDepartManagerUsingHEAD_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toDepartManagerUsingPOST_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toDepartManagerUsingPUT_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toDepartManagerUsingPATCH_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toDepartManagerUsingDELETE_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toDepartManagerUsingOPTIONS_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toDepartManagerUsingTRACE_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toHisBillLogUsingGET_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toHisBillLogUsingHEAD_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toHisBillLogUsingPOST_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toHisBillLogUsingPUT_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toHisBillLogUsingPATCH_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toHisBillLogUsingDELETE_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toHisBillLogUsingOPTIONS_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: toHisBillLogUsingTRACE_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: receiveHisDataUsingPOST_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: restartGetBillUsingGET_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: restartGetBillUsingHEAD_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: restartGetBillUsingPOST_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: restartGetBillUsingPUT_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: restartGetBillUsingPATCH_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: restartGetBillUsingDELETE_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: restartGetBillUsingOPTIONS_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: restartGetBillUsingTRACE_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findHisAndThirdJoinDataUsingPOST_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findTradeRecordsUsingGET_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findTradeRecordsUsingHEAD_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findTradeRecordsUsingPOST_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findTradeRecordsUsingPUT_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findTradeRecordsUsingPATCH_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findTradeRecordsUsingDELETE_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findTradeRecordsUsingOPTIONS_1 +2025-11-27 17:48:25 [main]**************** INFO s.d.s.w.r.operation.CachingOperationNameGenerator - Generating unique operation named: findTradeRecordsUsingTRACE_1 +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** WARN s.d.s.w.readers.parameter.ParameterDataTypeReader - Trying to infer dataType org.springframework.ui.ModelMap +2025-11-27 17:48:25 [main]**************** INFO org.quartz.core.QuartzScheduler - Scheduler schedulerFactoryBean_$_NON_CLUSTERED started. +2025-11-27 17:48:26 [main]**************** DEBUG c.s.h.mapper.quzrtz.BaseQuartzConfigMapper.findAll - ==> Preparing: select bqc.CONFIGID,bqc.QUARTZ_NAME,bqc.QUARTZ_GROUP,bqc.STATUS,bqc.QUARTZ_CLASS,bqc.QUARTZ_TYPE,bqc.REMARK,bqc.CREATEUSERID,bqc.EXPRESSION,bqc.CREATE_TIME from base_quartz_config bqc order by bqc.CONFIGID +2025-11-27 17:48:26 [main]**************** DEBUG c.s.h.mapper.quzrtz.BaseQuartzConfigMapper.findAll - ==> Parameters: +2025-11-27 17:48:26 [main]**************** DEBUG c.s.h.mapper.quzrtz.BaseQuartzConfigMapper.findAll - <== Total: 4 +2025-11-27 17:48:26 [main]**************** INFO com.saye.hospitalgd.ServletInitializer - Started ServletInitializer in 14.889 seconds (JVM running for 27.528) +/************************************ʼϵͳĬϲ*************************************************/ +2025-11-27 17:48:26 [main]**************** DEBUG c.s.h.m.s.ServiceParamsMapper.selectServiceParams - ==> Preparing: select param_id,param_name,param_code,param_val,create_time,modify_time,modify_user_name,modify_true_name from service_params WHERE 1=1 order by create_time desc +2025-11-27 17:48:26 [main]**************** DEBUG c.s.h.m.s.ServiceParamsMapper.selectServiceParams - ==> Parameters: +2025-11-27 17:48:26 [main]**************** DEBUG c.s.h.m.s.ServiceParamsMapper.selectServiceParams - <== Total: 9 +/************************************ϵͳĬϲ*************************************************/ +this is MyFilter,url :/index +this is MyFilter,url :/toLogin +2025-11-27 17:48:27 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - ==> Preparing: select PARAM_NAME, PARAM_CODE, PARAM_VAL from service_params where PARAM_CODE = ? +2025-11-27 17:48:27 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - ==> Parameters: prj_name(String) +2025-11-27 17:48:27 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - <== Total: 1 +this is MyFilter,url :/getCode +this is MyFilter,url :/login +2025-11-27 17:49:09 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.UsersMapper.searchByName - ==> Preparing: SELECT u.USER_ID, u.USER_NAME, u.TRUE_NAME, u.MOBILE_PHONE, u.MODIFY_TIME, u.lock_time, u.PASSWORD, u.DEPART_ID, d.DEPART_NAME, u.MODIFY_USER_NAME, u.MODIFY_TRUE_NAME, u.CREATE_DATE FROM users u left join departs d on u.DEPART_ID = d.DEPART_ID where u.user_name = ? +2025-11-27 17:49:09 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.UsersMapper.searchByName - ==> Parameters: yangjing(String) +2025-11-27 17:49:09 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.UsersMapper.searchByName - <== Total: 1 +2025-11-27 17:49:09 [http-nio-58083-exec-9]**************** DEBUG c.s.hospitalgd.mapper.system.LoggerMapper.addLog - ==> Preparing: insert into logger(LOGTYPE, INFORMATION, CREATE_TIME, USER_ID, IP) values (?, ?, ?, ?, ?) +2025-11-27 17:49:09 [http-nio-58083-exec-9]**************** DEBUG c.s.hospitalgd.mapper.system.LoggerMapper.addLog - ==> Parameters: INFO(String), ûyangjing¼ϵͳ(String), 2025-11-27 17:49:09(String), (String), (String) +2025-11-27 17:49:09 [http-nio-58083-exec-9]**************** DEBUG c.s.hospitalgd.mapper.system.LoggerMapper.addLog - <== Updates: 1 +2025-11-27 17:49:09 [http-nio-58083-exec-9]**************** INFO c.s.hospitalgd.controller.system.LoginController - ûyangjing¼ϵͳ +this is MyFilter,url :/index +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /index(String) +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByRole - ==> Preparing: SELECT MENU_ID as id, MENU_NAME as text, PARENT_ID as parentid, SEQ, LINK_URL as urls, ISACTIVE, CREATE_TIME, RESLEVEL,LINK_IMG,LINK_IMG_SIZE FROM menu t where t.isactive = '1' AND MENU_ID in (select a.MENU_ID from menu_role a where a.ROLE_ID in (select role_id from user_role where user_id = ?)) order by length(t.MENU_ID),t.SEQ +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByRole - ==> Parameters: a1ef3ce0e1a84887a547475999de74cf(String) +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByRole - <== Total: 27 +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - ==> Preparing: select PARAM_NAME, PARAM_CODE, PARAM_VAL from service_params where PARAM_CODE = ? +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - ==> Parameters: prj_name(String) +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - <== Total: 1 +this is MyFilter,url :/layui/css/layui.css +this is MyFilter,url :/iconfont/iconfont.css +this is MyFilter,url :/layui/jquery-3.4.1.min.js +this is MyFilter,url :/layui/layui.js +2025-11-27 17:49:09 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +this is MyFilter,url :/js/common.js +2025-11-27 17:49:09 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /iconfont/iconfont.css(String) +2025-11-27 17:49:09 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +this is MyFilter,url :/image/user.png +2025-11-27 17:49:09 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /image/user.png(String) +2025-11-27 17:49:09 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +this is MyFilter,url :/layui/modules/element.js +this is MyFilter,url :/iconfont/iconfont.woff2 +2025-11-27 17:49:09 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /iconfont/iconfont.woff2(String) +2025-11-27 17:49:09 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +this is MyFilter,url :/layui/modules/layer.js +this is MyFilter,url :/layui/css/modules/layer/default/layer.css +this is MyFilter,url :/home/toHome +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/toHome(String) +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 1 +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - ==> Preparing: select * from user_role t where t.user_id = ? and exists(select 1 from menu_role mr where mr.role_id = t.role_id and mr.menu_id = ?) +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - ==> Parameters: a1ef3ce0e1a84887a547475999de74cf(String), 111(String) +2025-11-27 17:49:09 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - <== Total: 1 +this is MyFilter,url :/js/rem.js +2025-11-27 17:49:09 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /js/rem.js(String) +this is MyFilter,url :/js/echarts/echarts.min.js +this is MyFilter,url :/css/common.css +this is MyFilter,url :/js/rules.js +2025-11-27 17:49:09 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:09 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /js/echarts/echarts.min.js(String) +2025-11-27 17:49:09 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:09 [http-nio-58083-exec-8]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-8]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /css/common.css(String) +2025-11-27 17:49:09 [http-nio-58083-exec-8]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:09 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /js/rules.js(String) +2025-11-27 17:49:09 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +this is MyFilter,url :/image/jishu.png +2025-11-27 17:49:09 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /image/jishu.png(String) +2025-11-27 17:49:09 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +this is MyFilter,url :/image/rmb.png +2025-11-27 17:49:09 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:09 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /image/rmb.png(String) +2025-11-27 17:49:09 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +this is MyFilter,url :/layui/modules/table.js +this is MyFilter,url :/layui/modules/laytpl.js +this is MyFilter,url :/layui/modules/laypage.js +this is MyFilter,url :/layui/modules/form.js +this is MyFilter,url :/layui/modules/util.js +this is MyFilter,url :/layui/modules/laydate.js +this is MyFilter,url :/layui/modules/lay.js +this is MyFilter,url :/layui/css/modules/laydate/default/laydate.css +this is MyFilter,url :/layui/modules/tree.js +this is MyFilter,url :/home/findDZData +this is MyFilter,url :/home/findJYData +2025-11-27 17:49:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findDZData(String) +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findJYData(String) +2025-11-27 17:49:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +this is MyFilter,url :/home/findDBZNum +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +this is MyFilter,url :/home/findjyqsChartsData +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findjyqsChartsData(String) +this is MyFilter,url :/home/findjyzbChartsData +this is MyFilter,url :/home/findDBZPro +2025-11-27 17:49:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findDBZNum(String) +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findjyzbChartsData(String) +2025-11-27 17:49:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findDBZPro(String) +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.TransactionDetailMapper.findDBZNum - ==> Preparing: SELECT trade_date, count(1) as num FROM third_join_his where trade_date >= ? and trade_date <= ? and check_result = '1' and is_active = '1' group by trade_date +2025-11-27 17:49:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.TransactionDetailMapper.findDBZNum - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findAllBankDetailNum - ==> Preparing: select count(1) as num from third_join_his where trade_date >= ? and trade_date <= ? and is_active = '1' and I_JYJE is not null +2025-11-27 17:49:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinData - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result from third_join_his WHERE trade_date >=? and trade_date <=? and check_result =? and is_active =? order by trade_date, sort_date desc +2025-11-27 17:49:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinData - ==> Parameters: 2025-11-26(String), 2025-11-26(String), 1(String), 1(String) +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findAllBankDetailNum - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Preparing: select diccode, dicname, dicvalue, parent_code, sort_no, modify_time, create_time from dicinfo where parent_code = ? order by sort_no +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Parameters: THIRD_PAY(String) +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Preparing: select diccode, dicname, dicvalue, parent_code, sort_no, modify_time, create_time from dicinfo where parent_code = ? order by sort_no +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Parameters: THIRD_PAY(String) +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - <== Total: 6 +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - <== Total: 6 +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Preparing: select diccode, dicname, dicvalue, parent_code, sort_no, modify_time, create_time from dicinfo where parent_code = ? order by sort_no +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Parameters: THIRD_PAY(String) +2025-11-27 17:49:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.TransactionDetailMapper.findDBZNum - <== Total: 1 +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - ==> Preparing: select trade_date, I_JYQD, count(1) as num from third_join_his where trade_date >= ? and trade_date <= ? and I_JYLX = '1' and is_active = '1' and I_JYJE is not null group by I_JYQD, trade_date order by I_JYQD, trade_date +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - <== Total: 6 +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - ==> Preparing: select trade_date, I_JYQD, count(1) as num from third_join_his where trade_date >= ? and trade_date <= ? and I_JYLX = '1' and is_active = '1' and I_JYJE is not null group by I_JYQD, trade_date order by I_JYQD, trade_date +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findAllBankDetailNum - <== Total: 1 +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findAllBankDetailSum - ==> Preparing: select IFNULL(sum(I_JYJE), 0) as Money from third_join_his where trade_date >= ? and trade_date <= ? and is_active = '1' and I_JYJE is not null +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findAllBankDetailSum - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.T.findJoinDataNumByTime - ==> Preparing: select aI_ZFFS as I_ZFFS, trade_date, totalNum from (select (case when I_JYQD is null then PayType else I_JYQD end) as aI_ZFFS, trade_date, count(1) as totalNum from third_join_his where trade_date >= ? and trade_date <= ? and is_active = '1' group by aI_ZFFS, trade_date) t +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.T.findJoinDataNumByTime - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinData - <== Total: 5 +2025-11-27 17:49:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - <== Total: 2 +2025-11-27 17:49:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - <== Total: 2 +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.T.findJoinDataNumByTime - <== Total: 4 +2025-11-27 17:49:10 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findAllBankDetailSum - <== Total: 1 +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.TransactionDetailMapper.findDBZFLNumByTime - ==> Preparing: select aI_ZFFS as I_ZFFS, trade_date, num from (SELECT (case when I_JYQD is null then PayType else I_JYQD end) as aI_ZFFS, trade_date, count(1) as num FROM third_join_his where trade_date >= ? and trade_date <= ? and is_active = '1' and check_result = '1' group by aI_ZFFS, trade_date) t +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.TransactionDetailMapper.findDBZFLNumByTime - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:10 [http-nio-58083-exec-10]**************** DEBUG c.s.h.m.TransactionDetailMapper.findDBZFLNumByTime - <== Total: 1 +this is MyFilter,url :/reconciliationLog/toReconciliationLog +2025-11-27 17:49:30 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:30 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /reconciliationLog/toReconciliationLog(String) +2025-11-27 17:49:30 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 1 +2025-11-27 17:49:30 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - ==> Preparing: select * from user_role t where t.user_id = ? and exists(select 1 from menu_role mr where mr.role_id = t.role_id and mr.menu_id = ?) +2025-11-27 17:49:30 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - ==> Parameters: a1ef3ce0e1a84887a547475999de74cf(String), 1804(String) +2025-11-27 17:49:30 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - <== Total: 1 +this is MyFilter,url :/layui/lay/xmSelect/xm-select.js +this is MyFilter,url :/reconciliationLog/findReconciliationLogPageList +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /reconciliationLog/findReconciliationLogPageList(String) +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.m.h.R.findReconciliationLogPageList_COUNT - ==> Preparing: SELECT count(0) FROM (SELECT trade_date, modify_time, create_time, manager_num, status, user_name, remark, ROW_NUMBER() OVER (PARTITION BY trade_date ORDER BY create_time DESC) AS rn FROM reconciliation_info WHERE trade_date IS NOT NULL AND trade_date != '' AND trade_date REGEXP '^[0-9]{4}-[0-9]{2}-[0-9]{2}$' AND status IN ('0', '1') AND manager_num IS NOT NULL AND manager_num NOT LIKE '%.%' AND manager_num REGEXP '^[0-9]+$' AND CAST(manager_num AS UNSIGNED) < 10000 AND (modify_time IS NULL OR modify_time NOT LIKE '%.%') AND (create_time IS NULL OR create_time NOT LIKE '%.%') AND trade_date >= ? AND trade_date <= ?) t WHERE t.rn = 1 +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.m.h.R.findReconciliationLogPageList_COUNT - ==> Parameters: 2025-11-26(String), 2025-11-27(String) +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.m.h.R.findReconciliationLogPageList_COUNT - <== Total: 1 +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.m.h.R.findReconciliationLogPageList - ==> Preparing: select t.trade_date as TRADE_DATE, t.modify_time as MODIFY_TIME, t.create_time as CREATE_TIME, t.manager_num as MANAGER_NUM, t.status as STATUS, t.user_name as USER_NAME, t.remark as REMARK from ( select trade_date, modify_time, create_time, manager_num, status, user_name, remark, ROW_NUMBER() OVER (PARTITION BY trade_date ORDER BY create_time DESC) as rn from reconciliation_info WHERE trade_date is not null and trade_date != '' and trade_date REGEXP '^[0-9]{4}-[0-9]{2}-[0-9]{2}$' and status in ('0', '1') and manager_num is not null and manager_num not like '%.%' and manager_num REGEXP '^[0-9]+$' and CAST(manager_num AS UNSIGNED) < 10000 and (modify_time is null or modify_time not like '%.%') and (create_time is null or create_time not like '%.%') and trade_date >=? and trade_date <=? ) t where t.rn = 1 order by t.trade_date desc LIMIT ? +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.m.h.R.findReconciliationLogPageList - ==> Parameters: 2025-11-26(String), 2025-11-27(String), 20(Integer) +2025-11-27 17:49:30 [http-nio-58083-exec-8]**************** DEBUG c.s.h.m.h.R.findReconciliationLogPageList - <== Total: 1 +this is MyFilter,url :/reconciliationLog/restartManager +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /reconciliationLog/restartManager(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.findReconciliationLogByParam - ==> Preparing: select trade_date, modify_time, create_time, manager_num, status, user_name, remark, quartz_id, quartz_name from reconciliation_info where trade_date = ? +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.findReconciliationLogByParam - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.findReconciliationLogByParam - <== Total: 1 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.findReconciliationLogByParam - ==> Preparing: select trade_date, modify_time, create_time, manager_num, status, user_name, remark, quartz_id, quartz_name from reconciliation_info where trade_date = ? +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.findReconciliationLogByParam - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.findReconciliationLogByParam - <== Total: 1 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - ==> Preparing: select dicname,dicvalue,create_time,diccode from dicinfo where parent_code = ? and dicname like concat('%',concat(?,'%')) order by dicvalue +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - ==> Parameters: PAY_TYPE(String), ҽԺ֧(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - <== Total: 1 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - ==> Preparing: select dicname,dicvalue,create_time,diccode from dicinfo where parent_code = ? and dicname like concat('%',concat(?,'%')) order by dicvalue +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - ==> Parameters: PAY_TYPE(String), ҽ(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - <== Total: 1 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - ==> Preparing: select dicname,dicvalue,create_time,diccode from dicinfo where parent_code = ? and dicname like concat('%',concat(?,'%')) order by dicvalue +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - ==> Parameters: PAY_TYPE(String), Ԥ(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - <== Total: 1 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - ==> Preparing: select dicname,dicvalue,create_time,diccode from dicinfo where parent_code = ? and dicname like concat('%',concat(?,'%')) order by dicvalue +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - ==> Parameters: PAY_TYPE(String), ֧(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.D.selectDicinfoListByCondition - <== Total: 1 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisBillsByDate - ==> Preparing: select * from hisbill_history where trade_date = ? and PayMethod != '2' and PayType != ? and PayType != ? and PayType != ? and PayType != ? +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisBillsByDate - ==> Parameters: 2025-11-26(String), 3(String), 6(String), 7(String), 8(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisBillsByDate - <== Total: 433 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.BankbillsHistoryMapper.findBankBillsByDate - ==> Preparing: select * from bankbill_history where C_JYRQ = ? and (is_inpatient is null or is_inpatient = '0') +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.BankbillsHistoryMapper.findBankBillsByDate - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.BankbillsHistoryMapper.findBankBillsByDate - <== Total: 252 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - ==> Preparing: select PARAM_NAME, PARAM_CODE, PARAM_VAL from service_params where PARAM_CODE = ? +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - ==> Parameters: cash_code(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.S.findParamValByParamCode - <== Total: 1 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinData - ==> Preparing: delete from third_join_his where trade_date = ? +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinData - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinData - <== Updates: 252 +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertJoinDataToHisAndThird - ==> Preparing: insert into third_join_his( JYSJ, I_DDH, I_JYJE, I_JYLX, I_JYQD, TradeTime, TranID, BizType, H_JYLX, Amount , PayType , HisOperNum, PatientID, PatientName , sort_date, trade_date, err_type, check_result, is_active) select concat(b.C_JYRQ, ' ', b.C_JYSJ) as jysj , b.C_SHDDH , b.C_JYJE , b.C_JYLX , b.C_ZFFS , b.C_JYSJ , a.PlatformTransId , a.BizType , a.TradingStatus , a.Amount , a.PayType , a.HisOperCode , a.PatientId , a.PatientName , a.TradeTime , a.trade_date , '' , '0' , '1' from (select * from hisbill_history where trade_date = ? and payType!=? and PayMethod != '2' -- ų˵ļ¼ and PayType != '9' -- ų˻֧볣 and PayType != '10' -- ųͳ֧볣 and payType!=? and payType!=? and payType!=? and payType!=? ) a inner join (select * from bankbill_history where C_JYRQ = ? and (is_inpatient is null or is_inpatient = '0')) b -- ųסԺ on a.PlatformTransId = b.C_SHDDH and a.TradingStatus = b.C_JYLX and ROUND(CAST(a.Amount AS DECIMAL(18,2)), 2) = ROUND(CAST(b.C_JYJE AS DECIMAL(18,2)), 2) +2025-11-27 17:49:32 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertJoinDataToHisAndThird - ==> Parameters: 2025-11-26(String), 5(String), 3(String), 6(String), 7(String), 8(String), 2025-11-26(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertJoinDataToHisAndThird - <== Updates: 212 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertHisUnilateral - ==> Preparing: insert into third_join_his( JYSJ, I_DDH, I_JYJE, I_JYLX, I_JYQD, TradeTime, TranID, BizType, H_JYLX, Amount , PayType , HisOperNum, PatientID, PatientName , sort_date, trade_date, err_type, check_result, is_active) select a.TradeTime as jysj , b.C_SHDDH , b.C_JYJE , b.C_JYLX , b.C_ZFFS , b.C_JYSJ , a.PlatformTransId , a.BizType , a.TradingStatus , a.Amount , a.PayType , a.HisOperCode , a.PatientId , a.PatientName , a.TradeTime , a.trade_date , '1' , '1' , '1' from (select * from hisbill_history where trade_date = ? and payType!=? and PayMethod != '2' -- ų˵ļ¼ and PayType != '9' -- ų˻֧볣 and PayType != '10' -- ųͳ֧볣 and payType!=? and payType!=? and payType!=? and payType!=? ) a left join (select * from bankbill_history where C_JYRQ = ? and (is_inpatient is null or is_inpatient = '0')) b -- ųסԺ on a.PlatformTransId = b.C_SHDDH and a.TradingStatus = b.C_JYLX and ROUND(CAST(a.Amount AS DECIMAL(18,2)), 2) = ROUND(CAST(b.C_JYJE AS DECIMAL(18,2)), 2) where b.C_SHDDH is null +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertHisUnilateral - ==> Parameters: 2025-11-26(String), 5(String), 3(String), 6(String), 7(String), 8(String), 2025-11-26(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertHisUnilateral - <== Updates: 87 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertThirdUnilateral - ==> Preparing: insert into third_join_his( JYSJ, I_DDH, I_JYJE, I_JYLX, I_JYQD, TradeTime, TranID, BizType, H_JYLX, Amount , PayType , HisOperNum, PatientID, PatientName , sort_date, trade_date, err_type, check_result, is_active) select concat(b.C_JYRQ, ' ', b.C_JYSJ) as jysj , b.C_SHDDH , b.C_JYJE , b.C_JYLX , b.C_ZFFS , b.C_JYSJ , a.PlatformTransId , a.BizType , a.TradingStatus , a.Amount , a.PayType , a.HisOperCode , a.PatientId , a.PatientName , b.C_JYSJ , b.C_JYRQ , '2' , '1' , '1' from (select * from hisbill_history where trade_date = ? and payType!=? and PayMethod != '2' -- ų˵ļ¼ and PayType != '9' -- ų˻֧볣 and PayType != '10' -- ųͳ֧볣 and payType!=? and payType!=? and payType!=? and payType!=? ) a right join (select * from bankbill_history where C_JYRQ = ? and (is_inpatient is null or is_inpatient = '0')) b -- ųסԺ on a.PlatformTransId = b.C_SHDDH and a.TradingStatus = b.C_JYLX and ROUND(CAST(a.Amount AS DECIMAL(18,2)), 2) = ROUND(CAST(b.C_JYJE AS DECIMAL(18,2)), 2) where a.PlatformTransId is null +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertThirdUnilateral - ==> Parameters: 2025-11-26(String), 5(String), 3(String), 6(String), 7(String), 8(String), 2025-11-26(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.insertThirdUnilateral - <== Updates: 40 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.aggregateThirdUnilateralByHisSum - ==> Preparing: update third_join_his t join ( select PlatformTransId, TradingStatus, cast(IFNULL(sum(cast(Amount as decimal(18,2))),0) as decimal(18,2)) as his_total, max(TradeTime) as TradeTime, max(PayType) as PayType, max(HisOperCode) as HisOperCode, max(BizType) as BizType, max(PatientId) as PatientId, max(PatientName) as PatientName from hisbill_history where trade_date = ? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and PlatformTransId is not null and PlatformTransId != '' group by PlatformTransId, TradingStatus ) h on h.PlatformTransId = t.I_DDH and h.TradingStatus = t.I_JYLX set t.TradeTime = h.TradeTime, t.TranID = t.I_DDH, t.BizType = h.BizType, t.H_JYLX = h.TradingStatus, t.Amount = h.his_total, t.PayType = h.PayType, t.HisOperNum = h.HisOperCode, t.PatientID = h.PatientId, t.PatientName = h.PatientName, t.sort_date = h.TradeTime, t.err_type = '', t.check_result = '0' where t.trade_date = ? and t.err_type = '2' and t.check_result = '1' and ROUND(CAST(t.I_JYJE AS DECIMAL(18,2)), 2) = ROUND(CAST(h.his_total AS DECIMAL(18,2)), 2) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.aggregateThirdUnilateralByHisSum - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.aggregateThirdUnilateralByHisSum - <== Updates: 34 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.aggregateThirdUnilateralByHisSumAll - ==> Preparing: update third_join_his t join ( select PlatformTransId, cast(IFNULL(sum(cast(Amount as decimal(18,2))),0) as decimal(18,2)) as his_total, max(TradingStatus) as TradingStatus, max(TradeTime) as TradeTime, max(PayType) as PayType, max(HisOperCode) as HisOperCode, max(BizType) as BizType, max(PatientId) as PatientId, max(PatientName) as PatientName from hisbill_history where trade_date = ? and PlatformTransId is not null and PlatformTransId != '' group by PlatformTransId ) h on REPLACE(TRIM(h.PlatformTransId), 'HisCK', '') = REPLACE(TRIM(t.I_DDH), 'HisCK', '') set t.TradeTime = h.TradeTime, t.TranID = t.I_DDH, t.BizType = h.BizType, t.H_JYLX = h.TradingStatus, t.Amount = h.his_total, t.PayType = h.PayType, t.HisOperNum = h.HisOperCode, t.PatientID = h.PatientId, t.PatientName = h.PatientName, t.sort_date = h.TradeTime, t.err_type = '', t.check_result = '0' where t.trade_date = ? and t.err_type = '2' and t.check_result = '1' and ROUND(CAST(t.I_JYJE AS DECIMAL(18,2)), 2) = ROUND(CAST(h.his_total AS DECIMAL(18,2)), 2) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.aggregateThirdUnilateralByHisSumAll - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.aggregateThirdUnilateralByHisSumAll - <== Updates: 0 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.updateHisAndThirdError - ==> Preparing: update third_join_his set err_type='3', check_result='1' where trade_date = ? and check_result = '0' and ROUND(CAST(I_JYJE AS DECIMAL(18,2)), 2) != ROUND(CAST(Amount AS DECIMAL(18,2)), 2) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.updateHisAndThirdError - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.updateHisAndThirdError - <== Updates: 0 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE trade_date=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 339 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByNoManager - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and is_manager = '0' +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByNoManager - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByNoManager - <== Updates: 5 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126170847212HisCK(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: d1f61a9bd29847138e6595cde46ff403(String), 2(String), 20251126170847212HisCK(String), 1(String), 2025-11-26(String), 0340(String), 26(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:33(String), 2025-11-27 17:49:33(String), (String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126160140705HisCK(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: e989e8cb7fe9485aaa0874d8c8f93b84(String), 2(String), 20251126160140705HisCK(String), 1(String), 2025-11-26(String), 0487(String), 52(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:33(String), 2025-11-27 17:49:33(String), (String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126160140705HisCK(String), 1(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126153522763HisCK(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 88adbdbd4fdb4795b028ce80089bcc34(String), 2(String), 20251126153522763HisCK(String), 1(String), 2025-11-26(String), 0336(String), 175(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:33(String), 2025-11-27 17:49:33(String), (String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126153522763HisCK(String), 1(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126085507356HisCK(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: c305ba910daa4dbc9bed01b0371bcc07(String), 2(String), 20251126085507356HisCK(String), 1(String), 2025-11-26(String), 0336(String), 52(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:33(String), 2025-11-27 17:49:33(String), (String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126085507356HisCK(String), 1(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126114422274HisCK(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 6fb71f17cb354c5f967d111d069d0c82(String), 2(String), 20251126114422274HisCK(String), 1(String), 2025-11-26(String), 0337(String), 13(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:33(String), 2025-11-27 17:49:33(String), (String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126114422274HisCK(String), 1(String) +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:33 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126143928943HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: ecb92d9197464e0dbdeee24465de7937(String), 2(String), 20251126143928943HisCK(String), 1(String), 2025-11-26(String), 0488(String), 179.12(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126143928943HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126124124174HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: d4621ec09416499c9f4a97600c2b7f05(String), 2(String), 20251126124124174HisCK(String), 1(String), 2025-11-26(String), 0337(String), 35.6(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126124124174HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126144530904HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: bec0d75c49384c62941bbb38fd0b19ee(String), 2(String), 20251126144530904HisCK(String), 1(String), 2025-11-26(String), 0488(String), 89(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126144530904HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126125623554HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 155c83b0565d425c81927d6875f38c26(String), 2(String), 20251126125623554HisCK(String), 1(String), 2025-11-26(String), 0337(String), 52(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126125623554HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126081534588HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 72a48db4ac6047e2b68b5d5543a06320(String), 2(String), 20251126081534588HisCK(String), 1(String), 2025-11-26(String), 0337(String), 208(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126081534588HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126091110706HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: a8e33ea91e5f43afb7a92faeaab87258(String), 2(String), 20251126091110706HisCK(String), 1(String), 2025-11-26(String), 0336(String), 17.8(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126091110706HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126111456707HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: dc7da1991dcf4d93a9b54aa7df43a880(String), 2(String), 20251126111456707HisCK(String), 1(String), 2025-11-26(String), 0336(String), 216(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126111456707HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126111456707HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126111456707HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126111422623HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 549a10060d9b49a490bb900924aaa085(String), 2(String), 20251126111422623HisCK(String), 1(String), 2025-11-26(String), 0336(String), 445(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126111422623HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126170847212HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126145115543HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 2698ff9d27ce444ebb945208f75c7eaa(String), 2(String), 20251126145115543HisCK(String), 1(String), 2025-11-26(String), 0336(String), 1.2(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126145115543HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126111422623HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126111422623HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126100509019HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 4bc53be1a6f042d883052f3c4979180b(String), 2(String), 20251126100509019HisCK(String), 1(String), 2025-11-26(String), 0488(String), 216(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126100509019HisCK(String), 1(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126142656036HisCK(String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 5207ee770e864ae1949921cd4a3be39e(String), 2(String), 20251126142656036HisCK(String), 1(String), 2025-11-26(String), 0336(String), 52(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:34(String), 2025-11-27 17:49:34(String), (String) +2025-11-27 17:49:34 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126142656036HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126230450219HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 55f8b1d676014d4592c2df95c65d1516(String), 2(String), 20251126230450219HisCK(String), 1(String), 2025-11-26(String), 0340(String), 52(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:35(String), 2025-11-27 17:49:35(String), (String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126230450219HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126081534588HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126081534588HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126170847212HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126125623554HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126125623554HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126145953717HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: b2e190739b834b9a9941652a0f5cfa1f(String), 2(String), 20251126145953717HisCK(String), 1(String), 2025-11-26(String), 0488(String), 13(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:35(String), 2025-11-27 17:49:35(String), (String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126145953717HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126125623554HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126125623554HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126144530904HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126144530904HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126225727246HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 7a013305fa9245878a7782f445a288ec(String), 2(String), 20251126225727246HisCK(String), 1(String), 2025-11-26(String), 0340(String), 216(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:35(String), 2025-11-27 17:49:35(String), (String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126225727246HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126170847212HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126184329654HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 553020f9c3bf4e648fa94473cdbffccf(String), 2(String), 20251126184329654HisCK(String), 1(String), 2025-11-26(String), 0340(String), 45.54(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:35(String), 2025-11-27 17:49:35(String), (String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126184329654HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126221418647HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: b6eae538783b49a4b0efa3219e56c4af(String), 2(String), 20251126221418647HisCK(String), 1(String), 2025-11-26(String), 0340(String), 17.8(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:35(String), 2025-11-27 17:49:35(String), (String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126104205928HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 28dbfaa34ff24822afab619ab4977ad6(String), 2(String), 20251126104205928HisCK(String), 1(String), 2025-11-26(String), 0487(String), 52(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:35(String), 2025-11-27 17:49:35(String), (String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126104205928HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126085507356HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126085507356HisCK(String), 1(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126135110546HisCK(String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 8535a67a6bb9471c8103fbfd261a42c2(String), 2(String), 20251126135110546HisCK(String), 1(String), 2025-11-26(String), 0336(String), 35.6(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:35(String), 2025-11-27 17:49:35(String), (String) +2025-11-27 17:49:35 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126135110546HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126111608299HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 9b9e128ec23b41c4b5419f032f621848(String), 2(String), 20251126111608299HisCK(String), 1(String), 2025-11-26(String), 0487(String), 13(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:36(String), 2025-11-27 17:49:36(String), (String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126111608299HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126100435593HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 70e598ba06524131aeb04bcd6f2348ab(String), 2(String), 20251126100435593HisCK(String), 1(String), 2025-11-26(String), 0488(String), 216(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:36(String), 2025-11-27 17:49:36(String), (String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126100435593HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126160140705HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126160140705HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126145525823HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 7d9b5d82aefe489e9429ae6212b777ef(String), 2(String), 20251126145525823HisCK(String), 1(String), 2025-11-26(String), 0488(String), 13(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:36(String), 2025-11-27 17:49:36(String), (String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126145525823HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126103502460HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 639b4986cfd946f788745a8381e58b86(String), 2(String), 20251126103502460HisCK(String), 1(String), 2025-11-26(String), 0487(String), 86(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:36(String), 2025-11-27 17:49:36(String), (String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126103502460HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126124124174HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126124124174HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126221418647HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126145953717HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126145953717HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126135110546HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126135110546HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126230450219HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126230450219HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126170847212HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126102258984HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: cedcf6a676d740b183a6d830a4f7062f(String), 2(String), 20251126102258984HisCK(String), 1(String), 2025-11-26(String), 0488(String), 26(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:36(String), 2025-11-27 17:49:36(String), (String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126102258984HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126130848804HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 9f1aeb8d1dc24889a0a8c79e7161a4cb(String), 2(String), 20251126130848804HisCK(String), 1(String), 2025-11-26(String), 0337(String), 1199.2(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:36(String), 2025-11-27 17:49:36(String), (String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126130848804HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126144530904HisCK(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126144530904HisCK(String), 1(String) +2025-11-27 17:49:36 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126145525823HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126145525823HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126100435593HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126100435593HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126101043966HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 99ba094d828f4f1bb3c7f6babf2c475b(String), 2(String), 20251126101043966HisCK(String), 1(String), 2025-11-26(String), 0336(String), 445(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:37(String), 2025-11-27 17:49:37(String), (String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126101043966HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126233234254HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 76204a5aa3104f979442a8961313b5c0(String), 2(String), 20251126233234254HisCK(String), 1(String), 2025-11-26(String), 0340(String), 3(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:37(String), 2025-11-27 17:49:37(String), (String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126233234254HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126114422274HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126114422274HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126144530904HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126144530904HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126225727246HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126225727246HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126101043966HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126101043966HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126111608299HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126111608299HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126160140705HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126160140705HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126145953717HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126145953717HisCK(String), 1(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126230450219HisCK(String) +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:37 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126230450219HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126221418647HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126130848804HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126130848804HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126102258984HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126102258984HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126082329632HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 66e56e46585f4823a8b4aba8853a291f(String), 2(String), 20251126082329632HisCK(String), 1(String), 2025-11-26(String), 0487(String), 43.37(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:38(String), 2025-11-27 17:49:38(String), (String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126100509019HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126100509019HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126082141701HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 8f0aea7f18684fdeb9b364bceb19d310(String), 2(String), 20251126082141701HisCK(String), 1(String), 2025-11-26(String), 0336(String), 13(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:38(String), 2025-11-27 17:49:38(String), (String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126082141701HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126153522763HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126153522763HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126082329632HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126094813386HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: c60b4aeaabaf47aaad8e4723b2dda1d1(String), 2(String), 20251126094813386HisCK(String), 1(String), 2025-11-26(String), 0337(String), 13(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:38(String), 2025-11-27 17:49:38(String), (String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126094813386HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126084021871HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 011547747d044af3bf6468f02c842e14(String), 2(String), 20251126084021871HisCK(String), 1(String), 2025-11-26(String), 0336(String), 563.36(String), (String), (String), (String), (String), (String), 0(String), (String), 1(String), (String), 2025-11-27 17:49:38(String), 2025-11-27 17:49:38(String), (String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126084021871HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126082141701HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126082141701HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126091110706HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126091110706HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126153522763HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126153522763HisCK(String), 1(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126104205928HisCK(String) +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:38 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126104205928HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126221418647HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126145115543HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126145115543HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126094813386HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126094813386HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126084021871HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126084021871HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126184329654HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126184329654HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126143928943HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126143928943HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126233234254HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126233234254HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126221418647HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126145115543HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126145115543HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126100435593HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126100435593HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126111422623HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126111422623HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126142656036HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126142656036HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126221418647HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and H_JYLX =? and TranID=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 1(String), 20251126103502460HisCK(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126103502460HisCK(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and PlatformTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), TL20251126011730137588(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and I_DDH=? and I_JYLX=? +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), TL20251126011730137588(String), 1(String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 85e93fd6745a4f15822e4056d1515923(String), (String), (String), (String), 2025-11-26(String), (String), (String), 7.00(String), 1(String), TL20251126011730137588(String), 1_1(String), null, 0(String), (String), 2(String), (String), 2025-11-27 17:49:39(String), 2025-11-27 17:49:39(String), (String) +2025-11-27 17:49:39 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE TranID=? and H_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: TL20251126011730137588(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and PlatformTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), TL20251126011730137588(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and I_DDH=? and I_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), TL20251126011730137588(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: d47516a6f3b3424cab2156f2993394bb(String), (String), (String), (String), 2025-11-26(String), (String), (String), -7.00(String), 2(String), TL20251126011730137588(String), 1_1(String), null, 0(String), (String), 2(String), (String), 2025-11-27 17:49:40(String), 2025-11-27 17:49:40(String), (String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE TranID=? and H_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: TL20251126011730137588(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and PlatformTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), TL20251125045813276247(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and I_DDH=? and I_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), TL20251125045813276247(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 74da3a6f26434e539894329c1a1ab0f3(String), (String), (String), (String), 2025-11-26(String), (String), (String), -7.00(String), 2(String), TL20251125045813276247(String), 1_1(String), null, 0(String), (String), 2(String), (String), 2025-11-27 17:49:40(String), 2025-11-27 17:49:40(String), (String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE TranID=? and H_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: TL20251125045813276247(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.TransactionDetailMapper.updateJoinDate - ==> Preparing: update third_join_his set check_result=? WHERE TranID=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.TransactionDetailMapper.updateJoinDate - ==> Parameters: 2(String), TL20251125045813276247(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.TransactionDetailMapper.updateJoinDate - <== Updates: 2 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.TransactionDetailMapper.updateJoinDate - ==> Preparing: update third_join_his set check_result=? WHERE I_DDH=? and I_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.TransactionDetailMapper.updateJoinDate - ==> Parameters: 2(String), TL20251125045813276247(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.TransactionDetailMapper.updateJoinDate - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.updateUnilateral - ==> Preparing: update unmanger_unilateral set is_manager=?, remark=?, modify_time=? where 1=1 and I_JYLX=? and I_DDH=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.updateUnilateral - ==> Parameters: 0(String), ϵͳԶ(String), 2025-11-27 17:49:40(String), 2(String), TL20251125045813276247(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.updateUnilateral - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and PlatformTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), TL20251126033949715371(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and I_DDH=? and I_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), TL20251126033949715371(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: d9f08e7abaab4e3f8c8bc3bdad611c8e(String), (String), (String), (String), 2025-11-26(String), (String), (String), 7.00(String), 1(String), TL20251126033949715371(String), 1_1(String), null, 0(String), (String), 2(String), (String), 2025-11-27 17:49:40(String), 2025-11-27 17:49:40(String), (String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE TranID=? and H_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: TL20251126033949715371(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and PlatformTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), TL20251126033949715371(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and I_DDH=? and I_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), TL20251126033949715371(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: 06184722aa1e4c4e8ee920c569e875a0(String), (String), (String), (String), 2025-11-26(String), (String), (String), -7.00(String), 2(String), TL20251126033949715371(String), 1_1(String), null, 0(String), (String), 2(String), (String), 2025-11-27 17:49:40(String), 2025-11-27 17:49:40(String), (String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE TranID=? and H_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: TL20251126033949715371(String), 2(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and PlatformTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 7 +ҵһԶೡж=20251126082329632HisCK, HIS¼=7 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? and I_DDH=? and I_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String), 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 0 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Preparing: insert into unmanger_unilateral( id , PayType , TranID , H_JYLX , trade_date , HisOperNum , Amount , I_JYJE , I_JYLX , I_DDH , I_JYQD , TradeTime , is_manager , manager_time , err_type , remark , create_time , modify_time , join_id) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - ==> Parameters: cd273bfc0f1842ee89fafcda1bef4f82(String), (String), (String), (String), 2025-11-26(String), (String), (String), 48.28(String), 1(String), 20251126082329632HisCK(String), 1_1(String), null, 0(String), (String), 2(String), (String), 2025-11-27 17:49:40(String), 2025-11-27 17:49:40(String), (String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.mapper.UnilateralMapper.insertUnilateral - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE TranID=? and H_JYLX=? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 2 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: select TranID, H_JYLX from third_join_his where trade_date = ? and TranID != '' and check_result != '0' group by TranID, H_JYLX having count(TranID) > 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParamAndNotUnique - <== Total: 35 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 5 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:40 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126170847212HisCK(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126160140705HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 3 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126160140705HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126160140705HisCK(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126153522763HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 3 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126153522763HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126153522763HisCK(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126085507356HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126085507356HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126085507356HisCK(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126114422274HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126114422274HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126114422274HisCK(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126143928943HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126143928943HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126143928943HisCK(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126124124174HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126124124174HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126124124174HisCK(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126144530904HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 4 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126144530904HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126144530904HisCK(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126125623554HisCK(String), 1(String) +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 3 +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:41 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126125623554HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126125623554HisCK(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126081534588HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126081534588HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126081534588HisCK(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126091110706HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126091110706HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126091110706HisCK(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126111456707HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126111456707HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126111456707HisCK(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126111422623HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 3 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126111422623HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126111422623HisCK(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126145115543HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 3 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126145115543HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126145115543HisCK(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126100509019HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126100509019HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126100509019HisCK(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126142656036HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126142656036HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126142656036HisCK(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126230450219HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 3 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126230450219HisCK(String), 1(String) +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:42 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126230450219HisCK(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126145953717HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 3 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126145953717HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126145953717HisCK(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126225727246HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126225727246HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126225727246HisCK(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126184329654HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126184329654HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126184329654HisCK(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 6 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126221418647HisCK(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126104205928HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126104205928HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126104205928HisCK(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126135110546HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126135110546HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126135110546HisCK(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126111608299HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126111608299HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126111608299HisCK(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126100435593HisCK(String), 1(String) +2025-11-27 17:49:43 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 3 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126100435593HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126100435593HisCK(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126145525823HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126145525823HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126145525823HisCK(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126103502460HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126103502460HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126103502460HisCK(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126102258984HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126102258984HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126102258984HisCK(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126130848804HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126130848804HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126130848804HisCK(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126101043966HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126101043966HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126101043966HisCK(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126233234254HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126233234254HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126233234254HisCK(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126082329632HisCK(String) +2025-11-27 17:49:44 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 1 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126082141701HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126082141701HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126082141701HisCK(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126094813386HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126094813386HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126094813386HisCK(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Preparing: delete from third_join_his where trade_date = ? and TranID = ? and H_JYLX = ? and check_result != '0' +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - ==> Parameters: 2025-11-26(String), 20251126084021871HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.deleteHisAndThirdJoinDataByParamAndNotUnique - <== Updates: 2 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and TranID = ? and H_JYLX = ? +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - ==> Parameters: 2025-11-26(String), 20251126084021871HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByIdandStatus - <== Updates: 1 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and I_DDH = ? and err_type = '2' +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - ==> Parameters: 2025-11-26(String), 20251126084021871HisCK(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteBankUnilateralByI_DDH - <== Updates: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByJoinIdNotNull - ==> Preparing: delete from unmanger_unilateral where trade_date = ? and join_id is not null and join_id != '' +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByJoinIdNotNull - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.U.deleteUnilateralByJoinIdNotNull - <== Updates: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126170847212HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126160140705HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126160140705HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126153522763HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126153522763HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126085507356HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126085507356HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126114422274HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126114422274HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126143928943HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126143928943HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126124124174HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126124124174HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126144530904HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126144530904HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126125623554HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126125623554HisCK(String), 1(String) +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:45 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126081534588HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126081534588HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126091110706HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126091110706HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126111456707HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126111456707HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126111422623HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126111422623HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126145115543HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126145115543HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126100509019HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126100509019HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126142656036HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126142656036HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126230450219HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126230450219HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126145953717HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126145953717HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126225727246HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126225727246HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126184329654HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126184329654HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126221418647HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126104205928HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126104205928HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126135110546HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126135110546HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126111608299HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126111608299HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126100435593HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126100435593HisCK(String), 1(String) +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:46 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126145525823HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126145525823HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126103502460HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126103502460HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126102258984HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126102258984HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126130848804HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126130848804HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126101043966HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126101043966HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126233234254HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126233234254HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126082329632HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126082141701HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126082141701HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126094813386HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126094813386HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Preparing: select HisOperCode ,PayMethod ,TradingStatus ,BizType ,PayType ,TradeTime ,Amount ,PlatformTransId ,PatientId as PatientID ,PatientName ,trade_date from hisbill_history where trade_date=? and PayMethod != '2' and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and HisTransId=? and TradingStatus=? order by Amount desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - ==> Parameters: 2025-11-26(String), 20251126084021871HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisbillsHistoryMapper.findHisDetailByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Preparing: select I_JYRQ ,I_JYSJ ,I_JZRQ ,I_YHLSH ,I_SHLSH ,I_DDH ,I_DDZT ,I_FKFZH ,I_FKFHM ,I_DDJE ,I_JYJE ,I_SXF ,I_JSJE ,I_GTDM ,I_FXK ,I_ZFKZ ,I_JYLX ,I_QS from bankbills_history where I_JYRQ = ? and I_DDH=? and I_JYLX=? order by I_JYJE desc +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - ==> Parameters: 2025-11-26(String), 20251126084021871HisCK(String), 1(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.B.findBankbillHistoryByParam - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result ,is_active from third_join_his WHERE trade_date=? +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinDataByParam - <== Total: 252 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.R.insertReconciliationResult - ==> Preparing: insert into reconciliation_result(trade_date, third_money, his_money, difference,third_unilateral,his_unilateral, manager_history_unilateral, today_unilateral, unilateral_num, pending_unilateral, pending_unilateral_num, status, area) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?) ON DUPLICATE KEY UPDATE third_money=values(third_money), his_money=values(his_money), difference=values(difference), third_unilateral=values(third_unilateral), his_unilateral=values(his_unilateral), manager_history_unilateral=values(manager_history_unilateral), today_unilateral=values(today_unilateral), unilateral_num=values(unilateral_num), pending_unilateral=values(pending_unilateral), pending_unilateral_num=values(pending_unilateral_num), status=values(status), area=values(area) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.R.insertReconciliationResult - ==> Parameters: 2025-11-26(String), 12534.09(String), 12492.81(String), (String), 41.28(String), 0(String), -7.00(BigDecimal), (String), 5(Integer), 0(String), 0(String), 2(String), (String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.R.insertReconciliationResult - <== Updates: 1 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisDetailMapper.findHisDetailWithZfAmount - ==> Preparing: select PayMethod, TradingStatus, BizType, PayType, TradeTime, HisOperCode, Amount, zfAmount, PlatformTransId, PatientId, PatientName, trade_date, his_wsdl_id, HisTransId, clr_type, insutype, ybzhAmount, ybtcAmount from hisbill_history WHERE trade_date = ? and zfAmount is not null and zfAmount != '' and zfAmount != '0' and zfAmount != '0.00' and ABS(CAST(zfAmount AS DECIMAL(18,2))) > 0 order by TradeTime, PlatformTransId +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisDetailMapper.findHisDetailWithZfAmount - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.HisDetailMapper.findHisDetailWithZfAmount - <== Total: 55 +ʼԷѽˣ55¼ +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Preparing: select id ,PayType ,TranID ,H_JYLX ,trade_date ,HisOperNum ,Amount ,I_JYJE ,I_JYLX ,I_DDH ,I_JYQD ,TradeTime ,is_manager ,manager_time ,err_type ,remark ,create_time ,modify_time ,managerType from unmanger_unilateral where trade_date=? +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - ==> Parameters: 2025-11-26(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.UnilateralMapper.findUnilateralByParam - <== Total: 5 +˹5 +Էѽɣɹƥ䲢ɾ 0 ˼¼ +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.insertReconciliationLog - ==> Preparing: insert into reconciliation_info(trade_date, modify_time, create_time, manager_num, status, user_name, quartz_id, quartz_name) values (?, ?, ?, ?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE modify_time=values(modify_time), user_name=values(user_name), status=values(status), manager_num=values(manager_num) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.insertReconciliationLog - ==> Parameters: 2025-11-26(String), 2025-11-27(String), 2025-11-27(String), 6(Integer), 1(String), (String), 3(String), ˶ʱ(String) +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.h.R.insertReconciliationLog - <== Updates: 2 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.FinanceUserMapper.findActiveFinanceUsers - ==> Preparing: SELECT id, name, wechat_name as wechatName, phone, open_id as openId, is_active as isActive, create_time as createTime, modify_time as modifyTime, remark FROM finance_user WHERE is_active = '1' ORDER BY create_time DESC +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.FinanceUserMapper.findActiveFinanceUsers - ==> Parameters: +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** DEBUG c.s.h.m.s.FinanceUserMapper.findActiveFinanceUsers - <== Total: 0 +2025-11-27 17:49:47 [http-nio-58083-exec-2]**************** INFO com.saye.hospitalgd.service.impl.NotifyServiceImpl - ûõIJԱϢ +֪ͨɣڣ2025-11-26״̬ɹ +this is MyFilter,url :/home/toHome +2025-11-27 17:50:10 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:50:10 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/toHome(String) +2025-11-27 17:50:10 [http-nio-58083-exec-3]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 1 +2025-11-27 17:50:10 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - ==> Preparing: select * from user_role t where t.user_id = ? and exists(select 1 from menu_role mr where mr.role_id = t.role_id and mr.menu_id = ?) +2025-11-27 17:50:10 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - ==> Parameters: a1ef3ce0e1a84887a547475999de74cf(String), 111(String) +2025-11-27 17:50:10 [http-nio-58083-exec-3]**************** DEBUG c.s.h.m.system.MenuMapper.findRoleByUserAndMenu - <== Total: 1 +this is MyFilter,url :/home/findDZData +2025-11-27 17:50:10 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:50:10 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findDZData(String) +2025-11-27 17:50:10 [http-nio-58083-exec-6]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +this is MyFilter,url :/home/findJYData +2025-11-27 17:50:10 [http-nio-58083-exec-6]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinData - ==> Preparing: select JYSJ ,I_DDH ,I_JYJE ,I_JYLX ,I_JYQD ,TradeTime ,TranID ,BizType ,H_JYLX ,Amount ,PayType ,HisOperNum ,PatientID ,PatientName ,sort_date ,trade_date ,err_type ,check_result from third_join_his WHERE trade_date >=? and trade_date <=? and check_result =? and is_active =? order by trade_date, sort_date desc +2025-11-27 17:50:10 [http-nio-58083-exec-6]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinData - ==> Parameters: 2025-11-26(String), 2025-11-26(String), 1(String), 1(String) +this is MyFilter,url :/home/findDBZPro +this is MyFilter,url :/home/findjyqsChartsData +this is MyFilter,url :/home/findjyzbChartsData +this is MyFilter,url :/home/findDBZNum +2025-11-27 17:50:10 [http-nio-58083-exec-6]**************** DEBUG c.s.h.m.T.findHisAndThirdJoinData - <== Total: 5 +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:50:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findjyqsChartsData(String) +2025-11-27 17:50:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findDBZPro(String) +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:50:10 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:50:10 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findJYData(String) +2025-11-27 17:50:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findjyzbChartsData(String) +2025-11-27 17:50:10 [http-nio-58083-exec-5]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:50:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Preparing: select t.menu_id, t.menu_name, t.link_url from menu t where t.isactive = 1 and t.link_url = ? +2025-11-27 17:50:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - ==> Parameters: /home/findDBZNum(String) +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Preparing: select diccode, dicname, dicvalue, parent_code, sort_no, modify_time, create_time from dicinfo where parent_code = ? order by sort_no +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Parameters: THIRD_PAY(String) +2025-11-27 17:50:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.system.MenuMapper.findMenuByUrl - <== Total: 0 +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - <== Total: 6 +2025-11-27 17:50:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Preparing: select diccode, dicname, dicvalue, parent_code, sort_no, modify_time, create_time from dicinfo where parent_code = ? order by sort_no +2025-11-27 17:50:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Parameters: THIRD_PAY(String) +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Preparing: select diccode, dicname, dicvalue, parent_code, sort_no, modify_time, create_time from dicinfo where parent_code = ? order by sort_no +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - ==> Parameters: THIRD_PAY(String) +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - <== Total: 6 +2025-11-27 17:50:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.s.DicinfoMapper.findDicinfoTreeNodeList - <== Total: 6 +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - ==> Preparing: select trade_date, I_JYQD, count(1) as num from third_join_his where trade_date >= ? and trade_date <= ? and I_JYLX = '1' and is_active = '1' and I_JYJE is not null group by I_JYQD, trade_date order by I_JYQD, trade_date +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:50:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.TransactionDetailMapper.findDBZNum - ==> Preparing: SELECT trade_date, count(1) as num FROM third_join_his where trade_date >= ? and trade_date <= ? and check_result = '1' and is_active = '1' group by trade_date +2025-11-27 17:50:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.TransactionDetailMapper.findDBZNum - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - ==> Preparing: select trade_date, I_JYQD, count(1) as num from third_join_his where trade_date >= ? and trade_date <= ? and I_JYLX = '1' and is_active = '1' and I_JYJE is not null group by I_JYQD, trade_date order by I_JYQD, trade_date +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:50:10 [http-nio-58083-exec-4]**************** DEBUG c.s.h.mapper.TransactionDetailMapper.findDBZNum - <== Total: 1 +2025-11-27 17:50:10 [http-nio-58083-exec-7]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - <== Total: 2 +2025-11-27 17:50:10 [http-nio-58083-exec-1]**************** DEBUG c.s.h.m.T.findBankBillNumByTime - <== Total: 2 +2025-11-27 17:50:10 [http-nio-58083-exec-5]**************** DEBUG c.s.h.m.T.findAllBankDetailNum - ==> Preparing: select count(1) as num from third_join_his where trade_date >= ? and trade_date <= ? and is_active = '1' and I_JYJE is not null +2025-11-27 17:50:10 [http-nio-58083-exec-5]**************** DEBUG c.s.h.m.T.findAllBankDetailNum - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:50:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.T.findJoinDataNumByTime - ==> Preparing: select aI_ZFFS as I_ZFFS, trade_date, totalNum from (select (case when I_JYQD is null then PayType else I_JYQD end) as aI_ZFFS, trade_date, count(1) as totalNum from third_join_his where trade_date >= ? and trade_date <= ? and is_active = '1' group by aI_ZFFS, trade_date) t +2025-11-27 17:50:10 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.T.findJoinDataNumByTime - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:50:11 [http-nio-58083-exec-5]**************** DEBUG c.s.h.m.T.findAllBankDetailNum - <== Total: 1 +2025-11-27 17:50:11 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.T.findJoinDataNumByTime - <== Total: 4 +2025-11-27 17:50:11 [http-nio-58083-exec-5]**************** DEBUG c.s.h.m.T.findAllBankDetailSum - ==> Preparing: select IFNULL(sum(I_JYJE), 0) as Money from third_join_his where trade_date >= ? and trade_date <= ? and is_active = '1' and I_JYJE is not null +2025-11-27 17:50:11 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.TransactionDetailMapper.findDBZFLNumByTime - ==> Preparing: select aI_ZFFS as I_ZFFS, trade_date, num from (SELECT (case when I_JYQD is null then PayType else I_JYQD end) as aI_ZFFS, trade_date, count(1) as num FROM third_join_his where trade_date >= ? and trade_date <= ? and is_active = '1' and check_result = '1' group by aI_ZFFS, trade_date) t +2025-11-27 17:50:11 [http-nio-58083-exec-5]**************** DEBUG c.s.h.m.T.findAllBankDetailSum - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:50:11 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.TransactionDetailMapper.findDBZFLNumByTime - ==> Parameters: 2025-11-26(String), 2025-11-26(String) +2025-11-27 17:50:11 [http-nio-58083-exec-5]**************** DEBUG c.s.h.m.T.findAllBankDetailSum - <== Total: 1 +2025-11-27 17:50:11 [http-nio-58083-exec-9]**************** DEBUG c.s.h.m.TransactionDetailMapper.findDBZFLNumByTime - <== Total: 1 diff --git a/src/main/java/com/saye/hospitalgd/mapper/InpatientBillMapper.java b/src/main/java/com/saye/hospitalgd/mapper/InpatientBillMapper.java new file mode 100644 index 0000000..506ee85 --- /dev/null +++ b/src/main/java/com/saye/hospitalgd/mapper/InpatientBillMapper.java @@ -0,0 +1,30 @@ +package com.saye.hospitalgd.mapper; + +import java.util.HashMap; +import java.util.List; + +/** + * @author thuang + * @version 1.0 + * @description: 住院账单查询Mapper接口 + * @date 2025/11/21 + */ +public interface InpatientBillMapper { + + /** + * 查询HIS住院账单明细 + */ + List> findHisInpatientDetail(HashMap map) throws Exception; + + /** + * 查询银行住院账单明细 + */ + List> findBankInpatientDetail(HashMap map) throws Exception; + + /** + * 查询每日汇总数据 + */ + List> findDailySummary(HashMap map) throws Exception; +} + + diff --git a/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/BankGetDataMethodByJHLZF.java b/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/BankGetDataMethodByJHLZF.java index 9be04af..e2fda3f 100644 --- a/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/BankGetDataMethodByJHLZF.java +++ b/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/BankGetDataMethodByJHLZF.java @@ -696,7 +696,7 @@ public class BankGetDataMethodByJHLZF { // 根据终端号判断是否为住院订单 // 终端号为10091548或10091549的为住院订单,不参与对账 - if ("10091548".equals(zdh) || "10091549".equals(zdh) || "10091546".equals(zdh)) { + if ("10091548".equals(zdh) || "10091549".equals(zdh) || "10091546".equals(zdh) || "10091547".equals(zdh) || "10091544".equals(zdh) || "10091545".equals(zdh)) { bankbillHistory.setIsInpatient("1"); // 标记为住院订单 log.info("标记为住院订单: 终端号=" + zdh + ", 订单号=" + bankbillHistory.getCShddh()); } else { diff --git a/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/HISGetDataMethodByJH.java b/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/HISGetDataMethodByJH.java index a0166e6..94e4cf5 100644 --- a/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/HISGetDataMethodByJH.java +++ b/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/HISGetDataMethodByJH.java @@ -34,6 +34,8 @@ public class HISGetDataMethodByJH { private static final Logger log = LoggerFactory.getLogger(HISGetDataMethodByJH.class); + + public HashMap getDate(String id, String name, String trade_date, String his_wsdl_id){ HashMap responseMap=new HashMap<>(); String errCode="0"; @@ -48,6 +50,8 @@ public class HISGetDataMethodByJH { HisInterFaceConfigService hisInterFaceConfigService = GetBeanUtil.getBean(HisInterFaceConfigServiceImpl.class); + + try { //查询需要用到的参数 @@ -146,7 +150,7 @@ public class HISGetDataMethodByJH { //获取PowerTranID和ReceiptNO作为唯一标识 String powerTranID = StringDUtil.changeNullToEmpty(hisBillHashMap.get("powerTranID")); String receiptNO = StringDUtil.changeNullToEmpty(hisBillHashMap.get("receiptNO")); - String hisTransId = StringDUtil.changeNullToEmpty(hisBillHashMap.get("hisTransId")); + // String hisTransId = StringDUtil.changeNullToEmpty(hisBillHashMap.get("hisTransId")); // 已在HisUtil中赋值,此处不再重复获取 // 修改跳过逻辑:只有当关键业务信息都缺失时才跳过 // 检查是否有足够的业务信息来处理这条记录 @@ -163,13 +167,13 @@ public class HISGetDataMethodByJH { // 只有当缺少关键业务信息时才跳过(患者ID、金额、交易时间都为空) if ("".equals(patientId) && "".equals(amount) && "".equals(tradeTime)){ - log.warn("跳过缺少关键业务信息的记录: powerTranID={}, receiptNO={}, hisTransId={}", - powerTranID, receiptNO, hisTransId); + log.warn("跳过缺少关键业务信息的记录: powerTranID={}, receiptNO={}", + powerTranID, receiptNO); continue; } // 对于没有唯一标识的记录,记录警告但继续处理 - if ("".equals(powerTranID) && "".equals(receiptNO) && "".equals(hisTransId)){ + if ("".equals(powerTranID) && "".equals(receiptNO)){ log.warn("处理无唯一标识的记录: patientID={}, amount={}, tradeTime={}", patientId, amount, tradeTime); } @@ -189,6 +193,10 @@ public class HISGetDataMethodByJH { //支付方式 严格按照字典表转换 String originalPayType = StringDUtil.changeNullToEmpty(hisBillHashMap.get("payType")); + + // 保持接口原始的医保账户金额和统筹金额,不做按支付类型的替换或清零 + + // 转换PayType为标准编码 String payType = convertPayTypeByDictionary(originalPayType, payTypeMap); //操作员 @@ -197,10 +205,10 @@ public class HISGetDataMethodByJH { //说明 String remarks = ""; - //银商订单号:优先使用PowerTranID,如果为空则使用ReceiptNO或HisTransId + //银商订单号:优先使用PowerTranID,如果为空则使用ReceiptNO String platformTransId = powerTranID; if ("".equals(platformTransId)) { - platformTransId = "".equals(receiptNO) ? hisTransId : receiptNO; + platformTransId = receiptNO; } //患者姓名 @@ -209,7 +217,6 @@ public class HISGetDataMethodByJH { //交易日期 String thistrade_date = StringDUtil.changeNullToEmpty(hisBillHashMap.get("trade_date")); - //接口厂商 HashMap addMap=new HashMap<>(); addMap.put("payMethod",payMethod); @@ -230,6 +237,7 @@ public class HISGetDataMethodByJH { addMap.put("ybzhAmount",ybzhAmount); // 医保账户金额 addMap.put("ybtcAmount",ybtcAmount); // 医保统筹金额 addMap.put("zfAmount",zfAmount); // 自费金额(混合支付中的自费部分) + addMap.put("hisTransId",receiptNO); // HisTransId字段使用ReceiptNO的值 // 不再合并现金和支票记录,直接保留原始数据 // 因为有些医保账户余额不足时会用现金支付,但仍然属于医保相关记录 diff --git a/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/MedicalInsuranceReconciliationMethod.java b/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/MedicalInsuranceReconciliationMethod.java index 77a3a4c..662f4f3 100644 --- a/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/MedicalInsuranceReconciliationMethod.java +++ b/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/MedicalInsuranceReconciliationMethod.java @@ -70,15 +70,18 @@ public class MedicalInsuranceReconciliationMethod { try { LogUtil.info(this.getClass(), "开始执行医保对账,日期:" + trade_date); - LogUtil.info(this.getClass(), "开始查询医保数据(不限制PayType)"); + LogUtil.info(this.getClass(), "开始查询医保数据(仅统计PayType为9和10的记录,包含账户支付和统筹支付,按HisTransId去重合并统计)"); - // 1. 从数据库查询医保数据,按险种和清算类别分组统计(不限制PayType) + // 1. 从数据库查询医保数据,按险种和清算类别分组统计 + // 只统计PayType为'9'(账户支付)和'10'(统筹支付)的记录 + // 同一个HisTransId可能有多条记录(账户支付和统筹支付),需要合并统计金额 + // 通过HisTransId去重,确保每个交易只统计一次 HisDetailService hisDetailService = GetBeanUtil.getBean(HisDetailServiceImpl.class); HashMap queryMap = new HashMap<>(); queryMap.put("trade_date", trade_date); - // 查询所有有险种和清算类别的记录(不限制PayType) + // 查询医保数据(仅统计PayType为9和10的记录,按HisTransId去重合并统计) List> medicalRecords = hisDetailService.findMedicalInsuranceGroupData(queryMap); if (medicalRecords == null || medicalRecords.size() == 0) { diff --git a/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/ReconciliationMethod.java b/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/ReconciliationMethod.java index 5560237..8e3fbcc 100644 --- a/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/ReconciliationMethod.java +++ b/src/main/java/com/saye/hospitalgd/scheduler/jobMethod/ReconciliationMethod.java @@ -297,6 +297,7 @@ public class ReconciliationMethod { manyToOneSearchMap.put("h_jylx", i_jylx); manyToOneSearchMap.put("trade_date", thistrade_date); manyToOneSearchMap.put("orderby_je", "true"); + manyToOneSearchMap.put("payType", "2"); List> hisList = hisbillsHistoryService.findHisDetailByParam(manyToOneSearchMap); @@ -634,6 +635,7 @@ public class ReconciliationMethod { searchNotUniqueObjMap.put("orderby_je", "true"); + searchNotUniqueObjMap.put("payType", "2"); // his端重复记录 List> list = hisbillsHistoryService.findHisDetailByParam(searchNotUniqueObjMap); diff --git a/src/main/java/com/saye/hospitalgd/service/InpatientBillService.java b/src/main/java/com/saye/hospitalgd/service/InpatientBillService.java new file mode 100644 index 0000000..0ede9b1 --- /dev/null +++ b/src/main/java/com/saye/hospitalgd/service/InpatientBillService.java @@ -0,0 +1,30 @@ +package com.saye.hospitalgd.service; + +import java.util.HashMap; +import java.util.List; + +/** + * @author thuang + * @version 1.0 + * @description: 住院账单查询服务接口 + * @date 2025/11/21 + */ +public interface InpatientBillService { + + /** + * 查询HIS住院账单明细 + */ + List> findHisInpatientDetail(HashMap map) throws Exception; + + /** + * 查询银行住院账单明细 + */ + List> findBankInpatientDetail(HashMap map) throws Exception; + + /** + * 查询每日汇总数据 + */ + List> findDailySummary(HashMap map) throws Exception; +} + + diff --git a/src/main/java/com/saye/hospitalgd/service/impl/InpatientBillServiceImpl.java b/src/main/java/com/saye/hospitalgd/service/impl/InpatientBillServiceImpl.java new file mode 100644 index 0000000..8547aa4 --- /dev/null +++ b/src/main/java/com/saye/hospitalgd/service/impl/InpatientBillServiceImpl.java @@ -0,0 +1,39 @@ +package com.saye.hospitalgd.service.impl; + +import com.saye.hospitalgd.mapper.InpatientBillMapper; +import com.saye.hospitalgd.service.InpatientBillService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.HashMap; +import java.util.List; + +/** + * @author thuang + * @version 1.0 + * @description: 住院账单查询服务实现 + * @date 2025/11/21 + */ +@Service +public class InpatientBillServiceImpl implements InpatientBillService { + + @Autowired + private InpatientBillMapper inpatientBillMapper; + + @Override + public List> findHisInpatientDetail(HashMap map) throws Exception { + return inpatientBillMapper.findHisInpatientDetail(map); + } + + @Override + public List> findBankInpatientDetail(HashMap map) throws Exception { + return inpatientBillMapper.findBankInpatientDetail(map); + } + + @Override + public List> findDailySummary(HashMap map) throws Exception { + return inpatientBillMapper.findDailySummary(map); + } +} + + diff --git a/src/main/resources/mapper/HisDetailMapper.xml b/src/main/resources/mapper/HisDetailMapper.xml index cfb9810..8fb33ae 100644 --- a/src/main/resources/mapper/HisDetailMapper.xml +++ b/src/main/resources/mapper/HisDetailMapper.xml @@ -247,22 +247,37 @@ - + - \ No newline at end of file + diff --git a/src/main/resources/mapper/HisbillsHistoryMapper.xml b/src/main/resources/mapper/HisbillsHistoryMapper.xml index d6c03b3..9b0d220 100644 --- a/src/main/resources/mapper/HisbillsHistoryMapper.xml +++ b/src/main/resources/mapper/HisbillsHistoryMapper.xml @@ -55,7 +55,9 @@ from hisbill_history where trade_date=#{trade_date} - and PayMethod != '2' + and PayMethod != '2' + and cast(IFNULL(ybzhAmount,0) as decimal(19,2)) = 0 + and cast(IFNULL(ybtcAmount,0) as decimal(19,2)) = 0 and PayType != #{military_code} @@ -68,6 +70,9 @@ and PayType != #{military_payment_code} + + and PayType = #{payType} + and HisTransId=#{tranID} @@ -140,4 +145,4 @@ ) - \ No newline at end of file + diff --git a/src/main/resources/mapper/InpatientBillMapper.xml b/src/main/resources/mapper/InpatientBillMapper.xml new file mode 100644 index 0000000..327d129 --- /dev/null +++ b/src/main/resources/mapper/InpatientBillMapper.xml @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/mapper/TransactionDetailMapper.xml b/src/main/resources/mapper/TransactionDetailMapper.xml index 2f867c7..4c1bd79 100644 --- a/src/main/resources/mapper/TransactionDetailMapper.xml +++ b/src/main/resources/mapper/TransactionDetailMapper.xml @@ -123,6 +123,8 @@ , '1' from (select * from hisbill_history where trade_date = #{trade_date} and payType!=#{cash_code} and PayMethod != '2' -- 排除不参与对账的记录 + and PayType != '9' -- 排除账户支付,不参与常规对账 + and PayType != '10' -- 排除统筹支付,不参与常规对账 and payType!=#{military_code} @@ -167,6 +169,8 @@ , '1' from (select * from hisbill_history where trade_date = #{trade_date} and payType!=#{cash_code} and PayMethod != '2' -- 排除不参与对账的记录 + and PayType != '9' -- 排除账户支付,不参与常规对账 + and PayType != '10' -- 排除统筹支付,不参与常规对账 and payType!=#{military_code} @@ -212,6 +216,8 @@ , '1' from (select * from hisbill_history where trade_date = #{trade_date} and payType!=#{cash_code} and PayMethod != '2' -- 排除不参与对账的记录 + and PayType != '9' -- 排除账户支付,不参与常规对账 + and PayType != '10' -- 排除统筹支付,不参与常规对账 and payType!=#{military_code} diff --git a/src/main/resources/templates/financialReconciliation/inpatientBill.html b/src/main/resources/templates/financialReconciliation/inpatientBill.html new file mode 100644 index 0000000..8e11941 --- /dev/null +++ b/src/main/resources/templates/financialReconciliation/inpatientBill.html @@ -0,0 +1,419 @@ + + + + + 住院账单查询 + + + + + + + + + + + +
+
+
+
+
+ +
+ +
+
+
+
+
+ + + +
+
+
+
+ 每日汇总 +   +
+
+ +
+ HIS住院账单明细 +   +
+
+ +
+ 银行住院账单明细 +   +
+
+
+
+ + + +