Sfoglia il codice sorgente

周期定时任务开启

szjbdgzl 2 anni fa
parent
commit
d92e1ff786

+ 23 - 23
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/task/dao/TzqxdsrwbMapper.java

@@ -1,29 +1,29 @@
 package com.lc.ibps.task.dao;
 
-//import com.lc.ibps.task.entity.Tzqxdsrwb;
+import com.lc.ibps.task.entity.Tzqxdsrwb;
 import org.apache.ibatis.annotations.Mapper;
-//import org.apache.ibatis.annotations.Param;
-//
-//import java.util.List;
-//
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
+
 @Mapper
 public interface TzqxdsrwbMapper {
-//    int deleteByPrimaryKey(String id);
-//
-//    int insert(Tzqxdsrwb record);
-//
-//    int insertSelective(Tzqxdsrwb record);
-//
-//    Tzqxdsrwb selectByPrimaryKey(String id);
-//
-//    int updateByPrimaryKeySelective(Tzqxdsrwb record);
-//
-//    int updateByPrimaryKey(Tzqxdsrwb record);
-//
-//    List<Tzqxdsrwb> getTzqxdsrwb(String startSign);
-//
-//    List<Tzqxdsrwb> getTimingTaskTzqxdsrwb(@Param("dateSign") String dateSign);
-//
-//    int updateTimingTaskSign(@Param("id") String id);
-//
+    int deleteByPrimaryKey(String id);
+
+    int insert(Tzqxdsrwb record);
+
+    int insertSelective(Tzqxdsrwb record);
+
+    Tzqxdsrwb selectByPrimaryKey(String id);
+
+    int updateByPrimaryKeySelective(Tzqxdsrwb record);
+
+    int updateByPrimaryKey(Tzqxdsrwb record);
+
+    List<Tzqxdsrwb> getTzqxdsrwb(String startSign);
+
+    List<Tzqxdsrwb> getTimingTaskTzqxdsrwb(@Param("dateSign") String dateSign);
+
+    int updateTimingTaskSign(@Param("id") String id);
+
 }

+ 106 - 169
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/task/server/CycleTaskServer.java

