|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @GetMapping("getDto") | 
|---|
|  |  |  | @ApiOperation("信息") | 
|---|
|  |  |  | public Result<SoftwareTestOrderDto> getDto(Long orderId, Long projectId) { | 
|---|
|  |  |  | SoftwareTestOrderDto data = softwareTestOrderService.getDto(orderId, projectId); | 
|---|
|  |  |  | public Result<SoftwareTestOrderDto> getDto(Long projectId,Long orderId) { | 
|---|
|  |  |  | SoftwareTestOrderDto data = softwareTestOrderService.getDto(projectId, orderId); | 
|---|
|  |  |  | return Result.ok(data); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | return Result.ok(); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @DeleteMapping | 
|---|
|  |  |  | @DeleteMapping("deleteOrder") | 
|---|
|  |  |  | @ApiOperation("删除") | 
|---|
|  |  |  | @LogOperation("删除") | 
|---|
|  |  |  | public Result delete(@RequestBody Long[] ids) { | 
|---|