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);