wangzhe пре 2 година
родитељ
комит
fc169c4b19

+ 18 - 17
mybusiness/src/main/java/com/sooka/system/controller/TUInterfaceinfoController.java

@@ -31,7 +31,7 @@ import javax.annotation.Resource;
 
 
 /**
- * 【请填写功能名称】Controller
+ * 【接口应用审批管理、数据应用审批管理】Controller
  *
  * @author lei
  * @date 2021-07-01
@@ -58,7 +58,7 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 查询【请填写功能名称】列表
+     * 查询【接口应用审批管理】列表
      */
     @RequiresPermissions("system:interfaceinfo:list")
     @RequestMapping(value = {"/list/{shareType}","/list"})
@@ -71,7 +71,7 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 根据部门ID获取接口应用
+     * 【接口应用审批管理】根据部门ID获取接口应用
      */
     @GetMapping("/selectInterfaceByDeptId/{deptId}/{shareType1}/{shareType3}")
     public String selectInterfaceByDeptId(@PathVariable("deptId") String deptId,
@@ -92,7 +92,7 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 根据部门ID获取数据应用
+     * 【数据应用审批管理】根据部门ID获取数据应用
      */
     @GetMapping("/selectDataByDeptId/{deptId}")
     public String selectDataByDeptId(@PathVariable("deptId") Long deptId, ModelMap mmap)
@@ -110,7 +110,7 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 根据部门ID获取接口
+     * 【接口应用审批管理】根据部门ID获取接口
      */
     @RequestMapping("/selectInterfaceByIds")
     @ResponseBody
@@ -122,7 +122,7 @@ public class TUInterfaceinfoController extends BaseController {
 
 
     /**
-     * 导出【请填写功能名称】列表
+     * 导出【接口应用审批管理】列表
      */
     @RequiresPermissions("system:interfaceinfo:export")
     @Log(title = "省共享接口", businessType = BusinessType.EXPORT)
@@ -135,7 +135,7 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 新增【请填写功能名称
+     * 新增【接口应用审批管理
      */
     @GetMapping("/add/{shareType}")
     public String add(@PathVariable("shareType") String shareType, ModelMap mmap) {
@@ -144,10 +144,10 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 新增保存【请填写功能名称
+     * 新增保存【接口应用审批管理
      */
     @RequiresPermissions("system:interfaceinfo:add")
-    @Log(title = "【请填写功能名称】", businessType = BusinessType.INSERT)
+    @Log(title = "【接口应用审批管理】", businessType = BusinessType.INSERT)
     @PostMapping("/add")
     @ResponseBody
     public AjaxResult addSave(TUInterfaceinfo tUInterfaceinfo) {
@@ -155,7 +155,7 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 修改【请填写功能名称
+     * 修改【接口应用审批管理
      */
     @GetMapping("/edit/{id}")
     public String edit(@PathVariable("id") String id, ModelMap mmap) {
@@ -168,10 +168,10 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 修改保存【请填写功能名称
+     * 修改保存【接口应用审批管理
      */
     @RequiresPermissions("system:interfaceinfo:edit")
-    @Log(title = "【请填写功能名称】", businessType = BusinessType.UPDATE)
+    @Log(title = "【接口应用审批管理】", businessType = BusinessType.UPDATE)
     @PostMapping("/edit")
     @ResponseBody
     public AjaxResult editSave(TUInterfaceinfo tUInterfaceinfo) {
@@ -179,22 +179,23 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 删除【请填写功能名称
+     * 删除【接口应用审批管理
      */
     @RequiresPermissions("system:interfaceinfo:remove")
-    @Log(title = "【请填写功能名称】", businessType = BusinessType.DELETE)
+    @Log(title = "【接口应用审批管理】", businessType = BusinessType.DELETE)
     @PostMapping("/remove")
     @ResponseBody
     public AjaxResult remove(String ids) {
         return toAjax(tUInterfaceinfoService.deleteTUInterfaceinfoByIds(ids));
     }
 
+    //【接口应用审批管理】
     @GetMapping("/settingParams/{id}")
     public String settingParams(@PathVariable("id") String id, ModelMap mmap) {
         mmap.put("interfaceinfo_id", id);
         return "system/paramsbusiness/paramsbusiness";
     }
-
+    //【接口应用审批管理】
     @GetMapping("/execInterface/{id}")
     public String execInterface(@PathVariable("id") String id, ModelMap mmap) {
         mmap.put("interfaceinfo_id", id);
@@ -214,7 +215,7 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 状态修改
+     * 【接口应用审批管理】状态修改
      */
     @Log(title = "接口管理", businessType = BusinessType.UPDATE)
     @RequiresPermissions("system:interfaceinfo:edit")
@@ -226,7 +227,7 @@ public class TUInterfaceinfoController extends BaseController {
     }
 
     /**
-     * 查询接口日志台账
+     * 【接口应用审批管理】查询接口日志台账
      */
     @PostMapping("/interfaceLogList")
     @ResponseBody

+ 14 - 14
mybusiness/src/main/java/com/sooka/system/mapper/TUInterfaceinfoMapper.java

@@ -7,7 +7,7 @@ import com.sooka.system.domain.TUInterfaceinfo;
 import org.apache.ibatis.annotations.Param;
 
 /**
- * 【请填写功能名称】Mapper接口
+ * 【接口应用审批管理】Mapper接口
  *
  * @author lei
  * @date 2021-07-01
@@ -15,18 +15,18 @@ import org.apache.ibatis.annotations.Param;
 public interface TUInterfaceinfoMapper
 {
     /**
-     * 查询【请填写功能名称
+     * 查询【接口应用审批管理
      *
-     * @param id 【请填写功能名称】ID
-     * @return 【请填写功能名称
+     * @param id 【接口应用审批管理】ID
+     * @return 【接口应用审批管理
      */
     public TUInterfaceinfo selectTUInterfaceinfoById(String id);
 
     /**
-     * 查询【请填写功能名称】列表
+     * 查询【接口应用审批管理】列表
      *
-     * @param tUInterfaceinfo 【请填写功能名称
-     * @return 【请填写功能名称】集合
+     * @param tUInterfaceinfo 【接口应用审批管理
+     * @return 【接口应用审批管理】集合
      */
     public List<TUInterfaceinfo> selectTUInterfaceinfoList(TUInterfaceinfo tUInterfaceinfo);
 
@@ -44,17 +44,17 @@ public interface TUInterfaceinfoMapper
     public List<TUInterfaceinfo> selectTUInterfaceinfoListByIds(String[] ids);
 
     /**
-     * 新增【请填写功能名称
+     * 新增【接口应用审批管理
      *
-     * @param tUInterfaceinfo 【请填写功能名称
+     * @param tUInterfaceinfo 【接口应用审批管理
      * @return 结果
      */
     public int insertTUInterfaceinfo(TUInterfaceinfo tUInterfaceinfo);
 
     /**
-     * 修改【请填写功能名称
+     * 修改【接口应用审批管理
      *
-     * @param tUInterfaceinfo 【请填写功能名称
+     * @param tUInterfaceinfo 【接口应用审批管理
      * @return 结果
      */
     public int updateTUInterfaceinfo(TUInterfaceinfo tUInterfaceinfo);
@@ -76,15 +76,15 @@ public interface TUInterfaceinfoMapper
     public int updateDataNum(TUInterfaceinfo tUInterfaceinfo);
 
     /**
-     * 删除【请填写功能名称
+     * 删除【接口应用审批管理
      *
-     * @param id 【请填写功能名称】ID
+     * @param id 【接口应用审批管理】ID
      * @return 结果
      */
     public int deleteTUInterfaceinfoById(String id);
 
     /**
-     * 批量删除【请填写功能名称
+     * 批量删除【接口应用审批管理
      *
      * @param ids 需要删除的数据ID
      * @return 结果

+ 14 - 14
mybusiness/src/main/java/com/sooka/system/service/ITUInterfaceinfoService.java

@@ -5,7 +5,7 @@ import com.sooka.system.domain.TUInterfaceinfo;
 import org.apache.ibatis.annotations.Param;
 
 /**
- * 【请填写功能名称】Service接口
+ * 【接口应用审批管理】Service接口
  *
  * @author lei
  * @date 2021-07-01
@@ -13,18 +13,18 @@ import org.apache.ibatis.annotations.Param;
 public interface ITUInterfaceinfoService
 {
     /**
-     * 查询【请填写功能名称
+     * 查询【接口应用审批管理
      *
-     * @param id 【请填写功能名称】ID
-     * @return 【请填写功能名称
+     * @param id 【接口应用审批管理】ID
+     * @return 【接口应用审批管理
      */
     public TUInterfaceinfo selectTUInterfaceinfoById(String id);
 
     /**
-     * 查询【请填写功能名称】列表
+     * 查询【接口应用审批管理】列表
      *
-     * @param tUInterfaceinfo 【请填写功能名称
-     * @return 【请填写功能名称】集合
+     * @param tUInterfaceinfo 【接口应用审批管理
+     * @return 【接口应用审批管理】集合
      */
     public List<TUInterfaceinfo> selectTUInterfaceinfoList(TUInterfaceinfo tUInterfaceinfo);
 
@@ -34,23 +34,23 @@ public interface ITUInterfaceinfoService
     public List<TUInterfaceinfo> selectTUInterfaceinfoList(String[] ids);
 
     /**
-     * 新增【请填写功能名称
+     * 新增【接口应用审批管理
      *
-     * @param tUInterfaceinfo 【请填写功能名称
+     * @param tUInterfaceinfo 【接口应用审批管理
      * @return 结果
      */
     public int insertTUInterfaceinfo(TUInterfaceinfo tUInterfaceinfo);
 
     /**
-     * 修改【请填写功能名称
+     * 修改【接口应用审批管理
      *
-     * @param tUInterfaceinfo 【请填写功能名称
+     * @param tUInterfaceinfo 【接口应用审批管理
      * @return 结果
      */
     public int updateTUInterfaceinfo(TUInterfaceinfo tUInterfaceinfo);
 
     /**
-     * 批量删除【请填写功能名称
+     * 批量删除【接口应用审批管理
      *
      * @param ids 需要删除的数据ID
      * @return 结果
@@ -58,9 +58,9 @@ public interface ITUInterfaceinfoService
     public int deleteTUInterfaceinfoByIds(String ids);
 
     /**
-     * 删除【请填写功能名称】信息
+     * 删除【接口应用审批管理】信息
      *
-     * @param id 【请填写功能名称】ID
+     * @param id 【接口应用审批管理】ID
      * @return 结果
      */
     public int deleteTUInterfaceinfoById(String id);

+ 14 - 14
mybusiness/src/main/java/com/sooka/system/service/impl/TUInterfaceinfoServiceImpl.java

@@ -23,7 +23,7 @@ import javax.annotation.Resource;
 
 
 /**
- * 【请填写功能名称】Service业务层处理
+ * 【接口应用审批管理】Service业务层处理
  *
  * @author lei
  * @date 2021-07-01
@@ -37,10 +37,10 @@ public class TUInterfaceinfoServiceImpl implements ITUInterfaceinfoService
     private IntRecordMapper intRecordMapper;
 
     /**
-     * 查询【请填写功能名称
+     * 查询【接口应用审批管理
      *
-     * @param id 【请填写功能名称】ID
-     * @return 【请填写功能名称
+     * @param id 【接口应用审批管理】ID
+     * @return 【接口应用审批管理
      */
     @Override
     public TUInterfaceinfo selectTUInterfaceinfoById(String id)
@@ -79,10 +79,10 @@ public class TUInterfaceinfoServiceImpl implements ITUInterfaceinfoService
     }
 
     /**
-     * 查询【请填写功能名称】列表
+     * 查询【接口应用审批管理】列表
      *
-     * @param tUInterfaceinfo 【请填写功能名称
-     * @return 【请填写功能名称
+     * @param tUInterfaceinfo 【接口应用审批管理
+     * @return 【接口应用审批管理
      */
     @Override
     public List<TUInterfaceinfo> selectTUInterfaceinfoList(TUInterfaceinfo tUInterfaceinfo)
@@ -106,9 +106,9 @@ public class TUInterfaceinfoServiceImpl implements ITUInterfaceinfoService
     }
 
     /**
-     * 新增【请填写功能名称
+     * 新增【接口应用审批管理
      *
-     * @param tUInterfaceinfo 【请填写功能名称
+     * @param tUInterfaceinfo 【接口应用审批管理
      * @return 结果
      */
     @Override
@@ -146,9 +146,9 @@ public class TUInterfaceinfoServiceImpl implements ITUInterfaceinfoService
     }
 
     /**
-     * 修改【请填写功能名称
+     * 修改【接口应用审批管理
      *
-     * @param tUInterfaceinfo 【请填写功能名称
+     * @param tUInterfaceinfo 【接口应用审批管理
      * @return 结果
      */
     @Override
@@ -159,7 +159,7 @@ public class TUInterfaceinfoServiceImpl implements ITUInterfaceinfoService
     }
 
     /**
-     * 删除【请填写功能名称】对象
+     * 删除【接口应用审批管理】对象
      *
      * @param ids 需要删除的数据ID
      * @return 结果
@@ -171,9 +171,9 @@ public class TUInterfaceinfoServiceImpl implements ITUInterfaceinfoService
     }
 
     /**
-     * 删除【请填写功能名称】信息
+     * 删除【接口应用审批管理】信息
      *
-     * @param id 【请填写功能名称】ID
+     * @param id 【接口应用审批管理】ID
      * @return 结果
      */
     @Override