Browse Source

system完善

yq 3 years ago
parent
commit
93ecdfde7e

+ 15 - 0
system-controller/src/main/java/com/bizmatics/system/controller/web/SysAsyncController.java

@@ -4,6 +4,8 @@ import com.bizmatics.common.core.bean.ApiResult;
 import com.bizmatics.common.core.bean.CommonPage;
 import com.bizmatics.model.vo.SysAsyncTaskVo;
 import com.bizmatics.service.ISysAsyncTaskService;
+import com.bizmatics.service.dto.SysAsyncTaskDTO;
+import com.bizmatics.service.enums.AsyncResultType;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.RequestMapping;
@@ -29,4 +31,17 @@ public class SysAsyncController {
         return ApiResult.success(iSysAsyncTaskService.getList(asyncTaskId, startTime, endTime, funcType, user, current, size));
     }
 
+
+    public Long getId(String userId, String userName, String funcType) {
+        return iSysAsyncTaskService.getId(userId, userName, funcType);
+    }
+
+    public void sendResult(Long id, Boolean isSuccess, String result, AsyncResultType resultType) {
+        iSysAsyncTaskService.sendResult(id, isSuccess, result, resultType);
+    }
+
+    public void sendResult(SysAsyncTaskDTO sysAsyncTask) {
+        iSysAsyncTaskService.sendResult(sysAsyncTask);
+    }
+
 }

+ 2 - 0
system-persistence/src/main/java/com/bizmatics/persistence/mapper/SysDictDataMapper.java

@@ -3,12 +3,14 @@ package com.bizmatics.persistence.mapper;
 
 import com.bizmatics.model.SysDictData;
 import org.apache.ibatis.annotations.Param;
+import org.springframework.stereotype.Repository;
 
 import java.util.List;
 
 /**
  * 字典表 数据层
  */
+@Repository
 public interface SysDictDataMapper {
     /**
      * 根据条件分页查询字典数据

+ 2 - 0
system-persistence/src/main/java/com/bizmatics/persistence/mapper/SysDictTypeMapper.java

@@ -2,12 +2,14 @@ package com.bizmatics.persistence.mapper;
 
 
 import com.bizmatics.model.SysDictType;
+import org.springframework.stereotype.Repository;
 
 import java.util.List;
 
 /**
  * 字典表 数据层
  */
+@Repository
 public interface SysDictTypeMapper {
     /**
      * 根据条件分页查询字典类型

+ 3 - 1
system-service/src/main/java/com/bizmatics/service/enums/AsyncResultType.java

@@ -6,5 +6,7 @@ package com.bizmatics.service.enums;
  */
 public enum AsyncResultType {
 
-    FILE;
+    FILE,
+
+    TEXT;
 }

+ 1 - 0
system-service/src/main/java/com/bizmatics/service/impl/SysAsyncTaskServiceImpl.java

@@ -20,6 +20,7 @@ import com.bizmatics.service.dto.SysAsyncTaskDTO;
 import com.bizmatics.service.enums.AsyncResultType;
 import com.bizmatics.service.expcetion.AsyncErrorCode;
 import lombok.AllArgsConstructor;
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 
 import java.util.*;

+ 4 - 3
system-service/src/main/java/com/bizmatics/service/impl/SysConfigServiceImpl.java

@@ -38,6 +38,7 @@ public class SysConfigServiceImpl implements ISysConfigService {
 //        }
 //    }
 
+
     /**
      * 查询参数配置信息
      *
@@ -47,7 +48,7 @@ public class SysConfigServiceImpl implements ISysConfigService {
     @Override
     public SysConfig selectConfigById(Long configId) {
         SysConfig config = new SysConfig();
-        config.setConfigId(configId);
+        config.setId(configId);
         return configMapper.selectConfig(config);
     }
 
@@ -147,9 +148,9 @@ public class SysConfigServiceImpl implements ISysConfigService {
      */
     @Override
     public String checkConfigKeyUnique(SysConfig config) {
-        long configId = Objects.isNull(config.getConfigId()) ? -1L : config.getConfigId();
+        long configId = Objects.isNull(config.getId()) ? -1L : config.getId();
         SysConfig info = configMapper.checkConfigKeyUnique(config.getConfigKey());
-        if (Objects.nonNull(info) && info.getConfigId() != configId) {
+        if (Objects.nonNull(info) && info.getId() != configId) {
             return SystemConst.NOT_UNIQUE;
         }
         return SystemConst.UNIQUE;

+ 3 - 3
system-service/src/main/java/com/bizmatics/service/impl/SysDictTypeServiceImpl.java

@@ -157,7 +157,7 @@ public class SysDictTypeServiceImpl implements ISysDictTypeService {
     @Override
     @Transactional
     public int updateDictType(SysDictType dictType) {
-        SysDictType oldDict = dictTypeMapper.selectDictTypeById(dictType.getDictId());
+        SysDictType oldDict = dictTypeMapper.selectDictTypeById(dictType.getId());
         dictDataMapper.updateDictDataType(oldDict.getDictType(), dictType.getDictType());
         int row = dictTypeMapper.updateDictType(dictType);
         if (row > 0) {
@@ -174,9 +174,9 @@ public class SysDictTypeServiceImpl implements ISysDictTypeService {
      */
     @Override
     public String checkDictTypeUnique(SysDictType dict) {
-        Long dictId = Objects.isNull(dict.getDictId()) ? -1L : dict.getDictId();
+        Long dictId = Objects.isNull(dict.getId()) ? -1L : dict.getId();
         SysDictType dictType = dictTypeMapper.checkDictTypeUnique(dict.getDictType());
-        if (Objects.nonNull(dictType) && dictType.getDictId().longValue() != dictId.longValue()) {
+        if (Objects.nonNull(dictType) && dictType.getId().longValue() != dictId.longValue()) {
             return SystemConst.NOT_UNIQUE;
         }
         return SystemConst.UNIQUE;