@@ -1,169 +1,106 @@
-//package com.lc.ibps.task.server;
-//
-//import com.lc.ibps.base.service.ServiceConfiguration;
-//import com.lc.ibps.cloud.config.AuthorizationConfig;
-//import com.lc.ibps.cloud.redis.utils.RedisUtil;
-//import com.lc.ibps.mobile.controller.MobileSystemController;
-//import com.lc.ibps.task.services.CycleTaskService;
-//import com.lc.ibps.untils.DateUntil;
-//import lombok.extern.slf4j.Slf4j;
-//import org.springframework.scheduling.annotation.Async;
-//import org.springframework.scheduling.annotation.Scheduled;
-//import org.springframework.stereotype.Component;
-//import org.springframework.stereotype.Service;
-//
-//import javax.annotation.Resource;
-//
-///***
-// *   周期性任务服务
-// *
-// *  * @author  ht
-// */
-//
-//
-////@Component
-//
-//@Component
-//@Slf4j
-//public class CycleTaskServer {
-//
-//    private static ServiceConfiguration SpringContextUtils;
-//    private static MobileSystemController JwtUtil;
-//
-//    private AuthorizationConfig   authorizationConfig;
-//    @Resource
-//    private CycleTaskService cycleTaskService;
-//
-//    //  日期定时 执行一次
-//    //@Scheduled(cron="0 10 5 1/1 * ? ")
-//    @Scheduled(cron="0/30 * * * * ?")
-//    public void timingTask(){
-//      //  UserTokenContext.setToken(getTemporaryToken());
-//
-//     //   authorizationConfig.getToken();
-//
-//        log.info("每日--日期定时:"+DateUntil.getNow().toString() );
-//        String sign="日期定时";
-//        cycleTaskService.timingTaskProcess();
-//
-//    //  2.使用完删除Token,避免性能
-//   //     UserTokenContext.remove();
-//
-//        log.info("每日--日期定时:"+DateUntil.getNow().toString() );
-//    };
-//
-//     @Scheduled(cron="0 10 2 1/1 * ? ")
-//  // @Scheduled(cron="0/30 * * * * ? ")
-//    public void dayTask(){
-//        log.info("每日--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="每日";
-//        cycleTaskService.startProcess(sign);
-//        log.info("每日--周期任务结束:"+DateUntil.getNow().toString() );
-//     };
-//
-//    //   每周执行一次
-//    @Scheduled(cron="0 15 2 ? * MON")
-//    public void weekTask(){
-//        log.info("每周--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="每周";
-//        cycleTaskService.startProcess(sign);
-//        log.info("每周--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-//
-//    //   两周执行一次
-//    @Scheduled(cron="0 15 2 ? * MON")
-//    public void twoWeekTask(){
-//        log.info("每二周--周期任务开始:"+DateUntil.getNow().toString() );
-//        Integer week= DateUntil.getWeek();
-//        if(week%2==0) {
-//            //  2周处理
-//            String sign = "每二周";
-//            cycleTaskService.startProcess(sign);
-//        }
-//        log.info("每二周--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-//    //   每月执行一次
-//    @Scheduled(cron="0 0 2 1 * ?")
-//    public void monthTask(){
-//        log.info("每月--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="每月";
-//        cycleTaskService.startProcess(sign);
-//        log.info("每月--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-//    //   每季执行一次
-//    @Scheduled(cron="0 0 3 1 * ?")
-//    public void seasonTask(){
-//        log.info("季度--周期任务开始:"+DateUntil.getNow().toString() );
-//        Integer month=DateUntil.getMonth();
-//        if(month%3==0) {
-//            //  季度处理
-//            String sign = "季度";
-//            cycleTaskService.startProcess(sign);
-//        }
-//        log.info("季度--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-//    //   每半年执一次
-//    @Scheduled(cron="0 0 3 1 * ?")
-//    public void halfYearTask(){
-//        log.info("每半年--周期任务开始:"+DateUntil.getNow().toString() );
-//        Integer month=DateUntil.getMonth();
-//        if(month%6==0) {
-//            //  半年处理
-//            String sign = "每半年";
-//            cycleTaskService.startProcess(sign);
-//        }
-//        log.info("每半年--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-//
-////    //   每年执一次
-//    @Scheduled(cron="0 15 4 1 1 * ")
-//    public void yearTask(){
-//        log.info("每年--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="每年";
-//        cycleTaskService.startProcess(sign);
-//        log.info("每年--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-//
-//    //   每日上午8点
-//    @Scheduled(cron="0 0 8 * * ?")
-//    public void dailyAt8Am(){
-//        log.info("每日上午8点--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="每日上午8点";
-//        cycleTaskService.startProcess(sign);
-//        log.info("每日上午8点--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-////  每日下午2点
-//    @Scheduled(cron="0 0 14 * * ?")
-//    public void dailyAt2Pm(){
-//        log.info("每日下午2点--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="每日下午2点";
-//        cycleTaskService.startProcess(sign);
-//        log.info("每日下午2点--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-////  工作日上午8点
-//    @Scheduled(cron="0 0 8 ? * MON-FRI")
-//    public void weekdaysAt8am(){
-//        log.info("工作日上午8点--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="工作日上午8点";
-//        cycleTaskService.startProcess(sign);
-//        log.info("工作日上午8点--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-////工作日下午2点
-//    @Scheduled(cron="0 0 14 ? * MON-FRI")
-//    public void weekdaysAt2Pm(){
-//        log.info("工作日下午2点--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="工作日下午2点";
-//        cycleTaskService.startProcess(sign);
-//        log.info("工作日下午2点--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-//// 工作日3点
-//    @Scheduled(cron="0 0 3 ? * MON-FRI")
-//    public void workingDay(){
-//        log.info("工作日3点--周期任务开始:"+DateUntil.getNow().toString() );
-//        String sign="工作日3点";
-//        cycleTaskService.startProcess(sign);
-//        log.info("工作日3点--周期任务开始:"+DateUntil.getNow().toString() );
-//    };
-//
-//
-//}
+package com.lc.ibps.task.server;
+
+import com.lc.ibps.task.services.CycleTaskService;
+import com.lc.ibps.untils.DateUntil;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+
+import javax.annotation.Resource;
+
+/***
+ *   周期性任务服务
+ *
+ *  * @author  ht
+ */
+
+
+@Component
+@Slf4j
+public class CycleTaskServer {
+
+    @Resource
+    private CycleTaskService cycleTaskService;
+
+    // 秒   分    时   日   月    周   年(可选)
+    // 0    1    1    1    *    ?    *
+
+    @Scheduled(cron="0 0 1 1/1 * ? ")
+    public void dayTask(){
+        // 每天凌晨1点执行一次
+        cycleTaskService.startProcess("每日");
+    }
+
+    @Scheduled(cron="0 0 1 ? * MON")
+    public void weekTask(){
+        // 每周执行一次  每个星期一凌晨1点执行
+        cycleTaskService.startProcess("每周");
+    }
+
+    //   两周执行一次
+    @Scheduled(cron="0 15 2 ? * MON")
+    public void twoWeekTask(){
+        Integer week= DateUntil.getWeek();
+        if(week%2==0) {
+            //  2周处理
+            cycleTaskService.startProcess("每二周");
+        }
+    }
+
+    @Scheduled(cron="0 1 1 1 * ?")
+    public void monthTask(){
+        //   每月执行一次  每月一号凌晨1点执行
+        cycleTaskService.startProcess("每月");
+    }
+
+    @Scheduled(cron="0 0 0 1 1,4,7,10 ?")
+    public void seasonTask(){
+        // 因为季度周期为3个月,所以可以将月份设置为1/4/7/10
+        // 每季度执行一次   每个季度的1日0点0分执行
+        cycleTaskService.startProcess("季度");
+    }
+
+    @Scheduled(cron="0 0 0 1 */6 *")
+    public void halfYearTask(){
+        //   每半年执一次
+        cycleTaskService.startProcess("每半年");
+    }
+
+    @Scheduled(cron="0 0 0 1 1 * ")
+    public void yearTask(){
+        //  每年执一次  每年的1月1日凌晨0点执行
+        cycleTaskService.startProcess("每年");
+    }
+
+    @Scheduled(cron="0 0 8 * * ?")
+    public void dailyAt8Am(){
+        //   每日上午8点
+        cycleTaskService.startProcess("每日上午8点");
+    }
+
+    @Scheduled(cron="0 0 14 * * ?")
+    public void dailyAt2Pm(){
+        //  每日下午2点
+        cycleTaskService.startProcess("每日下午2点");
+    }
+
+    @Scheduled(cron="0 0 8 ? * MON-FRI")
+    public void weekdaysAt8am(){
+        //  工作日上午8点
+        cycleTaskService.startProcess("工作日上午8点");
+    }
+
+    @Scheduled(cron="0 0 14 ? * MON-FRI")
+    public void weekdaysAt2Pm(){
+        //工作日下午2点
+        cycleTaskService.startProcess("工作日下午2点");
+    }
+
+    @Scheduled(cron="0 0 3 ? * MON-FRI")
+    public void workingDay(){
+        // 工作日3点
+        cycleTaskService.startProcess("工作日3点");
+    }
+
+
+}

+ 26 - 26
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/task/services/CycleTaskService.java

@@ -1,26 +1,26 @@
-//package com.lc.ibps.task.services;
-//
-//import com.lc.ibps.task.entity.Tzqxdsrwb;
-//
-///***
-// *  周期性任务服务接口
-// */
-//public interface CycleTaskService {
-//
-//    //  每日执行一次
-//    //   每周执行一次
-//    //   两周执行一次
-//    //   每月执行一次
-//    //   每季执行一次
-//    //   每半年执一次
-//    //   每年执一次
-//    //  根据 id 起动流程
-//    void testTask(String id);
-//
-//    void startProcess(String startSign);
-//     //   定时任务执行
-//    void timingTaskProcess();
-//     //   起动任务
-//    void startProcessTask(Tzqxdsrwb varTzqxdsrwb);
-//
-//}
+package com.lc.ibps.task.services;
+
+import com.lc.ibps.task.entity.Tzqxdsrwb;
+
+/***
+ *  周期性任务服务接口
+ */
+public interface CycleTaskService {
+
+    //  每日执行一次
+    //   每周执行一次
+    //   两周执行一次
+    //   每月执行一次
+    //   每季执行一次
+    //   每半年执一次
+    //   每年执一次
+    //  根据 id 起动流程
+    void testTask(String id);
+
+    void startProcess(String startSign);
+     //   定时任务执行
+    void timingTaskProcess();
+     //   起动任务
+    void startProcessTask(Tzqxdsrwb varTzqxdsrwb);
+
+}

