You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
实现 @RestController @RequestMapping("/v1/contract")
public class ContractSignApiImpl implements IContractSignApi { @OverRide
public RestResponse sign(ContractSignReqDto reqDto) {
}
}
The text was updated successfully, but these errors were encountered:
例子如下
接口
public interface IContractSignApi {
@PostMapping(value = {"/sign"}, produces = {"application/json"})
RestResponse sign(@Valid @RequestBody ContractSignReqDto reqDto);
}
实现
@RestController
@RequestMapping("/v1/contract")
public class ContractSignApiImpl implements IContractSignApi {
@OverRide
public RestResponse sign(ContractSignReqDto reqDto) {
}
The text was updated successfully, but these errors were encountered: