fix:注册
This commit is contained in:
@@ -1,8 +1,14 @@
|
||||
package com.xiang.app.quartz.admin.server;
|
||||
|
||||
import com.xiang.xservice.basic.common.resp.Result;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
import javax.validation.Valid;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
/**
|
||||
* @Author: xiang
|
||||
* @Date: 2026-01-06 09:18
|
||||
@@ -10,7 +16,10 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
@RequiredArgsConstructor
|
||||
@RequestMapping("/open/quartz/register")
|
||||
public class XxzJobRegisterController {
|
||||
|
||||
@PostMapping("/single")
|
||||
public Result<Void> registerSingle(@NotNull(message = "单个注册") @Valid )
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user