+ 0 - 2
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/task/services/FeignHeaderInterceptor.java

@@ -1,10 +1,8 @@
 package com.lc.ibps.task.services;
 
 import com.lc.ibps.cloud.config.AuthorizationConfig;
-import com.lc.ibps.wx.entity.Token;
 import feign.RequestInterceptor;
 import feign.RequestTemplate;
-import org.springframework.http.HttpHeaders;
 import org.springframework.stereotype.Component;
 import org.springframework.web.context.request.RequestContextHolder;
 import org.springframework.web.context.request.ServletRequestAttributes;

+ 94 - 96
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/task/services/impl/CycleTaskServiceImpl.java

@@ -1,96 +1,94 @@
-//package com.lc.ibps.task.services.impl;
-//
-//import com.lc.ibps.bpmn.api.model.inst.IBpmProcInst;
-//import com.lc.ibps.bpmn.api.service.BpmProcInstService;
-//import com.lc.ibps.bpmn.cmd.IbpsProcInstCmd;
-//import com.lc.ibps.bpmn.provider.BpmInstProvider;
-//import com.lc.ibps.cloud.entity.APIRequest;
-//import com.lc.ibps.cloud.entity.APIResult;
-//import com.lc.ibps.task.dao.TzqxdsrwbMapper;
-//import com.lc.ibps.task.entity.Tzqxdsrwb;
-//import com.lc.ibps.task.services.CycleTaskService;
-//import com.lc.ibps.untils.DateUntil;
-//import lombok.extern.slf4j.Slf4j;
-//import org.springframework.beans.factory.annotation.Autowired;
-//import org.springframework.stereotype.Service;
-//
-//import javax.annotation.Resource;
-//import java.util.List;
-//
-//import static jodd.util.ThreadUtil.sleep;
-//
-//@Service
-//@Slf4j
-//public class CycleTaskServiceImpl implements CycleTaskService {
-//    @Resource
-//    private BpmProcInstService bpmProcInstService;
-//
-//    @Autowired
-//    private TzqxdsrwbMapper tzqxdsrwbMapper;
-//
-//    @Autowired
-//    private BpmInstProvider pmInstProvider;
-//    //  起动周期性任务流程
-//    @Override
-//    public void testTask(String id){
-//        Tzqxdsrwb tzqxdsrwb= tzqxdsrwbMapper.selectByPrimaryKey(id);
-//        startProcessTask(tzqxdsrwb);
-//    }
-//
-//    //  起动周期性任务流程
-//    @Override
-//    public void startProcess(String startSign) {
-//       List<Tzqxdsrwb> dataList= tzqxdsrwbMapper.getTzqxdsrwb(startSign);
-//       if(dataList!=null&&dataList.size()>0){
-//           for(Tzqxdsrwb tzqxdsrwbTemp:dataList){
-//               startProcessTask(tzqxdsrwbTemp);
-//           }
-//       }
-//    }
-//    //  日期定时任务
-//    @Override
-//    public void timingTaskProcess() {
-//        String dateSign=DateUntil.getFormatNow();
-//        List<Tzqxdsrwb> dataList= tzqxdsrwbMapper.getTimingTaskTzqxdsrwb(dateSign);
-//        if(dataList!=null&&dataList.size()>0){
-//            for(Tzqxdsrwb tzqxdsrwbTemp:dataList){
-//                startProcessTask(tzqxdsrwbTemp);
-//                updateTimingTask(tzqxdsrwbTemp);
-//            }
-//        }
-//    }
-//
-//    //   日期定时任务业务处理
-//    private void updateTimingTask(Tzqxdsrwb varTzqxdsrwb){
-//        if(varTzqxdsrwb==null||varTzqxdsrwb.getId().equals("")){
-//            return;
-//        }
-//        tzqxdsrwbMapper.updateTimingTaskSign(varTzqxdsrwb.getId());
-//    }
-//
-//    //   开始任务
-//    @Override
-//    public void startProcessTask(Tzqxdsrwb varTzqxdsrwb){
-//       try {
-//           //  线程等 10000
-//           Thread.sleep(20000);
-//           if (varTzqxdsrwb != null) {
-//               IbpsProcInstCmd cmd = null;
-//               APIRequest request = new APIRequest();
-//               request.addParameters("defId", varTzqxdsrwb.getLiuChengId());
-//               request.addParameters("version", "0");
-//               request.addParameters("data", varTzqxdsrwb.getChuShiShuJu());
-//               cmd = pmInstProvider.getStartCmd(request);
-//               cmd.setSubject(varTzqxdsrwb.getRenWuMingCheng());
-//               cmd.setCurUser("jinyuan");
-//               cmd.setCurUserName("张维敏");
-//               IBpmProcInst inst = bpmProcInstService.startProcInst(cmd);
-//               log.info(inst.toString());
-//               cmd.setCurUserName("张维敏");
-//           }
-//       } catch (Exception e){
-//           log.error("执行任务发生了错误:"+e);
-//       }
-//    }
-//
-//}
+package com.lc.ibps.task.services.impl;
+
+import com.lc.ibps.bpmn.api.IBpmInstService;
+import com.lc.ibps.bpmn.api.model.inst.IBpmProcInst;
+import com.lc.ibps.bpmn.api.service.BpmProcInstService;
+import com.lc.ibps.bpmn.cmd.IbpsProcInstCmd;
+import com.lc.ibps.bpmn.provider.BpmInstProvider;
+import com.lc.ibps.cloud.entity.APIRequest;
+import com.lc.ibps.task.dao.TzqxdsrwbMapper;
+import com.lc.ibps.task.entity.Tzqxdsrwb;
+import com.lc.ibps.task.services.CycleTaskService;
+import com.lc.ibps.untils.DateUntil;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import javax.annotation.Resource;
+import java.util.List;
+
+@Service
+@Slf4j
+public class CycleTaskServiceImpl implements CycleTaskService {
+    @Resource
+    private BpmProcInstService bpmProcInstService;
+
+    @Autowired
+    private TzqxdsrwbMapper tzqxdsrwbMapper;
+
+    @Autowired
+    private BpmInstProvider pmInstProvider;
+
+    //  起动周期性任务流程
+    @Override
+    public void testTask(String id){
+        Tzqxdsrwb tzqxdsrwb= tzqxdsrwbMapper.selectByPrimaryKey(id);
+        startProcessTask(tzqxdsrwb);
+    }
+
+    //  起动周期性任务流程
+    @Override
+    public void startProcess(String startSign) {
+        List<Tzqxdsrwb> dataList= tzqxdsrwbMapper.getTzqxdsrwb(startSign);
+        if(dataList!=null&&dataList.size()>0){
+            for(Tzqxdsrwb tzqxdsrwbTemp:dataList){
+                startProcessTask(tzqxdsrwbTemp);
+            }
+        }
+    }
+    //  日期定时任务
+    @Override
+    public void timingTaskProcess() {
+        String dateSign=DateUntil.getFormatNow();//获取当前日期
+        List<Tzqxdsrwb> dataList= tzqxdsrwbMapper.getTimingTaskTzqxdsrwb(dateSign);
+        if(dataList!=null&&dataList.size()>0){
+            for(Tzqxdsrwb tzqxdsrwbTemp:dataList){
+                startProcessTask(tzqxdsrwbTemp);
+                updateTimingTask(tzqxdsrwbTemp);
+            }
+        }
+    }
+
+    //   日期定时任务业务处理
+    private void updateTimingTask(Tzqxdsrwb varTzqxdsrwb){
+        if(varTzqxdsrwb==null|| "".equals(varTzqxdsrwb.getId())){
+            return;
+        }
+        tzqxdsrwbMapper.updateTimingTaskSign(varTzqxdsrwb.getId());
+    }
+
+    //   开始任务
+    @Override
+    public void startProcessTask(Tzqxdsrwb varTzqxdsrwb){
+        try {
+            //  线程等 10000
+            Thread.sleep(20000);
+            if (varTzqxdsrwb != null) {
+                IbpsProcInstCmd cmd = null;
+                APIRequest request = new APIRequest();
+                request.addParameters("defId", varTzqxdsrwb.getLiuChengId());
+                request.addParameters("version", "0");
+                request.addParameters("data", varTzqxdsrwb.getChuShiShuJu());
+                cmd = pmInstProvider.getStartCmd(request);
+                cmd.setSubject(varTzqxdsrwb.getRenWuMingCheng());
+                cmd.setCurUser(varTzqxdsrwb.getBianZhiRen());
+
+                IBpmProcInst inst = bpmProcInstService.startProcInst(cmd);
+                log.info(inst.toString());
+            }
+        } catch (Exception e){
+            log.error("执行定时任务发生了错误:"+e);
+        }
+    }
+
+}

