|
@@ -1,177 +1,63 @@
|
|
|
-package org.jeecg.modules.Itdmgongdanshuju.controller;
|
|
|
+package org.jeecg.modules.itdmgongdanshuju.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.Itdmgongdanshuju.entity.ItdmGongdanShuju;
|
|
|
-import org.jeecg.modules.Itdmgongdanshuju.service.IItdmGongdanShujuService;
|
|
|
-
|
|
|
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
+
|
|
|
+import org.jeecg.modules.weituochaxun.vo.ItdmWeituoAllVO;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
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.jeecg.modules.itdmgongdanshuju.dto.ItdmGongdanDto;
|
|
|
+import org.jeecg.modules.itdmgongdanshuju.entity.ItdmGongdanShuju;
|
|
|
+import org.jeecg.modules.itdmgongdanshuju.service.ItdmGongdanShujuService;
|
|
|
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: 工单数据
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 委托信息
|
|
|
* @Author: jeecg-boot
|
|
|
- * @Date: 2023-05-21
|
|
|
+ * @Date: 2023-05-17
|
|
|
* @Version: V1.0
|
|
|
*/
|
|
|
@Api(tags="工单数据")
|
|
|
@RestController
|
|
|
-@RequestMapping("/Itdmgongdanshuju/itdmGongdanShuju")
|
|
|
+@RequestMapping("/itdmgomgongdanshuju/ItdmGongdanshuju")
|
|
|
@Slf4j
|
|
|
-public class ItdmGongdanShujuController extends JeecgController<ItdmGongdanShuju, IItdmGongdanShujuService> {
|
|
|
+public class ItdmGongdanshujuController {
|
|
|
+
|
|
|
@Autowired
|
|
|
- private IItdmGongdanShujuService itdmGongdanShujuService;
|
|
|
-
|
|
|
- /**
|
|
|
- * 分页列表查询
|
|
|
- *
|
|
|
- * @param itdmGongdanShuju
|
|
|
- * @param pageNo
|
|
|
- * @param pageSize
|
|
|
- * @param req
|
|
|
- * @return
|
|
|
- */
|
|
|
- //@AutoLog(value = "工单数据-分页列表查询")
|
|
|
- @ApiOperation(value="工单数据-分页列表查询", notes="工单数据-分页列表查询")
|
|
|
- @GetMapping(value = "/list")
|
|
|
- public Result<IPage<ItdmGongdanShuju>> queryPageList(ItdmGongdanShuju itdmGongdanShuju,
|
|
|
- @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
- @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
- HttpServletRequest req) {
|
|
|
- QueryWrapper<ItdmGongdanShuju> queryWrapper = QueryGenerator.initQueryWrapper(itdmGongdanShuju, req.getParameterMap());
|
|
|
+ private ItdmGongdanShujuService itdmGongdanShujuService;
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="工单数据-列表", notes="工单数据-列表")
|
|
|
+ @GetMapping("/list")
|
|
|
+ public IPage<ItdmGongdanShuju> list(@RequestParam(name="pageNo", defaultValue="1") Integer pageNo,
|
|
|
+ @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,
|
|
|
+ HttpServletRequest req){
|
|
|
+
|
|
|
Page<ItdmGongdanShuju> page = new Page<ItdmGongdanShuju>(pageNo, pageSize);
|
|
|
- IPage<ItdmGongdanShuju> pageList = itdmGongdanShujuService.page(page, queryWrapper);
|
|
|
- return Result.OK(pageList);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 添加
|
|
|
- *
|
|
|
- * @param itdmGongdanShuju
|
|
|
- * @return
|
|
|
- */
|
|
|
- @AutoLog(value = "工单数据-添加")
|
|
|
- @ApiOperation(value="工单数据-添加", notes="工单数据-添加")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_gongdan_shuju:add")
|
|
|
- @PostMapping(value = "/add")
|
|
|
- public Result<String> add(@RequestBody ItdmGongdanShuju itdmGongdanShuju) {
|
|
|
- itdmGongdanShujuService.save(itdmGongdanShuju);
|
|
|
- return Result.OK("添加成功!");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 编辑
|
|
|
- *
|
|
|
- * @param itdmGongdanShuju
|
|
|
- * @return
|
|
|
- */
|
|
|
- @AutoLog(value = "工单数据-编辑")
|
|
|
- @ApiOperation(value="工单数据-编辑", notes="工单数据-编辑")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_gongdan_shuju:edit")
|
|
|
- @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST})
|
|
|
- public Result<String> edit(@RequestBody ItdmGongdanShuju itdmGongdanShuju) {
|
|
|
- itdmGongdanShujuService.updateById(itdmGongdanShuju);
|
|
|
- return Result.OK("编辑成功!");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * 通过id删除
|
|
|
- *
|
|
|
- * @param id
|
|
|
- * @return
|
|
|
- */
|
|
|
- @AutoLog(value = "工单数据-通过id删除")
|
|
|
- @ApiOperation(value="工单数据-通过id删除", notes="工单数据-通过id删除")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_gongdan_shuju:delete")
|
|
|
- @DeleteMapping(value = "/delete")
|
|
|
- public Result<String> delete(@RequestParam(name="id",required=true) String id) {
|
|
|
- itdmGongdanShujuService.removeById(id);
|
|
|
- return Result.OK("删除成功!");
|
|
|
+ IPage<ItdmGongdanShuju> list = itdmGongdanShujuService.page(page);
|
|
|
+ return list;
|
|
|
}
|
|
|
-
|
|
|
- /**
|
|
|
- * 批量删除
|
|
|
- *
|
|
|
- * @param ids
|
|
|
- * @return
|
|
|
- */
|
|
|
- @AutoLog(value = "工单数据-批量删除")
|
|
|
- @ApiOperation(value="工单数据-批量删除", notes="工单数据-批量删除")
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_gongdan_shuju:deleteBatch")
|
|
|
- @DeleteMapping(value = "/deleteBatch")
|
|
|
- public Result<String> deleteBatch(@RequestParam(name="ids",required=true) String ids) {
|
|
|
- this.itdmGongdanShujuService.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<ItdmGongdanShuju> queryById(@RequestParam(name="id",required=true) String id) {
|
|
|
- ItdmGongdanShuju itdmGongdanShuju = itdmGongdanShujuService.getById(id);
|
|
|
- if(itdmGongdanShuju==null) {
|
|
|
- return Result.error("未找到对应数据");
|
|
|
- }
|
|
|
- return Result.OK(itdmGongdanShuju);
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value = "工单数据-生成", notes = "工单数据-生成")
|
|
|
+ @GetMapping("/create")
|
|
|
+ public Boolean create(@RequestBody ItdmGongdanDto itdmGongdanDto, HttpServletRequest req) {
|
|
|
+ Boolean b = itdmGongdanShujuService.generate(itdmGongdanDto);
|
|
|
+ return b;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 导出excel
|
|
|
- *
|
|
|
- * @param request
|
|
|
- * @param itdmGongdanShuju
|
|
|
- */
|
|
|
- //@RequiresPermissions("org.jeecg.modules:itdm_gongdan_shuju:exportXls")
|
|
|
- @RequestMapping(value = "/exportXls")
|
|
|
- public ModelAndView exportXls(HttpServletRequest request, ItdmGongdanShuju itdmGongdanShuju) {
|
|
|
- return super.exportXls(request, itdmGongdanShuju, ItdmGongdanShuju.class, "工单数据");
|
|
|
- }
|
|
|
|
|
|
- /**
|
|
|
- * 通过excel导入数据
|
|
|
- *
|
|
|
- * @param request
|
|
|
- * @param response
|
|
|
- * @return
|
|
|
- */
|
|
|
- //@RequiresPermissions("itdm_gongdan_shuju:importExcel")
|
|
|
- @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
|
- public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
|
- return super.importExcel(request, response, ItdmGongdanShuju.class);
|
|
|
- }
|
|
|
+ @ApiOperation(value = "工单数据-修改", notes = "工单数据-修改")
|
|
|
+ @GetMapping("/update")
|
|
|
+ public ItdmGongdanShuju update(@RequestBody ItdmGongdanShuju itdmGongdanShuju, HttpServletRequest req) {
|
|
|
+ itdmGongdanShujuService.updateById(itdmGongdanShuju);
|
|
|
+ return itdmGongdanShuju;
|
|
|
+ }
|
|
|
|
|
|
}
|