|
|
|
@ -62,14 +62,12 @@ public class ProcessDictController {
|
|
|
|
|
* |
|
|
|
|
* @param staff |
|
|
|
|
* @param typeInstrument |
|
|
|
|
* @param createTime |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/getTicketByCode") |
|
|
|
|
public String getTicketByCode(@RequestParam("staff") String staff, |
|
|
|
|
@RequestParam("typeInstrument") String typeInstrument, |
|
|
|
|
@RequestParam("createTime") LocalDateTime createTime) { |
|
|
|
|
return processIdWorker.getTicketByCode(staff, typeInstrument, createTime); |
|
|
|
|
@RequestParam("typeInstrument") String typeInstrument) { |
|
|
|
|
return processIdWorker.getTicketByCode(staff, typeInstrument, LocalDateTime.now()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|