新增单个配件申请表查看

This commit is contained in:
xiaofajia 2024-11-14 18:30:15 +08:00
parent 6c396bfbbd
commit c4da06e591

View File

@ -168,5 +168,18 @@ public class DlTicketWaresController {
public CommonResult<?> getWorkerTodo(){
return success(dlTicketWaresService.getWorkerTodo());
}
/**
* 查单个配件申请单的信息
*
* @author 小李
* @date 15:55 2024/11/14
* @param id id
**/
@GetMapping("/getById")
@Operation(summary = "查单个配件申请单的信息")
public CommonResult<?> getById(@RequestParam("id") String id){
return success(dlTicketWaresService.getById(id));
}
}