+ 251 - 251
ibps-provider-root/modules/provider-business/src/main/resources/com/lc/ibps/klimsibps/mapping/TzqxdsrwbMapper.xml

@@ -1,262 +1,262 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.lc.ibps.task.dao.TzqxdsrwbMapper" >
-<!--  <resultMap id="BaseResultMap" type="com.lc.ibps.task.entity.Tzqxdsrwb" >-->
-<!--    <id column="id_" property="id" jdbcType="VARCHAR" />-->
-<!--    <result column="tenant_id_" property="tenantId" jdbcType="VARCHAR" />-->
-<!--    <result column="ip_" property="ip" jdbcType="VARCHAR" />-->
-<!--    <result column="create_by_" property="createBy" jdbcType="VARCHAR" />-->
-<!--    <result column="create_time_" property="createTime" jdbcType="TIMESTAMP" />-->
-<!--    <result column="update_by_" property="updateBy" jdbcType="VARCHAR" />-->
-<!--    <result column="update_time_" property="updateTime" jdbcType="TIMESTAMP" />-->
-<!--    <result column="shi_fou_guo_shen_" property="shiFouGuoShen" jdbcType="VARCHAR" />-->
-<!--    <result column="bian_zhi_ren_" property="bianZhiRen" jdbcType="VARCHAR" />-->
-<!--    <result column="bian_zhi_bu_men_" property="bianZhiBuMen" jdbcType="VARCHAR" />-->
-<!--    <result column="bian_zhi_shi_jian" property="bianZhiShiJian" jdbcType="VARCHAR" />-->
-<!--    <result column="ren_wu_ming_cheng" property="renWuMingCheng" jdbcType="VARCHAR" />-->
-<!--    <result column="ren_wu_lei_bie_" property="renWuLeiBie" jdbcType="VARCHAR" />-->
-<!--    <result column="ren_wu_zhuang_tai" property="renWuZhuangTai" jdbcType="VARCHAR" />-->
-<!--    <result column="liu_cheng_id_" property="liuChengId" jdbcType="VARCHAR" />-->
-<!--    <result column="liu_cheng_ming_ch" property="liuChengMingCh" jdbcType="VARCHAR" />-->
-<!--    <result column="liu_cheng_ding_yi" property="liuChengDingYi" jdbcType="VARCHAR" />-->
-<!--    <result column="chu_shi_shu_ju_" property="chuShiShuJu" jdbcType="VARCHAR" />-->
-<!--    <result column="ren_wu_ri_qi_" property="renWuRiQi" jdbcType="VARCHAR" />-->
-<!--    <result column="zhi_xing_" property="zhiXing" jdbcType="VARCHAR" />-->
-<!--  </resultMap>-->
-<!--  <sql id="Base_Column_List" >-->
-<!--    id_, tenant_id_, ip_, create_by_, create_time_, update_by_, update_time_, shi_fou_guo_shen_, -->
-<!--    bian_zhi_ren_, bian_zhi_bu_men_, bian_zhi_shi_jian, ren_wu_ming_cheng, ren_wu_lei_bie_, -->
-<!--    ren_wu_zhuang_tai, liu_cheng_id_, liu_cheng_ming_ch, liu_cheng_ding_yi,chu_shi_shu_ju_,-->
-<!--    ren_wu_ri_qi_,zhi_xing_-->
-<!--  </sql>-->
-<!--  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >-->
-<!--    select -->
-<!--    <include refid="Base_Column_List" />-->
-<!--    from t_zqxdsrwb-->
-<!--    where id_ = #{id,jdbcType=VARCHAR}-->
-<!--  </select>-->
-<!--  <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >-->
-<!--    delete from t_zqxdsrwb-->
-<!--    where id_ = #{id,jdbcType=VARCHAR}-->
-<!--  </delete>-->
-<!--  <insert id="insert" parameterType="com.lc.ibps.task.entity.Tzqxdsrwb" >-->
-<!--    insert into t_zqxdsrwb (id_, tenant_id_, ip_, -->
-<!--      create_by_, create_time_, update_by_, -->
-<!--      update_time_, shi_fou_guo_shen_, bian_zhi_ren_, -->
-<!--      bian_zhi_bu_men_, bian_zhi_shi_jian, ren_wu_ming_cheng, -->
-<!--      ren_wu_lei_bie_, ren_wu_zhuang_tai, liu_cheng_id_, -->
-<!--      liu_cheng_ming_ch, liu_cheng_ding_yi)-->
-<!--    values (#{id,jdbcType=VARCHAR}, #{tenantId,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR}, -->
-<!--      #{createBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=VARCHAR}, -->
-<!--      #{updateTime,jdbcType=TIMESTAMP}, #{shiFouGuoShen,jdbcType=VARCHAR}, #{bianZhiRen,jdbcType=VARCHAR}, -->
-<!--      #{bianZhiBuMen,jdbcType=VARCHAR}, #{bianZhiShiJian,jdbcType=VARCHAR}, #{renWuMingCheng,jdbcType=VARCHAR}, -->
-<!--      #{renWuLeiBie,jdbcType=VARCHAR}, #{renWuZhuangTai,jdbcType=VARCHAR}, #{liuChengId,jdbcType=VARCHAR}, -->
-<!--      #{liuChengMingCh,jdbcType=VARCHAR}, #{liuChengDingYi,jdbcType=VARCHAR})-->
-<!--  </insert>-->
-<!--  <insert id="insertSelective" parameterType="com.lc.ibps.task.entity.Tzqxdsrwb" >-->
-<!--    insert into t_zqxdsrwb-->
-<!--    <trim prefix="(" suffix=")" suffixOverrides="," >-->
-<!--      <if test="id != null" >-->
-<!--        id_,-->
-<!--      </if>-->
-<!--      <if test="tenantId != null" >-->
-<!--        tenant_id_,-->
-<!--      </if>-->
-<!--      <if test="ip != null" >-->
-<!--        ip_,-->
-<!--      </if>-->
-<!--      <if test="createBy != null" >-->
-<!--        create_by_,-->
-<!--      </if>-->
-<!--      <if test="createTime != null" >-->
-<!--        create_time_,-->
-<!--      </if>-->
-<!--      <if test="updateBy != null" >-->
-<!--        update_by_,-->
-<!--      </if>-->
-<!--      <if test="updateTime != null" >-->
-<!--        update_time_,-->
-<!--      </if>-->
-<!--      <if test="shiFouGuoShen != null" >-->
-<!--        shi_fou_guo_shen_,-->
-<!--      </if>-->
-<!--      <if test="bianZhiRen != null" >-->
-<!--        bian_zhi_ren_,-->
-<!--      </if>-->
-<!--      <if test="bianZhiBuMen != null" >-->
-<!--        bian_zhi_bu_men_,-->
-<!--      </if>-->
-<!--      <if test="bianZhiShiJian != null" >-->
-<!--        bian_zhi_shi_jian,-->
-<!--      </if>-->
-<!--      <if test="renWuMingCheng != null" >-->
-<!--        ren_wu_ming_cheng,-->
-<!--      </if>-->
-<!--      <if test="renWuLeiBie != null" >-->
-<!--        ren_wu_lei_bie_,-->
-<!--      </if>-->
-<!--      <if test="renWuZhuangTai != null" >-->
-<!--        ren_wu_zhuang_tai,-->
-<!--      </if>-->
-<!--      <if test="liuChengId != null" >-->
-<!--        liu_cheng_id_,-->
-<!--      </if>-->
-<!--      <if test="liuChengMingCh != null" >-->
-<!--        liu_cheng_ming_ch,-->
-<!--      </if>-->
-<!--      <if test="liuChengDingYi != null" >-->
-<!--        liu_cheng_ding_yi,-->
-<!--      </if>-->
-<!--    </trim>-->
-<!--    <trim prefix="values (" suffix=")" suffixOverrides="," >-->
-<!--      <if test="id != null" >-->
-<!--        #{id,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="tenantId != null" >-->
-<!--        #{tenantId,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="ip != null" >-->
-<!--        #{ip,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="createBy != null" >-->
-<!--        #{createBy,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="createTime != null" >-->
-<!--        #{createTime,jdbcType=TIMESTAMP},-->
-<!--      </if>-->
-<!--      <if test="updateBy != null" >-->
-<!--        #{updateBy,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="updateTime != null" >-->
-<!--        #{updateTime,jdbcType=TIMESTAMP},-->
-<!--      </if>-->
-<!--      <if test="shiFouGuoShen != null" >-->
-<!--        #{shiFouGuoShen,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="bianZhiRen != null" >-->
-<!--        #{bianZhiRen,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="bianZhiBuMen != null" >-->
-<!--        #{bianZhiBuMen,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="bianZhiShiJian != null" >-->
-<!--        #{bianZhiShiJian,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="renWuMingCheng != null" >-->
-<!--        #{renWuMingCheng,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="renWuLeiBie != null" >-->
-<!--        #{renWuLeiBie,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="renWuZhuangTai != null" >-->
-<!--        #{renWuZhuangTai,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="liuChengId != null" >-->
-<!--        #{liuChengId,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="liuChengMingCh != null" >-->
-<!--        #{liuChengMingCh,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="liuChengDingYi != null" >-->
-<!--        #{liuChengDingYi,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--    </trim>-->
-<!--  </insert>-->
-<!--  <update id="updateByPrimaryKeySelective" parameterType="com.lc.ibps.task.entity.Tzqxdsrwb" >-->
-<!--    update t_zqxdsrwb-->
-<!--    <set >-->
-<!--      <if test="tenantId != null" >-->
-<!--        tenant_id_ = #{tenantId,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="ip != null" >-->
-<!--        ip_ = #{ip,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="createBy != null" >-->
-<!--        create_by_ = #{createBy,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="createTime != null" >-->
-<!--        create_time_ = #{createTime,jdbcType=TIMESTAMP},-->
-<!--      </if>-->
-<!--      <if test="updateBy != null" >-->
-<!--        update_by_ = #{updateBy,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="updateTime != null" >-->
-<!--        update_time_ = #{updateTime,jdbcType=TIMESTAMP},-->
-<!--      </if>-->
-<!--      <if test="shiFouGuoShen != null" >-->
-<!--        shi_fou_guo_shen_ = #{shiFouGuoShen,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="bianZhiRen != null" >-->
-<!--        bian_zhi_ren_ = #{bianZhiRen,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="bianZhiBuMen != null" >-->
-<!--        bian_zhi_bu_men_ = #{bianZhiBuMen,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="bianZhiShiJian != null" >-->
-<!--        bian_zhi_shi_jian = #{bianZhiShiJian,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="renWuMingCheng != null" >-->
-<!--        ren_wu_ming_cheng = #{renWuMingCheng,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="renWuLeiBie != null" >-->
-<!--        ren_wu_lei_bie_ = #{renWuLeiBie,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="renWuZhuangTai != null" >-->
-<!--        ren_wu_zhuang_tai = #{renWuZhuangTai,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="liuChengId != null" >-->
-<!--        liu_cheng_id_ = #{liuChengId,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="liuChengMingCh != null" >-->
-<!--        liu_cheng_ming_ch = #{liuChengMingCh,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--      <if test="liuChengDingYi != null" >-->
-<!--        liu_cheng_ding_yi = #{liuChengDingYi,jdbcType=VARCHAR},-->
-<!--      </if>-->
-<!--    </set>-->
-<!--    where id_ = #{id,jdbcType=VARCHAR}-->
-<!--  </update>-->
-<!--  <update id="updateByPrimaryKey" parameterType="com.lc.ibps.task.entity.Tzqxdsrwb" >-->
-<!--    update t_zqxdsrwb-->
-<!--    set tenant_id_ = #{tenantId,jdbcType=VARCHAR},-->
-<!--      ip_ = #{ip,jdbcType=VARCHAR},-->
-<!--      create_by_ = #{createBy,jdbcType=VARCHAR},-->
-<!--      create_time_ = #{createTime,jdbcType=TIMESTAMP},-->
-<!--      update_by_ = #{updateBy,jdbcType=VARCHAR},-->
-<!--      update_time_ = #{updateTime,jdbcType=TIMESTAMP},-->
-<!--      shi_fou_guo_shen_ = #{shiFouGuoShen,jdbcType=VARCHAR},-->
-<!--      bian_zhi_ren_ = #{bianZhiRen,jdbcType=VARCHAR},-->
-<!--      bian_zhi_bu_men_ = #{bianZhiBuMen,jdbcType=VARCHAR},-->
-<!--      bian_zhi_shi_jian = #{bianZhiShiJian,jdbcType=VARCHAR},-->
-<!--      ren_wu_ming_cheng = #{renWuMingCheng,jdbcType=VARCHAR},-->
-<!--      ren_wu_lei_bie_ = #{renWuLeiBie,jdbcType=VARCHAR},-->
-<!--      ren_wu_zhuang_tai = #{renWuZhuangTai,jdbcType=VARCHAR},-->
-<!--      liu_cheng_id_ = #{liuChengId,jdbcType=VARCHAR},-->
-<!--      liu_cheng_ming_ch = #{liuChengMingCh,jdbcType=VARCHAR},-->
-<!--      liu_cheng_ding_yi = #{liuChengDingYi,jdbcType=VARCHAR}-->
-<!--    where id_ = #{id,jdbcType=VARCHAR}-->
-<!--  </update>-->
+    <resultMap id="BaseResultMap" type="com.lc.ibps.task.entity.Tzqxdsrwb" >
+        <id column="id_" property="id" jdbcType="VARCHAR" />
+        <result column="tenant_id_" property="tenantId" jdbcType="VARCHAR" />
+        <result column="ip_" property="ip" jdbcType="VARCHAR" />
+        <result column="create_by_" property="createBy" jdbcType="VARCHAR" />
+        <result column="create_time_" property="createTime" jdbcType="TIMESTAMP" />
+        <result column="update_by_" property="updateBy" jdbcType="VARCHAR" />
+        <result column="update_time_" property="updateTime" jdbcType="TIMESTAMP" />
+        <result column="shi_fou_guo_shen_" property="shiFouGuoShen" jdbcType="VARCHAR" />
+        <result column="bian_zhi_ren_" property="bianZhiRen" jdbcType="VARCHAR" />
+        <result column="bian_zhi_bu_men_" property="bianZhiBuMen" jdbcType="VARCHAR" />
+        <result column="bian_zhi_shi_jian" property="bianZhiShiJian" jdbcType="VARCHAR" />
+        <result column="ren_wu_ming_cheng" property="renWuMingCheng" jdbcType="VARCHAR" />
+        <result column="ren_wu_lei_bie_" property="renWuLeiBie" jdbcType="VARCHAR" />
+        <result column="ren_wu_zhuang_tai" property="renWuZhuangTai" jdbcType="VARCHAR" />
+        <result column="liu_cheng_id_" property="liuChengId" jdbcType="VARCHAR" />
+        <result column="liu_cheng_ming_ch" property="liuChengMingCh" jdbcType="VARCHAR" />
+        <result column="liu_cheng_ding_yi" property="liuChengDingYi" jdbcType="VARCHAR" />
+        <result column="chu_shi_shu_ju_" property="chuShiShuJu" jdbcType="VARCHAR" />
+        <result column="ren_wu_ri_qi_" property="renWuRiQi" jdbcType="VARCHAR" />
+        <result column="zhi_xing_" property="zhiXing" jdbcType="VARCHAR" />
+    </resultMap>
+    <sql id="Base_Column_List" >
+        id_, tenant_id_, ip_, create_by_, create_time_, update_by_, update_time_, shi_fou_guo_shen_,
+    bian_zhi_ren_, bian_zhi_bu_men_, bian_zhi_shi_jian, ren_wu_ming_cheng, ren_wu_lei_bie_,
+    ren_wu_zhuang_tai, liu_cheng_id_, liu_cheng_ming_ch, liu_cheng_ding_yi,chu_shi_shu_ju_,
+    ren_wu_ri_qi_,zhi_xing_
+    </sql>
+    <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.String" >
+        select
+        <include refid="Base_Column_List" />
+        from t_zqxdsrwb
+        where id_ = #{id,jdbcType=VARCHAR}
+    </select>
+    <delete id="deleteByPrimaryKey" parameterType="java.lang.String" >
+        delete from t_zqxdsrwb
+        where id_ = #{id,jdbcType=VARCHAR}
+    </delete>
+    <insert id="insert" parameterType="com.lc.ibps.task.entity.Tzqxdsrwb" >
+        insert into t_zqxdsrwb (id_, tenant_id_, ip_,
+                                create_by_, create_time_, update_by_,
+                                update_time_, shi_fou_guo_shen_, bian_zhi_ren_,
+                                bian_zhi_bu_men_, bian_zhi_shi_jian, ren_wu_ming_cheng,
+                                ren_wu_lei_bie_, ren_wu_zhuang_tai, liu_cheng_id_,
+                                liu_cheng_ming_ch, liu_cheng_ding_yi)
+        values (#{id,jdbcType=VARCHAR}, #{tenantId,jdbcType=VARCHAR}, #{ip,jdbcType=VARCHAR},
+                #{createBy,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateBy,jdbcType=VARCHAR},
+                #{updateTime,jdbcType=TIMESTAMP}, #{shiFouGuoShen,jdbcType=VARCHAR}, #{bianZhiRen,jdbcType=VARCHAR},
+                #{bianZhiBuMen,jdbcType=VARCHAR}, #{bianZhiShiJian,jdbcType=VARCHAR}, #{renWuMingCheng,jdbcType=VARCHAR},
+                #{renWuLeiBie,jdbcType=VARCHAR}, #{renWuZhuangTai,jdbcType=VARCHAR}, #{liuChengId,jdbcType=VARCHAR},
+                #{liuChengMingCh,jdbcType=VARCHAR}, #{liuChengDingYi,jdbcType=VARCHAR})
+    </insert>
+    <insert id="insertSelective" parameterType="com.lc.ibps.task.entity.Tzqxdsrwb" >
+        insert into t_zqxdsrwb
+        <trim prefix="(" suffix=")" suffixOverrides="," >
+            <if test="id != null" >
+                id_,
+            </if>
+            <if test="tenantId != null" >
+                tenant_id_,
+            </if>
+            <if test="ip != null" >
+                ip_,
+            </if>
+            <if test="createBy != null" >
+                create_by_,
+            </if>
+            <if test="createTime != null" >
+                create_time_,
+            </if>
+            <if test="updateBy != null" >
+                update_by_,
+            </if>
+            <if test="updateTime != null" >
+                update_time_,
+            </if>
+            <if test="shiFouGuoShen != null" >
+                shi_fou_guo_shen_,
+            </if>
+            <if test="bianZhiRen != null" >
+                bian_zhi_ren_,
+            </if>
+            <if test="bianZhiBuMen != null" >
+                bian_zhi_bu_men_,
+            </if>
+            <if test="bianZhiShiJian != null" >
+                bian_zhi_shi_jian,
+            </if>
+            <if test="renWuMingCheng != null" >
+                ren_wu_ming_cheng,
+            </if>
+            <if test="renWuLeiBie != null" >
+                ren_wu_lei_bie_,
+            </if>
+            <if test="renWuZhuangTai != null" >
+                ren_wu_zhuang_tai,
+            </if>
+            <if test="liuChengId != null" >
+                liu_cheng_id_,
+            </if>
+            <if test="liuChengMingCh != null" >
+                liu_cheng_ming_ch,
+            </if>
+            <if test="liuChengDingYi != null" >
+                liu_cheng_ding_yi,
+            </if>
+        </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides="," >
+            <if test="id != null" >
+                #{id,jdbcType=VARCHAR},
+            </if>
+            <if test="tenantId != null" >
+                #{tenantId,jdbcType=VARCHAR},
+            </if>
+            <if test="ip != null" >
+                #{ip,jdbcType=VARCHAR},
+            </if>
+            <if test="createBy != null" >
+                #{createBy,jdbcType=VARCHAR},
+            </if>
+            <if test="createTime != null" >
+                #{createTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="updateBy != null" >
+                #{updateBy,jdbcType=VARCHAR},
+            </if>
+            <if test="updateTime != null" >
+                #{updateTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="shiFouGuoShen != null" >
+                #{shiFouGuoShen,jdbcType=VARCHAR},
+            </if>
+            <if test="bianZhiRen != null" >
+                #{bianZhiRen,jdbcType=VARCHAR},
+            </if>
+            <if test="bianZhiBuMen != null" >
+                #{bianZhiBuMen,jdbcType=VARCHAR},
+            </if>
+            <if test="bianZhiShiJian != null" >
+                #{bianZhiShiJian,jdbcType=VARCHAR},
+            </if>
+            <if test="renWuMingCheng != null" >
+                #{renWuMingCheng,jdbcType=VARCHAR},
+            </if>
+            <if test="renWuLeiBie != null" >
+                #{renWuLeiBie,jdbcType=VARCHAR},
+            </if>
+            <if test="renWuZhuangTai != null" >
+                #{renWuZhuangTai,jdbcType=VARCHAR},
+            </if>
+            <if test="liuChengId != null" >
+                #{liuChengId,jdbcType=VARCHAR},
+            </if>
+            <if test="liuChengMingCh != null" >
+                #{liuChengMingCh,jdbcType=VARCHAR},
+            </if>
+            <if test="liuChengDingYi != null" >
+                #{liuChengDingYi,jdbcType=VARCHAR},
+            </if>
+        </trim>
+    </insert>
+    <update id="updateByPrimaryKeySelective" parameterType="com.lc.ibps.task.entity.Tzqxdsrwb" >
+        update t_zqxdsrwb
+        <set >
+            <if test="tenantId != null" >
+                tenant_id_ = #{tenantId,jdbcType=VARCHAR},
+            </if>
+            <if test="ip != null" >
+                ip_ = #{ip,jdbcType=VARCHAR},
+            </if>
+            <if test="createBy != null" >
+                create_by_ = #{createBy,jdbcType=VARCHAR},
+            </if>
+            <if test="createTime != null" >
+                create_time_ = #{createTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="updateBy != null" >
+                update_by_ = #{updateBy,jdbcType=VARCHAR},
+            </if>
+            <if test="updateTime != null" >
+                update_time_ = #{updateTime,jdbcType=TIMESTAMP},
+            </if>
+            <if test="shiFouGuoShen != null" >
+                shi_fou_guo_shen_ = #{shiFouGuoShen,jdbcType=VARCHAR},
+            </if>
+            <if test="bianZhiRen != null" >
+                bian_zhi_ren_ = #{bianZhiRen,jdbcType=VARCHAR},
+            </if>
+            <if test="bianZhiBuMen != null" >
+                bian_zhi_bu_men_ = #{bianZhiBuMen,jdbcType=VARCHAR},
+            </if>
+            <if test="bianZhiShiJian != null" >
+                bian_zhi_shi_jian = #{bianZhiShiJian,jdbcType=VARCHAR},
+            </if>
+            <if test="renWuMingCheng != null" >
+                ren_wu_ming_cheng = #{renWuMingCheng,jdbcType=VARCHAR},
+            </if>
+            <if test="renWuLeiBie != null" >
+                ren_wu_lei_bie_ = #{renWuLeiBie,jdbcType=VARCHAR},
+            </if>
+            <if test="renWuZhuangTai != null" >
+                ren_wu_zhuang_tai = #{renWuZhuangTai,jdbcType=VARCHAR},
+            </if>
+            <if test="liuChengId != null" >
+                liu_cheng_id_ = #{liuChengId,jdbcType=VARCHAR},
+            </if>
+            <if test="liuChengMingCh != null" >
+                liu_cheng_ming_ch = #{liuChengMingCh,jdbcType=VARCHAR},
+            </if>
+            <if test="liuChengDingYi != null" >
+                liu_cheng_ding_yi = #{liuChengDingYi,jdbcType=VARCHAR},
+            </if>
+        </set>
+        where id_ = #{id,jdbcType=VARCHAR}
+    </update>
+    <update id="updateByPrimaryKey" parameterType="com.lc.ibps.task.entity.Tzqxdsrwb" >
+        update t_zqxdsrwb
+        set tenant_id_ = #{tenantId,jdbcType=VARCHAR},
+            ip_ = #{ip,jdbcType=VARCHAR},
+            create_by_ = #{createBy,jdbcType=VARCHAR},
+            create_time_ = #{createTime,jdbcType=TIMESTAMP},
+            update_by_ = #{updateBy,jdbcType=VARCHAR},
+            update_time_ = #{updateTime,jdbcType=TIMESTAMP},
+            shi_fou_guo_shen_ = #{shiFouGuoShen,jdbcType=VARCHAR},
+            bian_zhi_ren_ = #{bianZhiRen,jdbcType=VARCHAR},
+            bian_zhi_bu_men_ = #{bianZhiBuMen,jdbcType=VARCHAR},
+            bian_zhi_shi_jian = #{bianZhiShiJian,jdbcType=VARCHAR},
+            ren_wu_ming_cheng = #{renWuMingCheng,jdbcType=VARCHAR},
+            ren_wu_lei_bie_ = #{renWuLeiBie,jdbcType=VARCHAR},
+            ren_wu_zhuang_tai = #{renWuZhuangTai,jdbcType=VARCHAR},
+            liu_cheng_id_ = #{liuChengId,jdbcType=VARCHAR},
+            liu_cheng_ming_ch = #{liuChengMingCh,jdbcType=VARCHAR},
+            liu_cheng_ding_yi = #{liuChengDingYi,jdbcType=VARCHAR}
+        where id_ = #{id,jdbcType=VARCHAR}
+    </update>
 
 
-<!--  <select id="getTzqxdsrwb" resultMap="BaseResultMap" parameterType="java.lang.String" >-->
-<!--    select-->
-<!--    <include refid="Base_Column_List" />-->
-<!--    from t_zqxdsrwb-->
-<!--    where ren_wu_zhuang_tai <![CDATA[ = ]]> 1 and ren_wu_lei_bie_ = #{startSign,jdbcType=VARCHAR}-->
+    <select id="getTzqxdsrwb" resultMap="BaseResultMap" parameterType="java.lang.String" >
+        select
+        <include refid="Base_Column_List" />
+        from t_zqxdsrwb
+        where ren_wu_zhuang_tai <![CDATA[ = ]]> 1 and ren_wu_lei_bie_ = #{startSign,jdbcType=VARCHAR}
 
-<!--  </select>-->
+    </select>
 
-<!--  <select id="getTimingTaskTzqxdsrwb" resultMap="BaseResultMap"  >-->
-<!--    select-->
-<!--    <include refid="Base_Column_List" />-->
-<!--    from t_zqxdsrwb-->
-<!--    where ren_wu_zhuang_tai <![CDATA[ = ]]> 1 and ren_wu_lei_bie_ <![CDATA[ = ]]> '日期定时' and zhi_xing_ <![CDATA[ <> ]]> '已执行'-->
-<!--          and ren_wu_ri_qi_ <![CDATA[ = ]]> #{dateSign}-->
-<!--  </select>-->
+    <select id="getTimingTaskTzqxdsrwb" resultMap="BaseResultMap"  >
+        select
+        <include refid="Base_Column_List" />
+        from t_zqxdsrwb
+        where ren_wu_zhuang_tai <![CDATA[ = ]]> 1 and ren_wu_lei_bie_ <![CDATA[ = ]]> '日期定时' and zhi_xing_ <![CDATA[ <> ]]> '已执行'
+        and ren_wu_ri_qi_ <![CDATA[ = ]]> #{dateSign}
+    </select>
 
-<!-- <update id="updateTimingTaskSign" >-->
-<!--    update t_zqxdsrwb set zhi_xing_='已执行' where  id_=#{id}-->
-<!-- </update>-->
+    <update id="updateTimingTaskSign" >
+        update t_zqxdsrwb set zhi_xing_='已执行' where  id_=#{id}
+    </update>
 
 
 </mapper>