소스 검색

规范命名

lw 1 년 전
부모
커밋
debd62cc29
31개의 변경된 파일368개의 추가작업 그리고 1539개의 파일을 삭제
  1. 0 177
      module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/controller/KzksDataUpdateRecordsController.java
  2. 0 273
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/JobLogList.vue
  3. 0 17
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/JobLog_menu_insert.sql
  4. 0 199
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/modules/JobLogForm.vue
  5. 0 84
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/modules/JobLogModal.Style#Drawer.vue
  6. 0 60
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/modules/JobLogModal.vue
  7. 0 17
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/mapper/KzksSummaryHandleLogMapper.java
  8. 0 14
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/service/IKzksSummaryHandleLogService.java
  9. 0 192
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/KzksSummaryHandleLogList.vue
  10. 0 17
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/KzksSummaryHandleLog_menu_insert.sql
  11. 0 119
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/modules/KzksSummaryHandleLogForm.vue
  12. 0 84
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/modules/KzksSummaryHandleLogModal.Style#Drawer.vue
  13. 0 60
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/modules/KzksSummaryHandleLogModal.vue
  14. 162 0
      module_kzks/src/main/java/org/jeecg/modules/logDataUpdateRecords/controller/KzksDataUpdateRecordsController.java
  15. 5 9
      module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/entity/KzksDataUpdateRecords.java
  16. 3 6
      module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/mapper/KzksDataUpdateRecordsMapper.java
  17. 2 2
      module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/mapper/xml/KzksDataUpdateRecordsMapper.xml
  18. 3 3
      module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/service/IKzksDataUpdateRecordsService.java
  19. 43 43
      module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/service/impl/KzksDataUpdateRecordsServiceImpl.java
  20. 22 37
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/controller/JobLogController.java
  21. 3 7
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/entity/JobLog.java
  22. 2 5
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/mapper/JobLogMapper.java
  23. 2 2
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/mapper/xml/JobLogMapper.xml
  24. 2 2
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/service/IJobLogService.java
  25. 4 4
      module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/service/impl/JobLogServiceImpl.java
  26. 37 52
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/controller/KzksSummaryHandleLogController.java
  27. 5 9
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/entity/KzksSummaryHandleLog.java
  28. 14 0
      module_kzks/src/main/java/org/jeecg/modules/logSummaryHandleLog/mapper/KzksSummaryHandleLogMapper.java
  29. 2 2
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/mapper/xml/KzksSummaryHandleLogMapper.xml
  30. 14 0
      module_kzks/src/main/java/org/jeecg/modules/logSummaryHandleLog/service/IKzksSummaryHandleLogService.java
  31. 43 43
      module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/service/impl/KzksSummaryHandleLogServiceImpl.java

+ 0 - 177
module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/controller/KzksDataUpdateRecordsController.java

@@ -1,177 +0,0 @@
-package org.jeecg.modules.kzksDataUpdateRecords.controller;
-
-import java.util.Arrays;
-import java.util.List;
-import java.util.Map;
-import java.util.stream.Collectors;
-import java.io.IOException;
-import java.io.UnsupportedEncodingException;
-import java.net.URLDecoder;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-import org.jeecg.common.api.vo.Result;
-import org.jeecg.common.system.query.QueryGenerator;
-import org.jeecg.common.util.oConvertUtils;
-import org.jeecg.modules.kzksDataUpdateRecords.entity.KzksDataUpdateRecords;
-import org.jeecg.modules.kzksDataUpdateRecords.service.IKzksDataUpdateRecordsService;
-
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
-import com.baomidou.mybatisplus.core.metadata.IPage;
-import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
-import lombok.extern.slf4j.Slf4j;
-
-import org.jeecgframework.poi.excel.ExcelImportUtil;
-import org.jeecgframework.poi.excel.def.NormalExcelConstants;
-import org.jeecgframework.poi.excel.entity.ExportParams;
-import org.jeecgframework.poi.excel.entity.ImportParams;
-import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
-import org.jeecg.common.system.base.controller.JeecgController;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.web.bind.annotation.*;
-import org.springframework.web.multipart.MultipartFile;
-import org.springframework.web.multipart.MultipartHttpServletRequest;
-import org.springframework.web.servlet.ModelAndView;
-import com.alibaba.fastjson.JSON;
-import io.swagger.annotations.Api;
-import io.swagger.annotations.ApiOperation;
-import org.jeecg.common.aspect.annotation.AutoLog;
-
- /**
- * @Description: kzks_data_update_records
- * @Author: jeecg-boot
- * @Date:   2023-12-22
- * @Version: V1.0
- */
-@Api(tags="kzks_data_update_records")
-@RestController
-@RequestMapping("/kzksDataUpdateRecords/kzksDataUpdateRecords")
-@Slf4j
-public class KzksDataUpdateRecordsController extends JeecgController<KzksDataUpdateRecords, IKzksDataUpdateRecordsService> {
-	@Autowired
-	private IKzksDataUpdateRecordsService kzksDataUpdateRecordsService;
-	
-	/**
-	 * 分页列表查询
-	 *
-	 * @param kzksDataUpdateRecords
-	 * @param pageNo
-	 * @param pageSize
-	 * @param req
-	 * @return
-	 */
-	//@AutoLog(value = "kzks_data_update_records-分页列表查询")
-	@ApiOperation(value="kzks_data_update_records-分页列表查询", notes="kzks_data_update_records-分页列表查询")
-	@GetMapping(value = "/list")
-	public Result<IPage<KzksDataUpdateRecords>> queryPageList(KzksDataUpdateRecords kzksDataUpdateRecords,
-								   @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
-								   @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
-								   HttpServletRequest req) {
-		QueryWrapper<KzksDataUpdateRecords> queryWrapper = QueryGenerator.initQueryWrapper(kzksDataUpdateRecords, req.getParameterMap());
-		Page<KzksDataUpdateRecords> page = new Page<KzksDataUpdateRecords>(pageNo, pageSize);
-		IPage<KzksDataUpdateRecords> pageList = kzksDataUpdateRecordsService.page(page, queryWrapper);
-		return Result.OK(pageList);
-	}
-	
-	/**
-	 *   添加
-	 *
-	 * @param kzksDataUpdateRecords
-	 * @return
-	 */
-	@AutoLog(value = "kzks_data_update_records-添加")
-	@ApiOperation(value="kzks_data_update_records-添加", notes="kzks_data_update_records-添加")
-	//@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:add")
-	@PostMapping(value = "/add")
-	public Result<String> add(@RequestBody KzksDataUpdateRecords kzksDataUpdateRecords) {
-		kzksDataUpdateRecordsService.save(kzksDataUpdateRecords);
-		return Result.OK("添加成功!");
-	}
-	
-	/**
-	 *  编辑
-	 *
-	 * @param kzksDataUpdateRecords
-	 * @return
-	 */
-	@AutoLog(value = "kzks_data_update_records-编辑")
-	@ApiOperation(value="kzks_data_update_records-编辑", notes="kzks_data_update_records-编辑")
-	//@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:edit")
-	@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
-	public Result<String> edit(@RequestBody KzksDataUpdateRecords kzksDataUpdateRecords) {
-		kzksDataUpdateRecordsService.updateById(kzksDataUpdateRecords);
-		return Result.OK("编辑成功!");
-	}
-	
-	/**
-	 *   通过id删除
-	 *
-	 * @param id
-	 * @return
-	 */
-	@AutoLog(value = "kzks_data_update_records-通过id删除")
-	@ApiOperation(value="kzks_data_update_records-通过id删除", notes="kzks_data_update_records-通过id删除")
-	//@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:delete")
-	@DeleteMapping(value = "/delete")
-	public Result<String> delete(@RequestParam(name="id",required=true) String id) {
-		kzksDataUpdateRecordsService.removeById(id);
-		return Result.OK("删除成功!");
-	}
-	
-	/**
-	 *  批量删除
-	 *
-	 * @param ids
-	 * @return
-	 */
-	@AutoLog(value = "kzks_data_update_records-批量删除")
-	@ApiOperation(value="kzks_data_update_records-批量删除", notes="kzks_data_update_records-批量删除")
-	//@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:deleteBatch")
-	@DeleteMapping(value = "/deleteBatch")
-	public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
-		this.kzksDataUpdateRecordsService.removeByIds(Arrays.asList(ids.split(",")));
-		return Result.OK("批量删除成功!");
-	}
-	
-	/**
-	 * 通过id查询
-	 *
-	 * @param id
-	 * @return
-	 */
-	//@AutoLog(value = "kzks_data_update_records-通过id查询")
-	@ApiOperation(value="kzks_data_update_records-通过id查询", notes="kzks_data_update_records-通过id查询")
-	@GetMapping(value = "/queryById")
-	public Result<KzksDataUpdateRecords> queryById(@RequestParam(name="id",required=true) String id) {
-		KzksDataUpdateRecords kzksDataUpdateRecords = kzksDataUpdateRecordsService.getById(id);
-		if(kzksDataUpdateRecords==null) {
-			return Result.error("未找到对应数据");
-		}
-		return Result.OK(kzksDataUpdateRecords);
-	}
-
-    /**
-    * 导出excel
-    *
-    * @param request
-    * @param kzksDataUpdateRecords
-    */
-    //@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:exportXls")
-    @RequestMapping(value = "/exportXls")
-    public ModelAndView exportXls(HttpServletRequest request, KzksDataUpdateRecords kzksDataUpdateRecords) {
-        return super.exportXls(request, kzksDataUpdateRecords, KzksDataUpdateRecords.class, "kzks_data_update_records");
-    }
-
-    /**
-      * 通过excel导入数据
-    *
-    * @param request
-    * @param response
-    * @return
-    */
-    //@RequiresPermissions("kzks_data_update_records:importExcel")
-    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
-    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
-        return super.importExcel(request, response, KzksDataUpdateRecords.class);
-    }
-
-}

+ 0 - 273
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/JobLogList.vue

@@ -1,273 +0,0 @@
-<template>
-  <a-card :bordered="false">
-    <!-- 查询区域 -->
-    <div class="table-page-search-wrapper">
-      <a-form layout="inline" @keyup.enter.native="searchQuery">
-        <a-row :gutter="24">
-        </a-row>
-      </a-form>
-    </div>
-    <!-- 查询区域-END -->
-
-    <!-- 操作按钮区域 -->
-    <div class="table-operator">
-      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
-      <a-button type="primary" icon="download" @click="handleExportXls('job_log')">导出</a-button>
-      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
-        <a-button type="primary" icon="import">导入</a-button>
-      </a-upload>
-      <!-- 高级查询区域 -->
-      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
-      <a-dropdown v-if="selectedRowKeys.length > 0">
-        <a-menu slot="overlay">
-          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
-        </a-menu>
-        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
-      </a-dropdown>
-    </div>
-
-    <!-- table区域-begin -->
-    <div>
-      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
-        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
-        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
-      </div>
-
-      <a-table
-        ref="table"
-        size="middle"
-        :scroll="{x:true}"
-        bordered
-        rowKey="id"
-        :columns="columns"
-        :dataSource="dataSource"
-        :pagination="ipagination"
-        :loading="loading"
-        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
-        class="j-table-force-nowrap"
-        @change="handleTableChange">
-
-        <template slot="htmlSlot" slot-scope="text">
-          <div v-html="text"></div>
-        </template>
-        <template slot="imgSlot" slot-scope="text,record">
-          <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
-          <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
-        </template>
-        <template slot="fileSlot" slot-scope="text">
-          <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
-          <a-button
-            v-else
-            :ghost="true"
-            type="primary"
-            icon="download"
-            size="small"
-            @click="downloadFile(text)">
-            下载
-          </a-button>
-        </template>
-
-        <span slot="action" slot-scope="text, record">
-          <a @click="handleEdit(record)">编辑</a>
-
-          <a-divider type="vertical" />
-          <a-dropdown>
-            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
-            <a-menu slot="overlay">
-              <a-menu-item>
-                <a @click="handleDetail(record)">详情</a>
-              </a-menu-item>
-              <a-menu-item>
-                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
-                  <a>删除</a>
-                </a-popconfirm>
-              </a-menu-item>
-            </a-menu>
-          </a-dropdown>
-        </span>
-
-      </a-table>
-    </div>
-
-    <job-log-modal ref="modalForm" @ok="modalFormOk"></job-log-modal>
-  </a-card>
-</template>
-
-<script>
-
-  import '@/assets/less/TableExpand.less'
-  import { mixinDevice } from '@/utils/mixin'
-  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
-  import JobLogModal from './modules/JobLogModal'
-
-  export default {
-    name: 'JobLogList',
-    mixins:[JeecgListMixin, mixinDevice],
-    components: {
-      JobLogModal
-    },
-    data () {
-      return {
-        description: 'job_log管理页面',
-        // 表头
-        columns: [
-          {
-            title: '#',
-            dataIndex: '',
-            key:'rowIndex',
-            width:60,
-            align:"center",
-            customRender:function (t,r,index) {
-              return parseInt(index)+1;
-            }
-          },
-          {
-            title:'执行器主键ID',
-            align:"center",
-            dataIndex: 'jobGroup'
-          },
-          {
-            title:'任务,主键ID',
-            align:"center",
-            dataIndex: 'jobId'
-          },
-          {
-            title:'jobDesc',
-            align:"center",
-            dataIndex: 'jobDesc'
-          },
-          {
-            title:'执行器地址,本次执行的地址',
-            align:"center",
-            dataIndex: 'executorAddress'
-          },
-          {
-            title:'执行器任务handler',
-            align:"center",
-            dataIndex: 'executorHandler'
-          },
-          {
-            title:'执行器任务参数',
-            align:"center",
-            dataIndex: 'executorParam'
-          },
-          {
-            title:'执行器任务分片参数,格式如 1/2',
-            align:"center",
-            dataIndex: 'executorShardingParam'
-          },
-          {
-            title:'失败重试次数',
-            align:"center",
-            dataIndex: 'executorFailRetryCount'
-          },
-          {
-            title:'调度-时间',
-            align:"center",
-            dataIndex: 'triggerTime',
-            customRender:function (text) {
-              return !text?"":(text.length>10?text.substr(0,10):text)
-            }
-          },
-          {
-            title:'调度-结果',
-            align:"center",
-            dataIndex: 'triggerCode'
-          },
-          {
-            title:'调度-日志',
-            align:"center",
-            dataIndex: 'triggerMsg'
-          },
-          {
-            title:'执行-时间',
-            align:"center",
-            dataIndex: 'handleTime',
-            customRender:function (text) {
-              return !text?"":(text.length>10?text.substr(0,10):text)
-            }
-          },
-          {
-            title:'执行-状态',
-            align:"center",
-            dataIndex: 'handleCode'
-          },
-          {
-            title:'执行-日志',
-            align:"center",
-            dataIndex: 'handleMsg'
-          },
-          {
-            title:'告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败',
-            align:"center",
-            dataIndex: 'alarmStatus'
-          },
-          {
-            title:'datax进程Id',
-            align:"center",
-            dataIndex: 'processId'
-          },
-          {
-            title:'增量表max id',
-            align:"center",
-            dataIndex: 'maxId'
-          },
-          {
-            title: '操作',
-            dataIndex: 'action',
-            align:"center",
-            fixed:"right",
-            width:147,
-            scopedSlots: { customRender: 'action' }
-          }
-        ],
-        url: {
-          list: "/kzksDataXJobLog/jobLog/list",
-          delete: "/kzksDataXJobLog/jobLog/delete",
-          deleteBatch: "/kzksDataXJobLog/jobLog/deleteBatch",
-          exportXlsUrl: "/kzksDataXJobLog/jobLog/exportXls",
-          importExcelUrl: "kzksDataXJobLog/jobLog/importExcel",
-          
-        },
-        dictOptions:{},
-        superFieldList:[],
-      }
-    },
-    created() {
-    this.getSuperFieldList();
-    },
-    computed: {
-      importExcelUrl: function(){
-        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
-      },
-    },
-    methods: {
-      initDictConfig(){
-      },
-      getSuperFieldList(){
-        let fieldList=[];
-        fieldList.push({type:'int',value:'jobGroup',text:'执行器主键ID'})
-        fieldList.push({type:'int',value:'jobId',text:'任务,主键ID'})
-        fieldList.push({type:'string',value:'jobDesc',text:'jobDesc'})
-        fieldList.push({type:'string',value:'executorAddress',text:'执行器地址,本次执行的地址'})
-        fieldList.push({type:'string',value:'executorHandler',text:'执行器任务handler'})
-        fieldList.push({type:'string',value:'executorParam',text:'执行器任务参数'})
-        fieldList.push({type:'string',value:'executorShardingParam',text:'执行器任务分片参数,格式如 1/2'})
-        fieldList.push({type:'int',value:'executorFailRetryCount',text:'失败重试次数'})
-        fieldList.push({type:'date',value:'triggerTime',text:'调度-时间'})
-        fieldList.push({type:'int',value:'triggerCode',text:'调度-结果'})
-        fieldList.push({type:'string',value:'triggerMsg',text:'调度-日志'})
-        fieldList.push({type:'date',value:'handleTime',text:'执行-时间'})
-        fieldList.push({type:'int',value:'handleCode',text:'执行-状态'})
-        fieldList.push({type:'string',value:'handleMsg',text:'执行-日志'})
-        fieldList.push({type:'int',value:'alarmStatus',text:'告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败'})
-        fieldList.push({type:'string',value:'processId',text:'datax进程Id'})
-        fieldList.push({type:'int',value:'maxId',text:'增量表max id'})
-        this.superFieldList = fieldList
-      }
-    }
-  }
-</script>
-<style scoped>
-  @import '~@assets/less/common.less';
-</style>

+ 0 - 17
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/JobLog_menu_insert.sql

@@ -1,26 +0,0 @@
-
-
-INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external) 
-VALUES ('2023122009174610420', NULL, 'job_log', '/kzksDataXJobLog/jobLogList', 'kzksDataXJobLog/JobLogList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 1, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-12-20 09:17:42', NULL, NULL, 0);
-
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023122009174620421', '2023122009174610420', '添加job_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:job_log:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-20 09:17:42', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023122009174620422', '2023122009174610420', '编辑job_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:job_log:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-20 09:17:42', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023122009174620423', '2023122009174610420', '删除job_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:job_log:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-20 09:17:42', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023122009174620424', '2023122009174610420', '批量删除job_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:job_log:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-20 09:17:42', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023122009174620425', '2023122009174610420', '导出excel_job_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:job_log:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-20 09:17:42', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023122009174620426', '2023122009174610420', '导入excel_job_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:job_log:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-20 09:17:42', NULL, NULL, 0, 0, '1', 0);

+ 0 - 199
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/modules/JobLogForm.vue

@@ -1,199 +0,0 @@
-<template>
-  <a-spin :spinning="confirmLoading">
-    <j-form-container :disabled="formDisabled">
-      <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
-        <a-row>
-          <a-col :span="24">
-            <a-form-model-item label="执行器主键ID" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="jobGroup">
-              <a-input-number v-model="model.jobGroup" placeholder="请输入执行器主键ID" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="任务,主键ID" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="jobId">
-              <a-input-number v-model="model.jobId" placeholder="请输入任务,主键ID" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="jobDesc" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="jobDesc">
-              <a-input v-model="model.jobDesc" placeholder="请输入jobDesc"  ></a-input>
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行器地址,本次执行的地址" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="executorAddress">
-              <a-input v-model="model.executorAddress" placeholder="请输入执行器地址,本次执行的地址"  ></a-input>
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行器任务handler" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="executorHandler">
-              <a-input v-model="model.executorHandler" placeholder="请输入执行器任务handler"  ></a-input>
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行器任务参数" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="executorParam">
-              <a-input v-model="model.executorParam" placeholder="请输入执行器任务参数"  ></a-input>
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行器任务分片参数,格式如 1/2" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="executorShardingParam">
-              <a-input v-model="model.executorShardingParam" placeholder="请输入执行器任务分片参数,格式如 1/2"  ></a-input>
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="失败重试次数" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="executorFailRetryCount">
-              <a-input-number v-model="model.executorFailRetryCount" placeholder="请输入失败重试次数" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="调度-时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="triggerTime">
-              <j-date placeholder="请选择调度-时间" v-model="model.triggerTime"  style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="调度-结果" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="triggerCode">
-              <a-input-number v-model="model.triggerCode" placeholder="请输入调度-结果" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="调度-日志" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="triggerMsg">
-              <a-textarea v-model="model.triggerMsg" rows="4" placeholder="请输入调度-日志" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行-时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="handleTime">
-              <j-date placeholder="请选择执行-时间" v-model="model.handleTime"  style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行-状态" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="handleCode">
-              <a-input-number v-model="model.handleCode" placeholder="请输入执行-状态" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行-日志" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="handleMsg">
-              <a-textarea v-model="model.handleMsg" rows="4" placeholder="请输入执行-日志" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="alarmStatus">
-              <a-input-number v-model="model.alarmStatus" placeholder="请输入告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="datax进程Id" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="processId">
-              <a-input v-model="model.processId" placeholder="请输入datax进程Id"  ></a-input>
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="增量表max id" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="maxId">
-              <a-input-number v-model="model.maxId" placeholder="请输入增量表max id" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-        </a-row>
-      </a-form-model>
-    </j-form-container>
-  </a-spin>
-</template>
-
-<script>
-
-  import { httpAction, getAction } from '@/api/manage'
-  import { validateDuplicateValue } from '@/utils/util'
-
-  export default {
-    name: 'JobLogForm',
-    components: {
-    },
-    props: {
-      //表单禁用
-      disabled: {
-        type: Boolean,
-        default: false,
-        required: false
-      }
-    },
-    data () {
-      return {
-        model:{
-         },
-        labelCol: {
-          xs: { span: 24 },
-          sm: { span: 5 },
-        },
-        wrapperCol: {
-          xs: { span: 24 },
-          sm: { span: 16 },
-        },
-        confirmLoading: false,
-        validatorRules: {
-           jobGroup: [
-              { required: true, message: '请输入执行器主键ID!'},
-           ],
-           jobId: [
-              { required: true, message: '请输入任务,主键ID!'},
-           ],
-           triggerCode: [
-              { required: true, message: '请输入调度-结果!'},
-           ],
-           handleCode: [
-              { required: true, message: '请输入执行-状态!'},
-           ],
-           alarmStatus: [
-              { required: true, message: '请输入告警状态:0-默认、1-无需告警、2-告警成功、3-告警失败!'},
-           ],
-        },
-        url: {
-          add: "/kzksDataXJobLog/jobLog/add",
-          edit: "/kzksDataXJobLog/jobLog/edit",
-          queryById: "/kzksDataXJobLog/jobLog/queryById"
-        }
-      }
-    },
-    computed: {
-      formDisabled(){
-        return this.disabled
-      },
-    },
-    created () {
-       //备份model原始值
-      this.modelDefault = JSON.parse(JSON.stringify(this.model));
-    },
-    methods: {
-      add () {
-        this.edit(this.modelDefault);
-      },
-      edit (record) {
-        this.model = Object.assign({}, record);
-        this.visible = true;
-      },
-      submitForm () {
-        const that = this;
-        // 触发表单验证
-        this.$refs.form.validate(valid => {
-          if (valid) {
-            that.confirmLoading = true;
-            let httpurl = '';
-            let method = '';
-            if(!this.model.id){
-              httpurl+=this.url.add;
-              method = 'post';
-            }else{
-              httpurl+=this.url.edit;
-               method = 'put';
-            }
-            httpAction(httpurl,this.model,method).then((res)=>{
-              if(res.success){
-                that.$message.success(res.message);
-                that.$emit('ok');
-              }else{
-                that.$message.warning(res.message);
-              }
-            }).finally(() => {
-              that.confirmLoading = false;
-            })
-          }
-         
-        })
-      },
-    }
-  }
-</script>

+ 0 - 84
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/modules/JobLogModal.Style#Drawer.vue

@@ -1,84 +0,0 @@
-<template>
-  <a-drawer
-    :title="title"
-    :width="width"
-    placement="right"
-    :closable="false"
-    @close="close"
-    destroyOnClose
-    :visible="visible">
-    <job-log-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></job-log-form>
-    <div class="drawer-footer">
-      <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button>
-      <a-button v-if="!disableSubmit"  @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
-    </div>
-  </a-drawer>
-</template>
-
-<script>
-
-  import JobLogForm from './JobLogForm'
-
-  export default {
-    name: 'JobLogModal',
-    components: {
-      JobLogForm
-    },
-    data () {
-      return {
-        title:"操作",
-        width:800,
-        visible: false,
-        disableSubmit: false
-      }
-    },
-    methods: {
-      add () {
-        this.visible=true
-        this.$nextTick(()=>{
-          this.$refs.realForm.add();
-        })
-      },
-      edit (record) {
-        this.visible=true
-        this.$nextTick(()=>{
-          this.$refs.realForm.edit(record);
-        });
-      },
-      close () {
-        this.$emit('close');
-        this.visible = false;
-      },
-      submitCallback(){
-        this.$emit('ok');
-        this.visible = false;
-      },
-      handleOk () {
-        this.$refs.realForm.submitForm();
-      },
-      handleCancel () {
-        this.close()
-      }
-    }
-  }
-</script>
-
-<style lang="less" scoped>
-/** Button按钮间距 */
-  .ant-btn {
-    margin-left: 30px;
-    margin-bottom: 30px;
-    float: right;
-  }
-  .drawer-footer{
-    position: absolute;
-    bottom: -8px;
-    width: 100%;
-    border-top: 1px solid #e8e8e8;
-    padding: 10px 16px;
-    text-align: right;
-    left: 0;
-    background: #fff;
-    border-radius: 0 0 2px 2px;
-  }
-</style>

+ 0 - 60
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/vue/modules/JobLogModal.vue

@@ -1,60 +0,0 @@
-<template>
-  <j-modal
-    :title="title"
-    :width="width"
-    :visible="visible"
-    switchFullscreen
-    @ok="handleOk"
-    :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
-    @cancel="handleCancel"
-    cancelText="关闭">
-    <job-log-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></job-log-form>
-  </j-modal>
-</template>
-
-<script>
-
-  import JobLogForm from './JobLogForm'
-  export default {
-    name: 'JobLogModal',
-    components: {
-      JobLogForm
-    },
-    data () {
-      return {
-        title:'',
-        width:800,
-        visible: false,
-        disableSubmit: false
-      }
-    },
-    methods: {
-      add () {
-        this.visible=true
-        this.$nextTick(()=>{
-          this.$refs.realForm.add();
-        })
-      },
-      edit (record) {
-        this.visible=true
-        this.$nextTick(()=>{
-          this.$refs.realForm.edit(record);
-        })
-      },
-      close () {
-        this.$emit('close');
-        this.visible = false;
-      },
-      handleOk () {
-        this.$refs.realForm.submitForm();
-      },
-      submitCallback(){
-        this.$emit('ok');
-        this.visible = false;
-      },
-      handleCancel () {
-        this.close()
-      }
-    }
-  }
-</script>

+ 0 - 17
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/mapper/KzksSummaryHandleLogMapper.java

@@ -1,17 +0,0 @@
-package org.jeecg.modules.kzksSummaryHandleLog.mapper;
-
-import java.util.List;
-
-import org.apache.ibatis.annotations.Param;
-import org.jeecg.modules.kzksSummaryHandleLog.entity.KzksSummaryHandleLog;
-import com.baomidou.mybatisplus.core.mapper.BaseMapper;
-
-/**
- * @Description: kzks_summary_handle_log
- * @Author: jeecg-boot
- * @Date:   2023-12-19
- * @Version: V1.0
- */
-public interface KzksSummaryHandleLogMapper extends BaseMapper<KzksSummaryHandleLog> {
-
-}

+ 0 - 14
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/service/IKzksSummaryHandleLogService.java

@@ -1,14 +0,0 @@
-package org.jeecg.modules.kzksSummaryHandleLog.service;
-
-import org.jeecg.modules.kzksSummaryHandleLog.entity.KzksSummaryHandleLog;
-import com.baomidou.mybatisplus.extension.service.IService;
-
-/**
- * @Description: kzks_summary_handle_log
- * @Author: jeecg-boot
- * @Date:   2023-12-19
- * @Version: V1.0
- */
-public interface IKzksSummaryHandleLogService extends IService<KzksSummaryHandleLog> {
-
-}

+ 0 - 192
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/KzksSummaryHandleLogList.vue

@@ -1,192 +0,0 @@
-<template>
-  <a-card :bordered="false">
-    <!-- 查询区域 -->
-    <div class="table-page-search-wrapper">
-      <a-form layout="inline" @keyup.enter.native="searchQuery">
-        <a-row :gutter="24">
-        </a-row>
-      </a-form>
-    </div>
-    <!-- 查询区域-END -->
-
-    <!-- 操作按钮区域 -->
-    <div class="table-operator">
-      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
-      <a-button type="primary" icon="download" @click="handleExportXls('kzks_summary_handle_log')">导出</a-button>
-      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
-        <a-button type="primary" icon="import">导入</a-button>
-      </a-upload>
-      <!-- 高级查询区域 -->
-      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
-      <a-dropdown v-if="selectedRowKeys.length > 0">
-        <a-menu slot="overlay">
-          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
-        </a-menu>
-        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
-      </a-dropdown>
-    </div>
-
-    <!-- table区域-begin -->
-    <div>
-      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
-        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
-        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
-      </div>
-
-      <a-table
-        ref="table"
-        size="middle"
-        :scroll="{x:true}"
-        bordered
-        rowKey="id"
-        :columns="columns"
-        :dataSource="dataSource"
-        :pagination="ipagination"
-        :loading="loading"
-        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
-        class="j-table-force-nowrap"
-        @change="handleTableChange">
-
-        <template slot="htmlSlot" slot-scope="text">
-          <div v-html="text"></div>
-        </template>
-        <template slot="imgSlot" slot-scope="text,record">
-          <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
-          <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
-        </template>
-        <template slot="fileSlot" slot-scope="text">
-          <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
-          <a-button
-            v-else
-            :ghost="true"
-            type="primary"
-            icon="download"
-            size="small"
-            @click="downloadFile(text)">
-            下载
-          </a-button>
-        </template>
-
-        <span slot="action" slot-scope="text, record">
-          <a @click="handleEdit(record)">编辑</a>
-
-          <a-divider type="vertical" />
-          <a-dropdown>
-            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
-            <a-menu slot="overlay">
-              <a-menu-item>
-                <a @click="handleDetail(record)">详情</a>
-              </a-menu-item>
-              <a-menu-item>
-                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
-                  <a>删除</a>
-                </a-popconfirm>
-              </a-menu-item>
-            </a-menu>
-          </a-dropdown>
-        </span>
-
-      </a-table>
-    </div>
-
-    <kzks-summary-handle-log-modal ref="modalForm" @ok="modalFormOk"></kzks-summary-handle-log-modal>
-  </a-card>
-</template>
-
-<script>
-
-  import '@/assets/less/TableExpand.less'
-  import { mixinDevice } from '@/utils/mixin'
-  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
-  import KzksSummaryHandleLogModal from './modules/KzksSummaryHandleLogModal'
-
-  export default {
-    name: 'KzksSummaryHandleLogList',
-    mixins:[JeecgListMixin, mixinDevice],
-    components: {
-      KzksSummaryHandleLogModal
-    },
-    data () {
-      return {
-        description: 'kzks_summary_handle_log管理页面',
-        // 表头
-        columns: [
-          {
-            title: '#',
-            dataIndex: '',
-            key:'rowIndex',
-            width:60,
-            align:"center",
-            customRender:function (t,r,index) {
-              return parseInt(index)+1;
-            }
-          },
-          {
-            title:'执行时间',
-            align:"center",
-            dataIndex: 'handleTime',
-            customRender:function (text) {
-              return !text?"":(text.length>10?text.substr(0,10):text)
-            }
-          },
-          {
-            title:'执行结果 0失败,1成功',
-            align:"center",
-            dataIndex: 'handleResult'
-          },
-          {
-            title:'执行日志',
-            align:"center",
-            dataIndex: 'handleMsg'
-          },
-          {
-            title:'记录类型:0主结果,1详细结果',
-            align:"center",
-            dataIndex: 'logType'
-          },
-          {
-            title: '操作',
-            dataIndex: 'action',
-            align:"center",
-            fixed:"right",
-            width:147,
-            scopedSlots: { customRender: 'action' }
-          }
-        ],
-        url: {
-          list: "/kzksSummaryHandleLog/kzksSummaryHandleLog/list",
-          delete: "/kzksSummaryHandleLog/kzksSummaryHandleLog/delete",
-          deleteBatch: "/kzksSummaryHandleLog/kzksSummaryHandleLog/deleteBatch",
-          exportXlsUrl: "/kzksSummaryHandleLog/kzksSummaryHandleLog/exportXls",
-          importExcelUrl: "kzksSummaryHandleLog/kzksSummaryHandleLog/importExcel",
-          
-        },
-        dictOptions:{},
-        superFieldList:[],
-      }
-    },
-    created() {
-    this.getSuperFieldList();
-    },
-    computed: {
-      importExcelUrl: function(){
-        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
-      },
-    },
-    methods: {
-      initDictConfig(){
-      },
-      getSuperFieldList(){
-        let fieldList=[];
-        fieldList.push({type:'date',value:'handleTime',text:'执行时间'})
-        fieldList.push({type:'int',value:'handleResult',text:'执行结果 0失败,1成功'})
-        fieldList.push({type:'string',value:'handleMsg',text:'执行日志'})
-        fieldList.push({type:'int',value:'logType',text:'记录类型:0主结果,1详细结果'})
-        this.superFieldList = fieldList
-      }
-    }
-  }
-</script>
-<style scoped>
-  @import '~@assets/less/common.less';
-</style>

+ 0 - 17
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/KzksSummaryHandleLog_menu_insert.sql

@@ -1,26 +0,0 @@
-
-
-INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external) 
-VALUES ('2023121904106840450', NULL, 'kzks_summary_handle_log', '/kzksSummaryHandleLog/kzksSummaryHandleLogList', 'kzksSummaryHandleLog/KzksSummaryHandleLogList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 1, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-12-19 16:10:45', NULL, NULL, 0);
-
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023121904106850451', '2023121904106840450', '添加kzks_summary_handle_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:kzks_summary_handle_log:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-19 16:10:45', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023121904106850452', '2023121904106840450', '编辑kzks_summary_handle_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:kzks_summary_handle_log:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-19 16:10:45', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023121904106850453', '2023121904106840450', '删除kzks_summary_handle_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:kzks_summary_handle_log:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-19 16:10:45', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023121904106850454', '2023121904106840450', '批量删除kzks_summary_handle_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:kzks_summary_handle_log:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-19 16:10:45', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023121904106850455', '2023121904106840450', '导出excel_kzks_summary_handle_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:kzks_summary_handle_log:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-19 16:10:45', NULL, NULL, 0, 0, '1', 0);
-INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external)
-VALUES ('2023121904106850456', '2023121904106840450', '导入excel_kzks_summary_handle_log', NULL, NULL, 0, NULL, NULL, 2, 'org.jeecg.modules:kzks_summary_handle_log:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-12-19 16:10:45', NULL, NULL, 0, 0, '1', 0);

+ 0 - 119
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/modules/KzksSummaryHandleLogForm.vue

