类 TestOrganizationController
java.lang.Object
com.elitesland.ystdms.sys.controller.TestOrganizationController
@RestController
@RequestMapping("/api/v1/test/organization")
public class TestOrganizationController
extends Object
测试组织控制器
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明测试批量新增(会记录每一条日志)测试批量新增(不记录日志)测试批量更新(会记录每一条日志)测试批量更新-使用 id in 方式(不会记录日志)创建测试组织查询操作日志查询所有测试组织测试混合操作(只记录设置了操作类型的)submitOrganization(UUID orgId) 提交组织updateOrganization(UUID orgId) 修改组织类型(测试 UDC 转换)
-
构造器详细资料
-
TestOrganizationController
public TestOrganizationController()
-
-
方法详细资料
-
createOrganization
创建测试组织 -
updateOrganization
@PostMapping("/update/{orgId}") public ApiResult<String> updateOrganization(@PathVariable("orgId") UUID orgId) 修改组织类型(测试 UDC 转换) -
submitOrganization
@PostMapping("/submit/{orgId}") public ApiResult<String> submitOrganization(@PathVariable("orgId") UUID orgId) 提交组织 -
listOrganizations
查询所有测试组织 -
getLogs
@GetMapping("/logs/{businessId}") public ApiResult<List<SysOperationLog>> getLogs(@PathVariable("businessId") String businessId) 查询操作日志 -
batchInsert
测试批量新增(会记录每一条日志) -
batchUpdate
测试批量更新(会记录每一条日志) -
batchUpdateByIds
测试批量更新-使用 id in 方式(不会记录日志) -
batchInsertNoLog
测试批量新增(不记录日志) -
mixedOperations
测试混合操作(只记录设置了操作类型的)
-