/** * BladeX Commercial License Agreement * Copyright (c) 2018-2099, https://bladex.cn. All rights reserved. *
* Use of this software is governed by the Commercial License Agreement * obtained after purchasing a license from BladeX. *
* 1. This software is for development use only under a valid license * from BladeX. *
* 2. Redistribution of this software's source code to any third party * without a commercial license is strictly prohibited. *
* 3. Licensees may copyright their own code but cannot use segments * from this software for such purposes. Copyright of this software * remains with BladeX. *
* Using this software signifies agreement to this License, and the software * must not be used for illegal purposes. *
* THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY. The author is * not liable for any claims arising from secondary or illegal development. *
* Author: Chill Zhuang (bladejava@qq.com)
*/
package org.springblade.mdm.program.controller;
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.AllArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springblade.core.tenant.annotation.NonDS;
import org.springblade.core.tool.api.R;
import org.springblade.mdm.program.service.DncSendBackService;
import org.springblade.mdm.program.vo.DncSendBackData;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import java.util.List;
/**
* 流程管理接口
*
* @author Chill
*/
@NonDS
@RestController
@RequestMapping("/program")
@AllArgsConstructor
@Tag(name = "DNC回传程序接口", description = "DNC回传程序接口")
@Slf4j
public class DncSendBackController {
private final DncSendBackService dncSendBackService;
/**
* dnc回传文件导入
*
* @param file 流程文件
*/
/*
@PostMapping("dnc-sendback-upload")
@ApiOperationSupport(order = 4)
@Operation(summary = "dnc回传文件导入", description = "dnc回传文件导入")
public R dncSendBackUpload(@RequestParam MultipartFile file) {
boolean temp = Objects.requireNonNull(file.getOriginalFilename()).endsWith("pkg");
temp = true;//临时放行
return R.data(Kv.create().set("name", file.getOriginalFilename()).set("success", temp));
}
*/
/**
* 上传DNC回传文件
*
* @param files 流程文件
* @param category 类型
*/
@PostMapping("dnc-sendback-upload")
@ApiOperationSupport(order = 1)
@Operation(summary = "上传DNC回传文件", description = "传入文件")
public R> dncSendBackUpload(@RequestParam MultipartFile file,
@RequestParam String category,
@RequestParam(required = false, defaultValue = "") String tenantIds) {
return R.data(dncSendBackService.dncSendBackUpload(file));
}
@PostMapping("dnc-sendback-accept")
@ApiOperationSupport(order = 2)
@Operation(summary = "DNC回传数据入库")
public R