@@ -1,119 +0,0 @@
-<template>
-  <a-spin :spinning="confirmLoading">
-    <j-form-container :disabled="formDisabled">
-      <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
-        <a-row>
-          <a-col :span="24">
-            <a-form-model-item label="执行时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="handleTime">
-              <j-date placeholder="请选择执行时间" v-model="model.handleTime"  style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行结果 0失败,1成功" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="handleResult">
-              <a-input-number v-model="model.handleResult" placeholder="请输入执行结果 0失败,1成功" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="执行日志" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="handleMsg">
-              <a-input v-model="model.handleMsg" placeholder="请输入执行日志"  ></a-input>
-            </a-form-model-item>
-          </a-col>
-          <a-col :span="24">
-            <a-form-model-item label="记录类型:0主结果,1详细结果" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="logType">
-              <a-input-number v-model="model.logType" placeholder="请输入记录类型:0主结果,1详细结果" style="width: 100%" />
-            </a-form-model-item>
-          </a-col>
-        </a-row>
-      </a-form-model>
-    </j-form-container>
-  </a-spin>
-</template>
-
-<script>
-
-  import { httpAction, getAction } from '@/api/manage'
-  import { validateDuplicateValue } from '@/utils/util'
-
-  export default {
-    name: 'KzksSummaryHandleLogForm',
-    components: {
-    },
-    props: {
-      //表单禁用
-      disabled: {
-        type: Boolean,
-        default: false,
-        required: false
-      }
-    },
-    data () {
-      return {
-        model:{
-         },
-        labelCol: {
-          xs: { span: 24 },
-          sm: { span: 5 },
-        },
-        wrapperCol: {
-          xs: { span: 24 },
-          sm: { span: 16 },
-        },
-        confirmLoading: false,
-        validatorRules: {
-        },
-        url: {
-          add: "/kzksSummaryHandleLog/kzksSummaryHandleLog/add",
-          edit: "/kzksSummaryHandleLog/kzksSummaryHandleLog/edit",
-          queryById: "/kzksSummaryHandleLog/kzksSummaryHandleLog/queryById"
-        }
-      }
-    },
-    computed: {
-      formDisabled(){
-        return this.disabled
-      },
-    },
-    created () {
-       //备份model原始值
-      this.modelDefault = JSON.parse(JSON.stringify(this.model));
-    },
-    methods: {
-      add () {
-        this.edit(this.modelDefault);
-      },
-      edit (record) {
-        this.model = Object.assign({}, record);
-        this.visible = true;
-      },
-      submitForm () {
-        const that = this;
-        // 触发表单验证
-        this.$refs.form.validate(valid => {
-          if (valid) {
-            that.confirmLoading = true;
-            let httpurl = '';
-            let method = '';
-            if(!this.model.id){
-              httpurl+=this.url.add;
-              method = 'post';
-            }else{
-              httpurl+=this.url.edit;
-               method = 'put';
-            }
-            httpAction(httpurl,this.model,method).then((res)=>{
-              if(res.success){
-                that.$message.success(res.message);
-                that.$emit('ok');
-              }else{
-                that.$message.warning(res.message);
-              }
-            }).finally(() => {
-              that.confirmLoading = false;
-            })
-          }
-         
-        })
-      },
-    }
-  }
-</script>

+ 0 - 84
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/modules/KzksSummaryHandleLogModal.Style#Drawer.vue

@@ -1,84 +0,0 @@
-<template>
-  <a-drawer
-    :title="title"
-    :width="width"
-    placement="right"
-    :closable="false"
-    @close="close"
-    destroyOnClose
-    :visible="visible">
-    <kzks-summary-handle-log-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></kzks-summary-handle-log-form>
-    <div class="drawer-footer">
-      <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button>
-      <a-button v-if="!disableSubmit"  @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
-    </div>
-  </a-drawer>
-</template>
-
-<script>
-
-  import KzksSummaryHandleLogForm from './KzksSummaryHandleLogForm'
-
-  export default {
-    name: 'KzksSummaryHandleLogModal',
-    components: {
-      KzksSummaryHandleLogForm
-    },
-    data () {
-      return {
-        title:"操作",
-        width:800,
-        visible: false,
-        disableSubmit: false
-      }
-    },
-    methods: {
-      add () {
-        this.visible=true
-        this.$nextTick(()=>{
-          this.$refs.realForm.add();
-        })
-      },
-      edit (record) {
-        this.visible=true
-        this.$nextTick(()=>{
-          this.$refs.realForm.edit(record);
-        });
-      },
-      close () {
-        this.$emit('close');
-        this.visible = false;
-      },
-      submitCallback(){
-        this.$emit('ok');
-        this.visible = false;
-      },
-      handleOk () {
-        this.$refs.realForm.submitForm();
-      },
-      handleCancel () {
-        this.close()
-      }
-    }
-  }
-</script>
-
-<style lang="less" scoped>
-/** Button按钮间距 */
-  .ant-btn {
-    margin-left: 30px;
-    margin-bottom: 30px;
-    float: right;
-  }
-  .drawer-footer{
-    position: absolute;
-    bottom: -8px;
-    width: 100%;
-    border-top: 1px solid #e8e8e8;
-    padding: 10px 16px;
-    text-align: right;
-    left: 0;
-    background: #fff;
-    border-radius: 0 0 2px 2px;
-  }
-</style>

+ 0 - 60
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/vue/modules/KzksSummaryHandleLogModal.vue

@@ -1,60 +0,0 @@
-<template>
-  <j-modal
-    :title="title"
-    :width="width"
-    :visible="visible"
-    switchFullscreen
-    @ok="handleOk"
-    :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
-    @cancel="handleCancel"
-    cancelText="关闭">
-    <kzks-summary-handle-log-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></kzks-summary-handle-log-form>
-  </j-modal>
-</template>
-
-<script>
-
-  import KzksSummaryHandleLogForm from './KzksSummaryHandleLogForm'
-  export default {
-    name: 'KzksSummaryHandleLogModal',
-    components: {
-      KzksSummaryHandleLogForm
-    },
-    data () {
-      return {
-        title:'',
-        width:800,
-        visible: false,
-        disableSubmit: false
-      }
-    },
-    methods: {
-      add () {
-        this.visible=true
-        this.$nextTick(()=>{
-          this.$refs.realForm.add();
-        })
-      },
-      edit (record) {
-        this.visible=true
-        this.$nextTick(()=>{
-          this.$refs.realForm.edit(record);
-        })
-      },
-      close () {
-        this.$emit('close');
-        this.visible = false;
-      },
-      handleOk () {
-        this.$refs.realForm.submitForm();
-      },
-      submitCallback(){
-        this.$emit('ok');
-        this.visible = false;
-      },
-      handleCancel () {
-        this.close()
-      }
-    }
-  }
-</script>

+ 162 - 0
module_kzks/src/main/java/org/jeecg/modules/logDataUpdateRecords/controller/KzksDataUpdateRecordsController.java

@@ -0,0 +1,162 @@
+package org.jeecg.modules.logDataUpdateRecords.controller;
+
+import java.util.Arrays;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import org.jeecg.common.api.vo.Result;
+import org.jeecg.common.system.query.QueryGenerator;
+import org.jeecg.modules.logDataUpdateRecords.entity.DataUpdateRecords;
+import org.jeecg.modules.logDataUpdateRecords.service.IKzksDataUpdateRecordsService;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import lombok.extern.slf4j.Slf4j;
+
+import org.jeecg.common.system.base.controller.JeecgController;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.servlet.ModelAndView;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+import org.jeecg.common.aspect.annotation.AutoLog;
+
+ /**
+ * @Description: kzks_data_update_records
+ * @Author: jeecg-boot
+ * @Date:   2023-12-22
+ * @Version: V1.0
+ */
+@Api(tags="数据更新记录日志")
+@RestController
+@RequestMapping("/kzksDataUpdateRecords/kzksDataUpdateRecords")
+@Slf4j
+public class KzksDataUpdateRecordsController extends JeecgController<DataUpdateRecords, IKzksDataUpdateRecordsService> {
+	@Autowired
+	private IKzksDataUpdateRecordsService kzksDataUpdateRecordsService;
+
+	/**
+	 * 分页列表查询
+	 *
+	 * @param dataUpdateRecords
+	 * @param pageNo
+	 * @param pageSize
+	 * @param req
+	 * @return
+	 */
+	//@AutoLog(value = "数据更新记录日志-分页列表查询")
+	@ApiOperation(value="数据更新记录日志-分页列表查询", notes="数据更新记录日志-分页列表查询")
+	@GetMapping(value = "/list")
+	public Result<IPage<DataUpdateRecords>> queryPageList(DataUpdateRecords dataUpdateRecords,
+														  @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
+														  @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
+														  HttpServletRequest req) {
+		QueryWrapper<DataUpdateRecords> queryWrapper = QueryGenerator.initQueryWrapper(dataUpdateRecords, req.getParameterMap());
+		Page<DataUpdateRecords> page = new Page<DataUpdateRecords>(pageNo, pageSize);
+		IPage<DataUpdateRecords> pageList = kzksDataUpdateRecordsService.page(page, queryWrapper);
+		return Result.OK(pageList);
+	}
+
+	/**
+	 *   添加
+	 *
+	 * @param dataUpdateRecords
+	 * @return
+	 */
+	@AutoLog(value = "数据更新记录日志-添加")
+	@ApiOperation(value="数据更新记录日志-添加", notes="数据更新记录日志-添加")
+	//@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:add")
+	@PostMapping(value = "/add")
+	public Result<String> add(@RequestBody DataUpdateRecords dataUpdateRecords) {
+		kzksDataUpdateRecordsService.save(dataUpdateRecords);
+		return Result.OK("添加成功!");
+	}
+
+	/**
+	 *  编辑
+	 *
+	 * @param dataUpdateRecords
+	 * @return
+	 */
+	@AutoLog(value = "数据更新记录日志-编辑")
+	@ApiOperation(value="数据更新记录日志-编辑", notes="数据更新记录日志-编辑")
+	//@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:edit")
+	@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
+	public Result<String> edit(@RequestBody DataUpdateRecords dataUpdateRecords) {
+		kzksDataUpdateRecordsService.updateById(dataUpdateRecords);
+		return Result.OK("编辑成功!");
+	}
+
+	/**
+	 *   通过id删除
+	 *
+	 * @param id
+	 * @return
+	 */
+	@AutoLog(value = "数据更新记录日志-通过id删除")
+	@ApiOperation(value="数据更新记录日志-通过id删除", notes="数据更新记录日志-通过id删除")
+	//@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:delete")
+	@DeleteMapping(value = "/delete")
+	public Result<String> delete(@RequestParam(name="id",required=true) String id) {
+		kzksDataUpdateRecordsService.removeById(id);
+		return Result.OK("删除成功!");
+	}
+
+	/**
+	 *  批量删除
+	 *
+	 * @param ids
+	 * @return
+	 */
+	@AutoLog(value = "数据更新记录日志-批量删除")
+	@ApiOperation(value="数据更新记录日志-批量删除", notes="数据更新记录日志-批量删除")
+	//@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:deleteBatch")
+	@DeleteMapping(value = "/deleteBatch")
+	public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
+		this.kzksDataUpdateRecordsService.removeByIds(Arrays.asList(ids.split(",")));
+		return Result.OK("批量删除成功!");
+	}
+
+	/**
+	 * 通过id查询
+	 *
+	 * @param id
+	 * @return
+	 */
+	//@AutoLog(value = "数据更新记录日志-通过id查询")
+	@ApiOperation(value="数据更新记录日志-通过id查询", notes="数据更新记录日志-通过id查询")
+	@GetMapping(value = "/queryById")
+	public Result<DataUpdateRecords> queryById(@RequestParam(name="id",required=true) String id) {
+		DataUpdateRecords dataUpdateRecords = kzksDataUpdateRecordsService.getById(id);
+		if(dataUpdateRecords ==null) {
+			return Result.error("未找到对应数据");
+		}
+		return Result.OK(dataUpdateRecords);
+	}
+
+    /**
+    * 导出excel
+    *
+    * @param request
+    * @param dataUpdateRecords
+    */
+    //@RequiresPermissions("org.jeecg.modules:kzks_data_update_records:exportXls")
+    @RequestMapping(value = "/exportXls")
+    public ModelAndView exportXls(HttpServletRequest request, DataUpdateRecords dataUpdateRecords) {
+        return super.exportXls(request, dataUpdateRecords, DataUpdateRecords.class, "kzks_data_update_records");
+    }
+
+    /**
+      * 通过excel导入数据
+    *
+    * @param request
+    * @param response
+    * @return
+    */
+    //@RequiresPermissions("kzks_data_update_records:importExcel")
+    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
+    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
+        return super.importExcel(request, response, DataUpdateRecords.class);
+    }
+
+}

+ 5 - 9
module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/entity/KzksDataUpdateRecords.java

@@ -1,18 +1,14 @@
-package org.jeecg.modules.kzksDataUpdateRecords.entity;
+package org.jeecg.modules.logDataUpdateRecords.entity;
 
 import java.io.Serializable;
-import java.io.UnsupportedEncodingException;
-import java.util.Date;
-import java.math.BigDecimal;
+
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
 import lombok.Data;
 import com.fasterxml.jackson.annotation.JsonFormat;
 import org.springframework.format.annotation.DateTimeFormat;
 import org.jeecgframework.poi.excel.annotation.Excel;
