Package net.risesoft.controller
Class IpDeptMappingController
- java.lang.Object
-
- net.risesoft.controller.IpDeptMappingController
-
@RestController @RequestMapping("/admin/ipDeptMapping") public class IpDeptMappingController extends Object部门网段管理- Author:
- mengjuhua, guoweijun, shidaobang
-
-
Constructor Summary
Constructors Constructor Description IpDeptMappingController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Page<net.risesoft.y9public.entity.Y9logIpDeptMapping>pageSearchList(net.risesoft.pojo.Y9PageQuery pageQuery, String clientIpSection, String deptName)查询部门网段分页列表net.risesoft.pojo.Y9Result<String>remove(String[] ipDeptMappingIds)批量移除部门网段信息net.risesoft.pojo.Y9Result<String>saveOrder(String[] idAndTabIndexs)部门网段排序net.risesoft.pojo.Y9Result<net.risesoft.y9public.entity.Y9logIpDeptMapping>saveOrUpdate(net.risesoft.y9public.entity.Y9logIpDeptMapping ipDeptMapping)保存部门网段信息
-
-
-
Method Detail
-
pageSearchList
@RiseLog(moduleName="\u65e5\u5fd7\u7cfb\u7edf", operationName="\u67e5\u8be2\u90e8\u95e8\u7f51\u6bb5\u5206\u9875\u5217\u8868", logLevel=RSLOG) @GetMapping("/pageSearchList") public net.risesoft.pojo.Y9Page<net.risesoft.y9public.entity.Y9logIpDeptMapping> pageSearchList(net.risesoft.pojo.Y9PageQuery pageQuery, String clientIpSection, String deptName)
查询部门网段分页列表- Parameters:
pageQuery- 分页详情clientIpSection- IP的ABC段deptName- 部门名称- Returns:
Y9Page<Y9logIpDeptMapping>
-
remove
@RiseLog(moduleName="\u65e5\u5fd7\u7cfb\u7edf", operationType=DELETE, operationName="\u79fb\u9664\u90e8\u95e8\u7f51\u6bb5\u4fe1\u606f", logLevel=RSLOG) @PostMapping("/remove") public net.risesoft.pojo.Y9Result<String> remove(String[] ipDeptMappingIds)
批量移除部门网段信息- Parameters:
ipDeptMappingIds- 部门网段id数组- Returns:
Y9Result<String>
-
saveOrder
@RiseLog(moduleName="\u65e5\u5fd7\u7cfb\u7edf", operationType=MODIFY, operationName="\u90e8\u95e8\u7f51\u6bb5\u6392\u5e8f", logLevel=RSLOG) @PostMapping("/saveOrder") public net.risesoft.pojo.Y9Result<String> saveOrder(String[] idAndTabIndexs)
部门网段排序- Parameters:
idAndTabIndexs- 部门网段id数组- Returns:
Y9Result<String>
-
saveOrUpdate
@RiseLog(moduleName="\u65e5\u5fd7\u7cfb\u7edf", operationType=ADD, operationName="\u4fdd\u5b58\u90e8\u95e8\u7f51\u6bb5\u4fe1\u606f", logLevel=RSLOG) @PostMapping("/saveOrUpdate") public net.risesoft.pojo.Y9Result<net.risesoft.y9public.entity.Y9logIpDeptMapping> saveOrUpdate(net.risesoft.y9public.entity.Y9logIpDeptMapping ipDeptMapping)
保存部门网段信息- Parameters:
ipDeptMapping- 部门网段信息- Returns:
Y9Result<Y9logIpDeptMapping>
-
-