新增单个配件申请表查看
This commit is contained in:
parent
6c396bfbbd
commit
c4da06e591
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user