| | |
| | | |
| | | package org.springblade.mdm.program.controller; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.Parameter; |
| | |
| | | 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.springblade.mdm.program.service.DncBackFileService; |
| | | import org.springblade.mdm.program.vo.*; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | |
| | | public class DncSendBackController { |
| | | |
| | | private final DNCSendBackService dncSendBackService; |
| | | private final DncBackFileService dncBackFileService; |
| | | /** |
| | | * 上传DNC回传文件 |
| | | * |
| | |
| | | } |
| | | return R.success(); |
| | | } |
| | | |
| | | @Operation(summary = "工控网回传记录分页查询", description = "工控网回传记录分页查询,查询回传历史") |
| | | @GetMapping("/dnc-back-page") |
| | | public R<IPage<DncBackFileVO>> page(DncBackFileQueryVO query) { |
| | | |
| | | return R.data(dncBackFileService.pageQuery(query)); |
| | | } |
| | | } |