|
@@ -3,15 +3,19 @@ package com.steerinfo.ems.tprocessinfor.controller;
|
|
|
import com.steerinfo.auth.utils.JwtUtil;
|
|
|
import com.steerinfo.ems.Utils.TreeUtils;
|
|
|
import com.steerinfo.ems.tprocessinfor.mapper.TProcessinforMapper;
|
|
|
-import com.steerinfo.ems.trmworkproc.controller.TRmWorkprocController;
|
|
|
+import com.steerinfo.ems.trmworkproc.mapper.TRmWorkprocMapper;
|
|
|
+import com.steerinfo.ems.trmworkproc.model.TRmWorkproc;
|
|
|
import com.steerinfo.framework.controller.BaseRESTfulController;
|
|
|
import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
import com.steerinfo.framework.service.pagehelper.PageList;
|
|
|
+import com.steerinfo.framework.utils.collection.ListUtils;
|
|
|
import com.steerinfo.ems.tprocessinfor.model.TProcessinfor;
|
|
|
import com.steerinfo.ems.tprocessinfor.service.ITProcessinforService;
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
+import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
@@ -19,8 +23,9 @@ import java.util.Arrays;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.ArrayList;
|
|
|
-import org.slf4j.LoggerFactory;
|
|
|
-import org.slf4j.Logger;
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
+import static com.sun.xml.internal.ws.spi.db.BindingContextFactory.LOGGER;
|
|
|
|
|
|
/**
|
|
|
* TProcessinfor RESTful接口:
|
|
@@ -38,7 +43,7 @@ import org.slf4j.Logger;
|
|
|
@RestController
|
|
|
@RequestMapping("/${api.version}/tprocessinfors")
|
|
|
public class TProcessinforController extends BaseRESTfulController {
|
|
|
- private static final Logger LOGGER = LoggerFactory.getLogger(TRmWorkprocController.class);
|
|
|
+
|
|
|
@Autowired
|
|
|
ITProcessinforService tProcessinforService;
|
|
|
|