-import org.jeecg.common.aspect.annotation.Dict;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.EqualsAndHashCode;
@@ -25,11 +21,11 @@ import lombok.experimental.Accessors;
  * @Version: V1.0
  */
 @Data
-@TableName("kzks_data_update_records")
+@TableName("kzks_log_data_update_records")
 @Accessors(chain = true)
 @EqualsAndHashCode(callSuper = false)
-@ApiModel(value="kzks_data_update_records对象", description="kzks_data_update_records")
-public class KzksDataUpdateRecords implements Serializable {
+@ApiModel(value="数据更新记录日志对象", description="数据更新记录日志")
+public class DataUpdateRecords implements Serializable {
     private static final long serialVersionUID = 1L;
 
 	/**主键*/

+ 3 - 6
module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/mapper/KzksDataUpdateRecordsMapper.java

@@ -1,9 +1,6 @@
-package org.jeecg.modules.kzksDataUpdateRecords.mapper;
+package org.jeecg.modules.logDataUpdateRecords.mapper;
 
-import java.util.List;
-
-import org.apache.ibatis.annotations.Param;
-import org.jeecg.modules.kzksDataUpdateRecords.entity.KzksDataUpdateRecords;
+import org.jeecg.modules.logDataUpdateRecords.entity.DataUpdateRecords;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
 /**
@@ -12,6 +9,6 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  * @Date:   2023-12-22
  * @Version: V1.0
  */
-public interface KzksDataUpdateRecordsMapper extends BaseMapper<KzksDataUpdateRecords> {
+public interface KzksDataUpdateRecordsMapper extends BaseMapper<DataUpdateRecords> {
 
 }

+ 2 - 2
module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/mapper/xml/KzksDataUpdateRecordsMapper.xml

@@ -1,5 +1,5 @@
 <?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="org.jeecg.modules.kzksDataUpdateRecords.mapper.KzksDataUpdateRecordsMapper">
+<mapper namespace="org.jeecg.modules.logDataUpdateRecords.mapper.KzksDataUpdateRecordsMapper">
 
-</mapper>
+</mapper>

+ 3 - 3
module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/service/IKzksDataUpdateRecordsService.java

@@ -1,6 +1,6 @@
-package org.jeecg.modules.kzksDataUpdateRecords.service;
+package org.jeecg.modules.logDataUpdateRecords.service;
 
-import org.jeecg.modules.kzksDataUpdateRecords.entity.KzksDataUpdateRecords;
+import org.jeecg.modules.logDataUpdateRecords.entity.DataUpdateRecords;
 import com.baomidou.mybatisplus.extension.service.IService;
 
 /**
@@ -9,6 +9,6 @@ import com.baomidou.mybatisplus.extension.service.IService;
  * @Date:   2023-12-22
  * @Version: V1.0
  */
-public interface IKzksDataUpdateRecordsService extends IService<KzksDataUpdateRecords> {
+public interface IKzksDataUpdateRecordsService extends IService<DataUpdateRecords> {
 
 }

+ 43 - 43
module_kzks/src/main/java/org/jeecg/modules/kzksDataUpdateRecords/service/impl/KzksDataUpdateRecordsServiceImpl.java

@@ -1,4 +1,4 @@
-package org.jeecg.modules.kzksDataUpdateRecords.service.impl;
+package org.jeecg.modules.logDataUpdateRecords.service.impl;
 
 import com.baomidou.mybatisplus.core.conditions.Wrapper;
 import com.baomidou.mybatisplus.core.enums.SqlMethod;
@@ -10,10 +10,10 @@ import com.baomidou.mybatisplus.extension.conditions.update.UpdateChainWrapper;
 import com.baomidou.mybatisplus.extension.kotlin.KtQueryChainWrapper;
 import com.baomidou.mybatisplus.extension.kotlin.KtUpdateChainWrapper;
 import org.apache.ibatis.session.SqlSession;
+import org.jeecg.modules.logDataUpdateRecords.entity.DataUpdateRecords;
 import org.jeecg.modules.dataSourceSwitch.annotation.UseSlaveDataSource;
-import org.jeecg.modules.kzksDataUpdateRecords.entity.KzksDataUpdateRecords;
-import org.jeecg.modules.kzksDataUpdateRecords.mapper.KzksDataUpdateRecordsMapper;
-import org.jeecg.modules.kzksDataUpdateRecords.service.IKzksDataUpdateRecordsService;
+import org.jeecg.modules.logDataUpdateRecords.mapper.KzksDataUpdateRecordsMapper;
+import org.jeecg.modules.logDataUpdateRecords.service.IKzksDataUpdateRecordsService;
 import org.springframework.stereotype.Service;
 
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
@@ -34,7 +34,7 @@ import java.util.function.Function;
  */
 @Service
 @UseSlaveDataSource
-public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdateRecordsMapper, KzksDataUpdateRecords> implements IKzksDataUpdateRecordsService {
+public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdateRecordsMapper, DataUpdateRecords> implements IKzksDataUpdateRecordsService {
     public KzksDataUpdateRecordsServiceImpl() {
         super();
     }
@@ -45,7 +45,7 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public Class<KzksDataUpdateRecords> getEntityClass() {
+    public Class<DataUpdateRecords> getEntityClass() {
         return super.getEntityClass();
     }
 
@@ -60,7 +60,7 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    protected Class<KzksDataUpdateRecords> currentModelClass() {
+    protected Class<DataUpdateRecords> currentModelClass() {
         return super.currentModelClass();
     }
 
@@ -80,7 +80,7 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public boolean saveBatch(Collection<KzksDataUpdateRecords> entityList, int batchSize) {
+    public boolean saveBatch(Collection<DataUpdateRecords> entityList, int batchSize) {
         return super.saveBatch(entityList, batchSize);
     }
 
@@ -90,32 +90,32 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public boolean saveOrUpdate(KzksDataUpdateRecords entity) {
+    public boolean saveOrUpdate(DataUpdateRecords entity) {
         return super.saveOrUpdate(entity);
     }
 
     @Override
-    public boolean saveOrUpdateBatch(Collection<KzksDataUpdateRecords> entityList, int batchSize) {
+    public boolean saveOrUpdateBatch(Collection<DataUpdateRecords> entityList, int batchSize) {
         return super.saveOrUpdateBatch(entityList, batchSize);
     }
 
     @Override
-    public boolean updateBatchById(Collection<KzksDataUpdateRecords> entityList, int batchSize) {
+    public boolean updateBatchById(Collection<DataUpdateRecords> entityList, int batchSize) {
         return super.updateBatchById(entityList, batchSize);
     }
 
     @Override
-    public KzksDataUpdateRecords getOne(Wrapper<KzksDataUpdateRecords> queryWrapper, boolean throwEx) {
+    public DataUpdateRecords getOne(Wrapper<DataUpdateRecords> queryWrapper, boolean throwEx) {
         return super.getOne(queryWrapper, throwEx);
     }
 
     @Override
-    public Map<String, Object> getMap(Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public Map<String, Object> getMap(Wrapper<DataUpdateRecords> queryWrapper) {
         return super.getMap(queryWrapper);
     }
 
     @Override
-    public <V> V getObj(Wrapper<KzksDataUpdateRecords> queryWrapper, Function<? super Object, V> mapper) {
+    public <V> V getObj(Wrapper<DataUpdateRecords> queryWrapper, Function<? super Object, V> mapper) {
         return super.getObj(queryWrapper, mapper);
     }
 
@@ -160,22 +160,22 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public boolean save(KzksDataUpdateRecords entity) {
+    public boolean save(DataUpdateRecords entity) {
         return super.save(entity);
     }
 
     @Override
-    public boolean saveBatch(Collection<KzksDataUpdateRecords> entityList) {
+    public boolean saveBatch(Collection<DataUpdateRecords> entityList) {
         return super.saveBatch(entityList);
     }
 
     @Override
-    public boolean saveOrUpdateBatch(Collection<KzksDataUpdateRecords> entityList) {
+    public boolean saveOrUpdateBatch(Collection<DataUpdateRecords> entityList) {
         return super.saveOrUpdateBatch(entityList);
     }
 
     @Override
-    public boolean removeById(KzksDataUpdateRecords entity) {
+    public boolean removeById(DataUpdateRecords entity) {
         return super.removeById(entity);
     }
 
@@ -185,7 +185,7 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public boolean remove(Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public boolean remove(Wrapper<DataUpdateRecords> queryWrapper) {
         return super.remove(queryWrapper);
     }
 
@@ -205,42 +205,42 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public boolean updateById(KzksDataUpdateRecords entity) {
+    public boolean updateById(DataUpdateRecords entity) {
         return super.updateById(entity);
     }
 
     @Override
-    public boolean update(Wrapper<KzksDataUpdateRecords> updateWrapper) {
+    public boolean update(Wrapper<DataUpdateRecords> updateWrapper) {
         return super.update(updateWrapper);
     }
 
     @Override
-    public boolean update(KzksDataUpdateRecords entity, Wrapper<KzksDataUpdateRecords> updateWrapper) {
+    public boolean update(DataUpdateRecords entity, Wrapper<DataUpdateRecords> updateWrapper) {
         return super.update(entity, updateWrapper);
     }
 
     @Override
-    public boolean updateBatchById(Collection<KzksDataUpdateRecords> entityList) {
+    public boolean updateBatchById(Collection<DataUpdateRecords> entityList) {
         return super.updateBatchById(entityList);
     }
 
     @Override
-    public KzksDataUpdateRecords getById(Serializable id) {
+    public DataUpdateRecords getById(Serializable id) {
         return super.getById(id);
     }
 
     @Override
-    public List<KzksDataUpdateRecords> listByIds(Collection<? extends Serializable> idList) {
+    public List<DataUpdateRecords> listByIds(Collection<? extends Serializable> idList) {
         return super.listByIds(idList);
     }
 
     @Override
-    public List<KzksDataUpdateRecords> listByMap(Map<String, Object> columnMap) {
+    public List<DataUpdateRecords> listByMap(Map<String, Object> columnMap) {
         return super.listByMap(columnMap);
     }
 
     @Override
-    public KzksDataUpdateRecords getOne(Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public DataUpdateRecords getOne(Wrapper<DataUpdateRecords> queryWrapper) {
         return super.getOne(queryWrapper);
     }
 
@@ -250,32 +250,32 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public long count(Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public long count(Wrapper<DataUpdateRecords> queryWrapper) {
         return super.count(queryWrapper);
     }
 
     @Override
-    public List<KzksDataUpdateRecords> list(Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public List<DataUpdateRecords> list(Wrapper<DataUpdateRecords> queryWrapper) {
         return super.list(queryWrapper);
     }
 
     @Override
-    public List<KzksDataUpdateRecords> list() {
+    public List<DataUpdateRecords> list() {
         return super.list();
     }
 
     @Override
-    public <E extends IPage<KzksDataUpdateRecords>> E page(E page, Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public <E extends IPage<DataUpdateRecords>> E page(E page, Wrapper<DataUpdateRecords> queryWrapper) {
         return super.page(page, queryWrapper);
     }
 
     @Override
-    public <E extends IPage<KzksDataUpdateRecords>> E page(E page) {
+    public <E extends IPage<DataUpdateRecords>> E page(E page) {
         return super.page(page);
     }
 
     @Override
-    public List<Map<String, Object>> listMaps(Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public List<Map<String, Object>> listMaps(Wrapper<DataUpdateRecords> queryWrapper) {
         return super.listMaps(queryWrapper);
     }
 
@@ -295,17 +295,17 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public List<Object> listObjs(Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public List<Object> listObjs(Wrapper<DataUpdateRecords> queryWrapper) {
         return super.listObjs(queryWrapper);
     }
 
     @Override
-    public <V> List<V> listObjs(Wrapper<KzksDataUpdateRecords> queryWrapper, Function<? super Object, V> mapper) {
+    public <V> List<V> listObjs(Wrapper<DataUpdateRecords> queryWrapper, Function<? super Object, V> mapper) {
         return super.listObjs(queryWrapper, mapper);
     }
 
     @Override
-    public <E extends IPage<Map<String, Object>>> E pageMaps(E page, Wrapper<KzksDataUpdateRecords> queryWrapper) {
+    public <E extends IPage<Map<String, Object>>> E pageMaps(E page, Wrapper<DataUpdateRecords> queryWrapper) {
         return super.pageMaps(page, queryWrapper);
     }
 
@@ -315,37 +315,37 @@ public class KzksDataUpdateRecordsServiceImpl extends ServiceImpl<KzksDataUpdate
     }
 
     @Override
-    public QueryChainWrapper<KzksDataUpdateRecords> query() {
+    public QueryChainWrapper<DataUpdateRecords> query() {
         return super.query();
     }
 
     @Override
-    public LambdaQueryChainWrapper<KzksDataUpdateRecords> lambdaQuery() {
+    public LambdaQueryChainWrapper<DataUpdateRecords> lambdaQuery() {
         return super.lambdaQuery();
     }
 
     @Override
-    public KtQueryChainWrapper<KzksDataUpdateRecords> ktQuery() {
+    public KtQueryChainWrapper<DataUpdateRecords> ktQuery() {
         return super.ktQuery();
     }
 
     @Override
-    public KtUpdateChainWrapper<KzksDataUpdateRecords> ktUpdate() {
+    public KtUpdateChainWrapper<DataUpdateRecords> ktUpdate() {
         return super.ktUpdate();
     }
 
     @Override
-    public UpdateChainWrapper<KzksDataUpdateRecords> update() {
+    public UpdateChainWrapper<DataUpdateRecords> update() {
         return super.update();
     }
 
     @Override
-    public LambdaUpdateChainWrapper<KzksDataUpdateRecords> lambdaUpdate() {
+    public LambdaUpdateChainWrapper<DataUpdateRecords> lambdaUpdate() {
         return super.lambdaUpdate();
     }
 
     @Override
-    public boolean saveOrUpdate(KzksDataUpdateRecords entity, Wrapper<KzksDataUpdateRecords> updateWrapper) {
+    public boolean saveOrUpdate(DataUpdateRecords entity, Wrapper<DataUpdateRecords> updateWrapper) {
         return super.saveOrUpdate(entity, updateWrapper);
     }
 }

+ 22 - 37
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/controller/JobLogController.java

@@ -1,37 +1,22 @@
-package org.jeecg.modules.kzksDataXJobLog.controller;
+package org.jeecg.modules.logDataXJobLog.controller;
 
 import java.util.Arrays;
-import java.util.List;
-import java.util.Map;
-import java.util.stream.Collectors;
-import java.io.IOException;
-import java.io.UnsupportedEncodingException;
-import java.net.URLDecoder;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import org.jeecg.common.api.vo.Result;
 import org.jeecg.common.system.query.QueryGenerator;
-import org.jeecg.common.util.oConvertUtils;
-import org.jeecg.modules.kzksDataXJobLog.entity.JobLog;
-import org.jeecg.modules.kzksDataXJobLog.service.IJobLogService;
+import org.jeecg.modules.logDataXJobLog.entity.JobLog;
+import org.jeecg.modules.logDataXJobLog.service.IJobLogService;
 
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import lombok.extern.slf4j.Slf4j;
 
-import org.jeecgframework.poi.excel.ExcelImportUtil;
-import org.jeecgframework.poi.excel.def.NormalExcelConstants;
-import org.jeecgframework.poi.excel.entity.ExportParams;
-import org.jeecgframework.poi.excel.entity.ImportParams;
-import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
 import org.jeecg.common.system.base.controller.JeecgController;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
-import org.springframework.web.multipart.MultipartFile;
-import org.springframework.web.multipart.MultipartHttpServletRequest;
 import org.springframework.web.servlet.ModelAndView;
-import com.alibaba.fastjson.JSON;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
 import org.jeecg.common.aspect.annotation.AutoLog;
@@ -42,14 +27,14 @@ import org.jeecg.common.aspect.annotation.AutoLog;
  * @Date:   2023-12-20
  * @Version: V1.0
  */
-@Api(tags="job_log")
+@Api(tags="DataX-Web同步任务日志")
 @RestController
 @RequestMapping("/kzksDataXJobLog/jobLog")
 @Slf4j
 public class JobLogController extends JeecgController<JobLog, IJobLogService> {
 	@Autowired
 	private IJobLogService jobLogService;
-	
+
 	/**
 	 * 分页列表查询
 	 *
@@ -59,8 +44,8 @@ public class JobLogController extends JeecgController<JobLog, IJobLogService> {
 	 * @param req
 	 * @return
 	 */
-	//@AutoLog(value = "job_log-分页列表查询")
-	@ApiOperation(value="job_log-分页列表查询", notes="job_log-分页列表查询")
+	//@AutoLog(value = "DataX-Web同步任务日志分页列表查询")
+	@ApiOperation(value="DataX-Web同步任务日志分页列表查询", notes="DataX-Web同步任务日志分页列表查询")
 	@GetMapping(value = "/list")
 	public Result<IPage<JobLog>> queryPageList(JobLog jobLog,
 								   @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
@@ -71,75 +56,75 @@ public class JobLogController extends JeecgController<JobLog, IJobLogService> {
 		IPage<JobLog> pageList = jobLogService.page(page, queryWrapper);
 		return Result.OK(pageList);
 	}
-	
+
 	/**
 	 *   添加
 	 *
 	 * @param jobLog
 	 * @return
 	 */
-	@AutoLog(value = "job_log-添加")
-	@ApiOperation(value="job_log-添加", notes="job_log-添加")
+	@AutoLog(value = "DataX-Web同步任务日志添加")
+	@ApiOperation(value="DataX-Web同步任务日志添加", notes="DataX-Web同步任务日志添加")
 	//@RequiresPermissions("org.jeecg.modules:job_log:add")
 	@PostMapping(value = "/add")
 	public Result<String> add(@RequestBody JobLog jobLog) {
 		jobLogService.save(jobLog);
 		return Result.OK("添加成功!");
 	}
-	
+
 	/**
 	 *  编辑
 	 *
 	 * @param jobLog
 	 * @return
 	 */
-	@AutoLog(value = "job_log-编辑")
-	@ApiOperation(value="job_log-编辑", notes="job_log-编辑")
+	@AutoLog(value = "DataX-Web同步任务日志编辑")
+	@ApiOperation(value="DataX-Web同步任务日志编辑", notes="DataX-Web同步任务日志编辑")
 	//@RequiresPermissions("org.jeecg.modules:job_log:edit")
 	@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
 	public Result<String> edit(@RequestBody JobLog jobLog) {
 		jobLogService.updateById(jobLog);
 		return Result.OK("编辑成功!");
 	}
-	
+
 	/**
 	 *   通过id删除
 	 *
 	 * @param id
 	 * @return
 	 */
-	@AutoLog(value = "job_log-通过id删除")
-	@ApiOperation(value="job_log-通过id删除", notes="job_log-通过id删除")
+	@AutoLog(value = "DataX-Web同步任务日志通过id删除")
+	@ApiOperation(value="DataX-Web同步任务日志通过id删除", notes="DataX-Web同步任务日志通过id删除")
 	//@RequiresPermissions("org.jeecg.modules:job_log:delete")
 	@DeleteMapping(value = "/delete")
 	public Result<String> delete(@RequestParam(name="id",required=true) String id) {
 		jobLogService.removeById(id);
 		return Result.OK("删除成功!");
 	}
-	
+
 	/**
 	 *  批量删除
 	 *
 	 * @param ids
 	 * @return
 	 */
-	@AutoLog(value = "job_log-批量删除")
-	@ApiOperation(value="job_log-批量删除", notes="job_log-批量删除")
+	@AutoLog(value = "DataX-Web同步任务日志批量删除")
+	@ApiOperation(value="DataX-Web同步任务日志批量删除", notes="DataX-Web同步任务日志批量删除")
 	//@RequiresPermissions("org.jeecg.modules:job_log:deleteBatch")
 	@DeleteMapping(value = "/deleteBatch")
 	public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
 		this.jobLogService.removeByIds(Arrays.asList(ids.split(",")));
 		return Result.OK("批量删除成功!");
 	}
-	
+
 	/**
 	 * 通过id查询
 	 *
 	 * @param id
 	 * @return
 	 */
-	//@AutoLog(value = "job_log-通过id查询")
-	@ApiOperation(value="job_log-通过id查询", notes="job_log-通过id查询")
+	//@AutoLog(value = "DataX-Web同步任务日志通过id查询")
+	@ApiOperation(value="DataX-Web同步任务日志通过id查询", notes="DataX-Web同步任务日志通过id查询")
 	@GetMapping(value = "/queryById")
 	public Result<JobLog> queryById(@RequestParam(name="id",required=true) String id) {
 		JobLog jobLog = jobLogService.getById(id);

+ 3 - 7
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/entity/JobLog.java

@@ -1,18 +1,14 @@
-package org.jeecg.modules.kzksDataXJobLog.entity;
+package org.jeecg.modules.logDataXJobLog.entity;
 
 import java.io.Serializable;
-import java.io.UnsupportedEncodingException;
-import java.util.Date;
-import java.math.BigDecimal;
+
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
 import lombok.Data;
 import com.fasterxml.jackson.annotation.JsonFormat;
 import org.springframework.format.annotation.DateTimeFormat;
 import org.jeecgframework.poi.excel.annotation.Excel;
-import org.jeecg.common.aspect.annotation.Dict;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.EqualsAndHashCode;
@@ -28,7 +24,7 @@ import lombok.experimental.Accessors;
 @TableName("job_log")
 @Accessors(chain = true)
 @EqualsAndHashCode(callSuper = false)
-@ApiModel(value="job_log对象", description="job_log")
+@ApiModel(value="DataX-Web同步任务日志对象", description="DataX-Web同步任务日志")
 public class JobLog implements Serializable {
     private static final long serialVersionUID = 1L;
 

+ 2 - 5
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/mapper/JobLogMapper.java

@@ -1,9 +1,6 @@
-package org.jeecg.modules.kzksDataXJobLog.mapper;
+package org.jeecg.modules.logDataXJobLog.mapper;
 
-import java.util.List;
-
-import org.apache.ibatis.annotations.Param;
-import org.jeecg.modules.kzksDataXJobLog.entity.JobLog;
+import org.jeecg.modules.logDataXJobLog.entity.JobLog;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
 /**

+ 2 - 2
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/mapper/xml/JobLogMapper.xml

@@ -1,5 +1,5 @@
 <?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="org.jeecg.modules.kzksDataXJobLog.mapper.JobLogMapper">
+<mapper namespace="org.jeecg.modules.logDataXJobLog.mapper.JobLogMapper">
 
-</mapper>
+</mapper>

+ 2 - 2
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/service/IJobLogService.java

@@ -1,6 +1,6 @@
-package org.jeecg.modules.kzksDataXJobLog.service;
+package org.jeecg.modules.logDataXJobLog.service;
 
-import org.jeecg.modules.kzksDataXJobLog.entity.JobLog;
+import org.jeecg.modules.logDataXJobLog.entity.JobLog;
 import com.baomidou.mybatisplus.extension.service.IService;
 
 /**

+ 4 - 4
module_kzks/src/main/java/org/jeecg/modules/kzksDataXJobLog/service/impl/JobLogServiceImpl.java

@@ -1,4 +1,4 @@
-package org.jeecg.modules.kzksDataXJobLog.service.impl;
+package org.jeecg.modules.logDataXJobLog.service.impl;
 
 import com.baomidou.mybatisplus.core.conditions.Wrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
@@ -9,9 +9,9 @@ import com.baomidou.mybatisplus.extension.conditions.update.UpdateChainWrapper;
 import com.baomidou.mybatisplus.extension.kotlin.KtQueryChainWrapper;
 import com.baomidou.mybatisplus.extension.kotlin.KtUpdateChainWrapper;
 import org.jeecg.modules.dataSourceSwitch.annotation.UseDataXWebDataSource;
-import org.jeecg.modules.kzksDataXJobLog.entity.JobLog;
-import org.jeecg.modules.kzksDataXJobLog.mapper.JobLogMapper;
-import org.jeecg.modules.kzksDataXJobLog.service.IJobLogService;
+import org.jeecg.modules.logDataXJobLog.entity.JobLog;
+import org.jeecg.modules.logDataXJobLog.mapper.JobLogMapper;
+import org.jeecg.modules.logDataXJobLog.service.IJobLogService;
 import org.springframework.stereotype.Service;
 
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;

+ 37 - 52
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/controller/KzksSummaryHandleLogController.java

@@ -1,37 +1,22 @@
-package org.jeecg.modules.kzksSummaryHandleLog.controller;
+package org.jeecg.modules.logSummaryHandleLog.controller;
 
 import java.util.Arrays;
-import java.util.List;
-import java.util.Map;
-import java.util.stream.Collectors;
-import java.io.IOException;
-import java.io.UnsupportedEncodingException;
-import java.net.URLDecoder;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import org.jeecg.common.api.vo.Result;
 import org.jeecg.common.system.query.QueryGenerator;
-import org.jeecg.common.util.oConvertUtils;
-import org.jeecg.modules.kzksSummaryHandleLog.entity.KzksSummaryHandleLog;
-import org.jeecg.modules.kzksSummaryHandleLog.service.IKzksSummaryHandleLogService;
+import org.jeecg.modules.logSummaryHandleLog.entity.SummaryHandleLog;
+import org.jeecg.modules.logSummaryHandleLog.service.IKzksSummaryHandleLogService;
 
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import lombok.extern.slf4j.Slf4j;
 
-import org.jeecgframework.poi.excel.ExcelImportUtil;
-import org.jeecgframework.poi.excel.def.NormalExcelConstants;
-import org.jeecgframework.poi.excel.entity.ExportParams;
-import org.jeecgframework.poi.excel.entity.ImportParams;
-import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
 import org.jeecg.common.system.base.controller.JeecgController;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.*;
-import org.springframework.web.multipart.MultipartFile;
-import org.springframework.web.multipart.MultipartHttpServletRequest;
 import org.springframework.web.servlet.ModelAndView;
-import com.alibaba.fastjson.JSON;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
 import org.jeecg.common.aspect.annotation.AutoLog;
@@ -42,14 +27,14 @@ import org.jeecg.common.aspect.annotation.AutoLog;
  * @Date:   2023-12-19
  * @Version: V1.0
  */
-@Api(tags="kzks_summary_handle_log")
+@Api(tags="visible执行计算日志")
 @RestController
 @RequestMapping("/kzksSummaryHandleLog/kzksSummaryHandleLog")
 @Slf4j
-public class KzksSummaryHandleLogController extends JeecgController<KzksSummaryHandleLog, IKzksSummaryHandleLogService> {
+public class KzksSummaryHandleLogController extends JeecgController<SummaryHandleLog, IKzksSummaryHandleLogService> {
 	@Autowired
 	private IKzksSummaryHandleLogService kzksSummaryHandleLogService;
-	
+
 	/**
 	 * 分页列表查询
 	 *
@@ -59,90 +44,90 @@ public class KzksSummaryHandleLogController extends JeecgController<KzksSummaryH
 	 * @param req
 	 * @return
 	 */
-	//@AutoLog(value = "kzks_summary_handle_log-分页列表查询")
-	@ApiOperation(value="kzks_summary_handle_log-分页列表查询", notes="kzks_summary_handle_log-分页列表查询")
+	//@AutoLog(value = "visible执行计算日志-分页列表查询")
+	@ApiOperation(value="visible执行计算日志-分页列表查询", notes="visible执行计算日志-分页列表查询")
 	@GetMapping(value = "/list")
-	public Result<IPage<KzksSummaryHandleLog>> queryPageList(KzksSummaryHandleLog kzksSummaryHandleLog,
-								   @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
-								   @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
-								   HttpServletRequest req) {
-		QueryWrapper<KzksSummaryHandleLog> queryWrapper = QueryGenerator.initQueryWrapper(kzksSummaryHandleLog, req.getParameterMap());
-		Page<KzksSummaryHandleLog> page = new Page<KzksSummaryHandleLog>(pageNo, pageSize);
-		IPage<KzksSummaryHandleLog> pageList = kzksSummaryHandleLogService.page(page, queryWrapper);
+	public Result<IPage<SummaryHandleLog>> queryPageList(SummaryHandleLog kzksSummaryHandleLog,
+														 @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
+														 @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
+														 HttpServletRequest req) {
+		QueryWrapper<SummaryHandleLog> queryWrapper = QueryGenerator.initQueryWrapper(kzksSummaryHandleLog, req.getParameterMap());
+		Page<SummaryHandleLog> page = new Page<SummaryHandleLog>(pageNo, pageSize);
+		IPage<SummaryHandleLog> pageList = kzksSummaryHandleLogService.page(page, queryWrapper);
 		return Result.OK(pageList);
 	}
-	
+
 	/**
 	 *   添加
 	 *
 	 * @param kzksSummaryHandleLog
 	 * @return
 	 */
-	@AutoLog(value = "kzks_summary_handle_log-添加")
-	@ApiOperation(value="kzks_summary_handle_log-添加", notes="kzks_summary_handle_log-添加")
+	@AutoLog(value = "visible执行计算日志-添加")
+	@ApiOperation(value="visible执行计算日志-添加", notes="visible执行计算日志-添加")
 	//@RequiresPermissions("org.jeecg.modules:kzks_summary_handle_log:add")
 	@PostMapping(value = "/add")
-	public Result<String> add(@RequestBody KzksSummaryHandleLog kzksSummaryHandleLog) {
+	public Result<String> add(@RequestBody SummaryHandleLog kzksSummaryHandleLog) {
 		kzksSummaryHandleLogService.save(kzksSummaryHandleLog);
 		return Result.OK("添加成功!");
 	}
-	
+
 	/**
 	 *  编辑
 	 *
 	 * @param kzksSummaryHandleLog
 	 * @return
 	 */
-	@AutoLog(value = "kzks_summary_handle_log-编辑")
-	@ApiOperation(value="kzks_summary_handle_log-编辑", notes="kzks_summary_handle_log-编辑")
+	@AutoLog(value = "visible执行计算日志-编辑")
+	@ApiOperation(value="visible执行计算日志-编辑", notes="visible执行计算日志-编辑")
 	//@RequiresPermissions("org.jeecg.modules:kzks_summary_handle_log:edit")
 	@RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
-	public Result<String> edit(@RequestBody KzksSummaryHandleLog kzksSummaryHandleLog) {
+	public Result<String> edit(@RequestBody SummaryHandleLog kzksSummaryHandleLog) {
 		kzksSummaryHandleLogService.updateById(kzksSummaryHandleLog);
 		return Result.OK("编辑成功!");
 	}
-	
+
 	/**
 	 *   通过id删除
 	 *
 	 * @param id
 	 * @return
 	 */
-	@AutoLog(value = "kzks_summary_handle_log-通过id删除")
-	@ApiOperation(value="kzks_summary_handle_log-通过id删除", notes="kzks_summary_handle_log-通过id删除")
+	@AutoLog(value = "visible执行计算日志-通过id删除")
+	@ApiOperation(value="visible执行计算日志-通过id删除", notes="visible执行计算日志-通过id删除")
 	//@RequiresPermissions("org.jeecg.modules:kzks_summary_handle_log:delete")
 	@DeleteMapping(value = "/delete")
 	public Result<String> delete(@RequestParam(name="id",required=true) String id) {
 		kzksSummaryHandleLogService.removeById(id);
 		return Result.OK("删除成功!");
 	}
-	
+
 	/**
 	 *  批量删除
 	 *
 	 * @param ids
 	 * @return
 	 */
-	@AutoLog(value = "kzks_summary_handle_log-批量删除")
-	@ApiOperation(value="kzks_summary_handle_log-批量删除", notes="kzks_summary_handle_log-批量删除")
+	@AutoLog(value = "visible执行计算日志-批量删除")
+	@ApiOperation(value="visible执行计算日志-批量删除", notes="visible执行计算日志-批量删除")
 	//@RequiresPermissions("org.jeecg.modules:kzks_summary_handle_log:deleteBatch")
 	@DeleteMapping(value = "/deleteBatch")
 	public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
 		this.kzksSummaryHandleLogService.removeByIds(Arrays.asList(ids.split(",")));
 		return Result.OK("批量删除成功!");
 	}
-	
+
 	/**
 	 * 通过id查询
 	 *
 	 * @param id
 	 * @return
 	 */
-	//@AutoLog(value = "kzks_summary_handle_log-通过id查询")
-	@ApiOperation(value="kzks_summary_handle_log-通过id查询", notes="kzks_summary_handle_log-通过id查询")
+	//@AutoLog(value = "visible执行计算日志-通过id查询")
+	@ApiOperation(value="visible执行计算日志-通过id查询", notes="visible执行计算日志-通过id查询")
 	@GetMapping(value = "/queryById")
-	public Result<KzksSummaryHandleLog> queryById(@RequestParam(name="id",required=true) String id) {
-		KzksSummaryHandleLog kzksSummaryHandleLog = kzksSummaryHandleLogService.getById(id);
+	public Result<SummaryHandleLog> queryById(@RequestParam(name="id",required=true) String id) {
+		SummaryHandleLog kzksSummaryHandleLog = kzksSummaryHandleLogService.getById(id);
 		if(kzksSummaryHandleLog==null) {
 			return Result.error("未找到对应数据");
 		}
@@ -157,8 +142,8 @@ public class KzksSummaryHandleLogController extends JeecgController<KzksSummaryH
     */
     //@RequiresPermissions("org.jeecg.modules:kzks_summary_handle_log:exportXls")
     @RequestMapping(value = "/exportXls")
-    public ModelAndView exportXls(HttpServletRequest request, KzksSummaryHandleLog kzksSummaryHandleLog) {
-        return super.exportXls(request, kzksSummaryHandleLog, KzksSummaryHandleLog.class, "kzks_summary_handle_log");
+    public ModelAndView exportXls(HttpServletRequest request, SummaryHandleLog kzksSummaryHandleLog) {
+        return super.exportXls(request, kzksSummaryHandleLog, SummaryHandleLog.class, "kzks_summary_handle_log");
     }
 
     /**
@@ -171,7 +156,7 @@ public class KzksSummaryHandleLogController extends JeecgController<KzksSummaryH
     //@RequiresPermissions("kzks_summary_handle_log:importExcel")
     @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
     public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
-        return super.importExcel(request, response, KzksSummaryHandleLog.class);
+        return super.importExcel(request, response, SummaryHandleLog.class);
     }
 
 }

+ 5 - 9
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/entity/KzksSummaryHandleLog.java

@@ -1,18 +1,14 @@
-package org.jeecg.modules.kzksSummaryHandleLog.entity;
+package org.jeecg.modules.logSummaryHandleLog.entity;
 
 import java.io.Serializable;
-import java.io.UnsupportedEncodingException;
-import java.util.Date;
-import java.math.BigDecimal;
+
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
 import com.baomidou.mybatisplus.annotation.TableName;
-import com.baomidou.mybatisplus.annotation.TableLogic;
 import lombok.Data;
 import com.fasterxml.jackson.annotation.JsonFormat;
 import org.springframework.format.annotation.DateTimeFormat;
 import org.jeecgframework.poi.excel.annotation.Excel;
-import org.jeecg.common.aspect.annotation.Dict;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.EqualsAndHashCode;
@@ -25,11 +21,11 @@ import lombok.experimental.Accessors;
  * @Version: V1.0
  */
 @Data
-@TableName("kzks_summary_handle_log")
+@TableName("kzks_log_summary_handle_log")
 @Accessors(chain = true)
 @EqualsAndHashCode(callSuper = false)
-@ApiModel(value="kzks_summary_handle_log对象", description="kzks_summary_handle_log")
-public class KzksSummaryHandleLog implements Serializable {
+@ApiModel(value="visible执行计算日志对象", description="visible执行计算日志")
+public class SummaryHandleLog implements Serializable {
     private static final long serialVersionUID = 1L;
 
 	/**主键*/

+ 14 - 0
module_kzks/src/main/java/org/jeecg/modules/logSummaryHandleLog/mapper/KzksSummaryHandleLogMapper.java

@@ -0,0 +1,14 @@
+package org.jeecg.modules.logSummaryHandleLog.mapper;
+
+import org.jeecg.modules.logSummaryHandleLog.entity.SummaryHandleLog;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * @Description: kzks_summary_handle_log
+ * @Author: jeecg-boot
+ * @Date:   2023-12-19
+ * @Version: V1.0
+ */
+public interface KzksSummaryHandleLogMapper extends BaseMapper<SummaryHandleLog> {
+
+}

+ 2 - 2
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/mapper/xml/KzksSummaryHandleLogMapper.xml

@@ -1,5 +1,5 @@
 <?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="org.jeecg.modules.kzksSummaryHandleLog.mapper.KzksSummaryHandleLogMapper">
+<mapper namespace="org.jeecg.modules.logSummaryHandleLog.mapper.KzksSummaryHandleLogMapper">
 
-</mapper>
+</mapper>

+ 14 - 0
module_kzks/src/main/java/org/jeecg/modules/logSummaryHandleLog/service/IKzksSummaryHandleLogService.java

@@ -0,0 +1,14 @@
+package org.jeecg.modules.logSummaryHandleLog.service;
+
+import org.jeecg.modules.logSummaryHandleLog.entity.SummaryHandleLog;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * @Description: kzks_summary_handle_log
+ * @Author: jeecg-boot
+ * @Date:   2023-12-19
+ * @Version: V1.0
+ */
+public interface IKzksSummaryHandleLogService extends IService<SummaryHandleLog> {
+
+}

+ 43 - 43
module_kzks/src/main/java/org/jeecg/modules/kzksSummaryHandleLog/service/impl/KzksSummaryHandleLogServiceImpl.java

@@ -1,4 +1,4 @@
-package org.jeecg.modules.kzksSummaryHandleLog.service.impl;
+package org.jeecg.modules.logSummaryHandleLog.service.impl;
 
 import com.baomidou.mybatisplus.core.conditions.Wrapper;
 import com.baomidou.mybatisplus.core.enums.SqlMethod;
@@ -11,9 +11,9 @@ import com.baomidou.mybatisplus.extension.kotlin.KtQueryChainWrapper;
 import com.baomidou.mybatisplus.extension.kotlin.KtUpdateChainWrapper;
 import org.apache.ibatis.session.SqlSession;
 import org.jeecg.modules.dataSourceSwitch.annotation.UseMasterDataSource;
-import org.jeecg.modules.kzksSummaryHandleLog.entity.KzksSummaryHandleLog;
-import org.jeecg.modules.kzksSummaryHandleLog.mapper.KzksSummaryHandleLogMapper;
-import org.jeecg.modules.kzksSummaryHandleLog.service.IKzksSummaryHandleLogService;
+import org.jeecg.modules.logSummaryHandleLog.entity.SummaryHandleLog;
+import org.jeecg.modules.logSummaryHandleLog.mapper.KzksSummaryHandleLogMapper;
+import org.jeecg.modules.logSummaryHandleLog.service.IKzksSummaryHandleLogService;
 import org.springframework.stereotype.Service;
 
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
@@ -34,7 +34,7 @@ import java.util.function.Function;
  */
 @Service
 @UseMasterDataSource
-public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHandleLogMapper, KzksSummaryHandleLog> implements IKzksSummaryHandleLogService {
+public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHandleLogMapper, SummaryHandleLog> implements IKzksSummaryHandleLogService {
     public KzksSummaryHandleLogServiceImpl() {
         super();
     }
@@ -45,7 +45,7 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public Class<KzksSummaryHandleLog> getEntityClass() {
+    public Class<SummaryHandleLog> getEntityClass() {
         return super.getEntityClass();
     }
 
@@ -60,7 +60,7 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    protected Class<KzksSummaryHandleLog> currentModelClass() {
+    protected Class<SummaryHandleLog> currentModelClass() {
         return super.currentModelClass();
     }
 
@@ -80,7 +80,7 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public boolean saveBatch(Collection<KzksSummaryHandleLog> entityList, int batchSize) {
+    public boolean saveBatch(Collection<SummaryHandleLog> entityList, int batchSize) {
         return super.saveBatch(entityList, batchSize);
     }
 
@@ -90,32 +90,32 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public boolean saveOrUpdate(KzksSummaryHandleLog entity) {
+    public boolean saveOrUpdate(SummaryHandleLog entity) {
         return super.saveOrUpdate(entity);
     }
 
     @Override
-    public boolean saveOrUpdateBatch(Collection<KzksSummaryHandleLog> entityList, int batchSize) {
+    public boolean saveOrUpdateBatch(Collection<SummaryHandleLog> entityList, int batchSize) {
         return super.saveOrUpdateBatch(entityList, batchSize);
     }
 
     @Override
-    public boolean updateBatchById(Collection<KzksSummaryHandleLog> entityList, int batchSize) {
+    public boolean updateBatchById(Collection<SummaryHandleLog> entityList, int batchSize) {
         return super.updateBatchById(entityList, batchSize);
     }
 
     @Override
-    public KzksSummaryHandleLog getOne(Wrapper<KzksSummaryHandleLog> queryWrapper, boolean throwEx) {
+    public SummaryHandleLog getOne(Wrapper<SummaryHandleLog> queryWrapper, boolean throwEx) {
         return super.getOne(queryWrapper, throwEx);
     }
 
     @Override
-    public Map<String, Object> getMap(Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public Map<String, Object> getMap(Wrapper<SummaryHandleLog> queryWrapper) {
         return super.getMap(queryWrapper);
     }
 
     @Override
-    public <V> V getObj(Wrapper<KzksSummaryHandleLog> queryWrapper, Function<? super Object, V> mapper) {
+    public <V> V getObj(Wrapper<SummaryHandleLog> queryWrapper, Function<? super Object, V> mapper) {
         return super.getObj(queryWrapper, mapper);
     }
 
@@ -160,22 +160,22 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public boolean save(KzksSummaryHandleLog entity) {
+    public boolean save(SummaryHandleLog entity) {
         return super.save(entity);
     }
 
     @Override
-    public boolean saveBatch(Collection<KzksSummaryHandleLog> entityList) {
+    public boolean saveBatch(Collection<SummaryHandleLog> entityList) {
         return super.saveBatch(entityList);
     }
 
     @Override
-    public boolean saveOrUpdateBatch(Collection<KzksSummaryHandleLog> entityList) {
+    public boolean saveOrUpdateBatch(Collection<SummaryHandleLog> entityList) {
         return super.saveOrUpdateBatch(entityList);
     }
 
     @Override
-    public boolean removeById(KzksSummaryHandleLog entity) {
+    public boolean removeById(SummaryHandleLog entity) {
         return super.removeById(entity);
     }
 
@@ -185,7 +185,7 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public boolean remove(Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public boolean remove(Wrapper<SummaryHandleLog> queryWrapper) {
         return super.remove(queryWrapper);
     }
 
@@ -205,42 +205,42 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public boolean updateById(KzksSummaryHandleLog entity) {
+    public boolean updateById(SummaryHandleLog entity) {
         return super.updateById(entity);
     }
 
     @Override
-    public boolean update(Wrapper<KzksSummaryHandleLog> updateWrapper) {
+    public boolean update(Wrapper<SummaryHandleLog> updateWrapper) {
         return super.update(updateWrapper);
     }
 
     @Override
-    public boolean update(KzksSummaryHandleLog entity, Wrapper<KzksSummaryHandleLog> updateWrapper) {
+    public boolean update(SummaryHandleLog entity, Wrapper<SummaryHandleLog> updateWrapper) {
         return super.update(entity, updateWrapper);
     }
 
     @Override
-    public boolean updateBatchById(Collection<KzksSummaryHandleLog> entityList) {
+    public boolean updateBatchById(Collection<SummaryHandleLog> entityList) {
         return super.updateBatchById(entityList);
     }
 
     @Override
-    public KzksSummaryHandleLog getById(Serializable id) {
+    public SummaryHandleLog getById(Serializable id) {
         return super.getById(id);
     }
 
     @Override
-    public List<KzksSummaryHandleLog> listByIds(Collection<? extends Serializable> idList) {
+    public List<SummaryHandleLog> listByIds(Collection<? extends Serializable> idList) {
         return super.listByIds(idList);
     }
 
     @Override
-    public List<KzksSummaryHandleLog> listByMap(Map<String, Object> columnMap) {
+    public List<SummaryHandleLog> listByMap(Map<String, Object> columnMap) {
         return super.listByMap(columnMap);
     }
 
     @Override
-    public KzksSummaryHandleLog getOne(Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public SummaryHandleLog getOne(Wrapper<SummaryHandleLog> queryWrapper) {
         return super.getOne(queryWrapper);
     }
 
@@ -250,32 +250,32 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public long count(Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public long count(Wrapper<SummaryHandleLog> queryWrapper) {
         return super.count(queryWrapper);
     }
 
     @Override
-    public List<KzksSummaryHandleLog> list(Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public List<SummaryHandleLog> list(Wrapper<SummaryHandleLog> queryWrapper) {
         return super.list(queryWrapper);
     }
 
     @Override
-    public List<KzksSummaryHandleLog> list() {
+    public List<SummaryHandleLog> list() {
         return super.list();
     }
 
     @Override
-    public <E extends IPage<KzksSummaryHandleLog>> E page(E page, Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public <E extends IPage<SummaryHandleLog>> E page(E page, Wrapper<SummaryHandleLog> queryWrapper) {
         return super.page(page, queryWrapper);
     }
 
     @Override
-    public <E extends IPage<KzksSummaryHandleLog>> E page(E page) {
+    public <E extends IPage<SummaryHandleLog>> E page(E page) {
         return super.page(page);
     }
 
     @Override
-    public List<Map<String, Object>> listMaps(Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public List<Map<String, Object>> listMaps(Wrapper<SummaryHandleLog> queryWrapper) {
         return super.listMaps(queryWrapper);
     }
 
@@ -295,17 +295,17 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public List<Object> listObjs(Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public List<Object> listObjs(Wrapper<SummaryHandleLog> queryWrapper) {
         return super.listObjs(queryWrapper);
     }
 
     @Override
-    public <V> List<V> listObjs(Wrapper<KzksSummaryHandleLog> queryWrapper, Function<? super Object, V> mapper) {
+    public <V> List<V> listObjs(Wrapper<SummaryHandleLog> queryWrapper, Function<? super Object, V> mapper) {
         return super.listObjs(queryWrapper, mapper);
     }
 
     @Override
-    public <E extends IPage<Map<String, Object>>> E pageMaps(E page, Wrapper<KzksSummaryHandleLog> queryWrapper) {
+    public <E extends IPage<Map<String, Object>>> E pageMaps(E page, Wrapper<SummaryHandleLog> queryWrapper) {
         return super.pageMaps(page, queryWrapper);
     }
 
@@ -315,37 +315,37 @@ public class KzksSummaryHandleLogServiceImpl extends ServiceImpl<KzksSummaryHand
     }
 
     @Override
-    public QueryChainWrapper<KzksSummaryHandleLog> query() {
+    public QueryChainWrapper<SummaryHandleLog> query() {
         return super.query();
     }
 
     @Override
-    public LambdaQueryChainWrapper<KzksSummaryHandleLog> lambdaQuery() {
+    public LambdaQueryChainWrapper<SummaryHandleLog> lambdaQuery() {
         return super.lambdaQuery();
     }
 
     @Override
-    public KtQueryChainWrapper<KzksSummaryHandleLog> ktQuery() {
+    public KtQueryChainWrapper<SummaryHandleLog> ktQuery() {
         return super.ktQuery();
     }
 
     @Override
-    public KtUpdateChainWrapper<KzksSummaryHandleLog> ktUpdate() {
+    public KtUpdateChainWrapper<SummaryHandleLog> ktUpdate() {
         return super.ktUpdate();
     }
 
     @Override
-    public UpdateChainWrapper<KzksSummaryHandleLog> update() {
+    public UpdateChainWrapper<SummaryHandleLog> update() {
         return super.update();
     }
 
     @Override
-    public LambdaUpdateChainWrapper<KzksSummaryHandleLog> lambdaUpdate() {
+    public LambdaUpdateChainWrapper<SummaryHandleLog> lambdaUpdate() {
         return super.lambdaUpdate();
     }
 
     @Override
-    public boolean saveOrUpdate(KzksSummaryHandleLog entity, Wrapper<KzksSummaryHandleLog> updateWrapper) {
+    public boolean saveOrUpdate(SummaryHandleLog entity, Wrapper<SummaryHandleLog> updateWrapper) {
         return super.saveOrUpdate(entity, updateWrapper);
     }
 }