From 34b7dd3430e81b8339a4fb65ac5157bbe329cac5 Mon Sep 17 00:00:00 2001 From: zhengyf Date: Fri, 20 Sep 2024 11:21:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=BD=E7=9F=A5=EF=BC=9A=E5=A6=82=E6=8F=92?= =?UTF-8?q?=E5=85=A5=E6=97=A5=E5=BF=97=E6=8A=A5=E9=94=99=EF=BC=8C=E8=AF=B7?= =?UTF-8?q?=E7=AB=8B=E5=88=BB=E5=9B=9E=E6=BB=9A=E4=B8=8A=E4=B8=80=E7=89=88?= =?UTF-8?q?=EF=BC=81=EF=BC=81=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dao/IIntegrationTaskLivingDetailsDao.java | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/service/src/main/java/com/hzya/frame/sysnew/integtationTaskLivingDetails/dao/IIntegrationTaskLivingDetailsDao.java b/service/src/main/java/com/hzya/frame/sysnew/integtationTaskLivingDetails/dao/IIntegrationTaskLivingDetailsDao.java index 976cdb8b..1abded7e 100644 --- a/service/src/main/java/com/hzya/frame/sysnew/integtationTaskLivingDetails/dao/IIntegrationTaskLivingDetailsDao.java +++ b/service/src/main/java/com/hzya/frame/sysnew/integtationTaskLivingDetails/dao/IIntegrationTaskLivingDetailsDao.java @@ -3,6 +3,8 @@ package com.hzya.frame.sysnew.integtationTaskLivingDetails.dao; import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsEntity; import com.hzya.frame.basedao.dao.IBaseDao; import com.hzya.frame.sysnew.integtationTaskLivingDetails.entity.IntegrationTaskLivingDetailsVo; +import org.apache.ibatis.annotations.Result; +import org.apache.ibatis.annotations.Results; import java.util.List; @@ -35,6 +37,40 @@ public interface IIntegrationTaskLivingDetailsDao extends IBaseDao queryPageLeftTask(IntegrationTaskLivingDetailsVo entity); + @Results(id = "UserResult", value = { + @Result (property="id" ,column="id" ), + @Result (property="taskLinvingId" ,column="task_linving_id" ), + @Result (property="result" ,column="result" ), + @Result (property="queryCondition" ,column="query_condition" ), + @Result (property="rootAppPk" ,column="root_app_pk" ), + @Result (property="rootAppBill" ,column="root_app_bill" ), + @Result (property="rootAppNewData" ,column="root_app_new_data" ), + @Result (property="newTransmitInfo" ,column="new_transmit_info" ), + @Result (property="newPushDate" ,column="new_push_date" ), + @Result (property="repairPust" ,column="repair_pust" ), + @Result (property="create_time" ,column="create_time" ), + @Result (property="create_user_id" ,column="create_user_id" ), + @Result (property="modify_time" ,column="modify_time" ), + @Result (property="modify_user_id" ,column="modify_user_id" ), + @Result (property="sts" ,column="sts" ), + @Result (property="sorts" ,column="sorts" ), + @Result (property="senceId" ,column="sence_id" ), + @Result (property="newState" ,column="new_state" ), + @Result (property="businessDate" ,column="business_date" ), + @Result (property="pluginId" ,column="plugin_id" ), + @Result (property="processingTime" ,column="processing_time" ), + @Result (property="processingRemarks" ,column="processing_remarks" ), + @Result (property="processorName" ,column="processor_name" ), + @Result (property="processor" ,column="processor" ), + @Result (property="newSystemNumber" ,column="new_system_number" ), + @Result (property="newSystemPrimary" ,column="new_system_primary" ), + @Result (property="remark" ,column="remark" ), + @Result (property="def1" ,column="def1" ), + @Result (property="def2" ,column="def2" ), + @Result (property="def3" ,column="def3" ), + @Result (property="def4" ,column="def4" ), + @Result (property="def5" ,column="def5" ) + }) Integer entity_updatebyid(IntegrationTaskLivingDetailsEntity integrationTaskLivingDetailsEntity); IntegrationTaskLivingDetailsEntity queryEntity(IntegrationTaskLivingDetailsEntity entity);