feat():加入maven compiler插件,确保使用-parameters标志
parent
9d0a826d18
commit
fad97c4d49
|
@ -11,7 +11,6 @@ import com.muyu.common.core.domain.Result;
|
|||
import io.swagger.v3.oas.annotations.Operation;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.validation.annotation.Validated;
|
||||
|
@ -136,7 +135,7 @@ public class OrderPayCustomerController {
|
|||
@GetMapping("/enable/{orderCustomerId}")
|
||||
@Operation(summary = "通过ID客户启用",description = "通过ID启用客户信息,启用之后可以调用支付相关接口")
|
||||
public Result<String> enable(@PathVariable("orderCustomerId") Long orderCustomerId){
|
||||
this.orderPayCustomerService.disable(orderCustomerId);
|
||||
this.orderPayCustomerService.enable(orderCustomerId);
|
||||
return Result.success(null,"操作成功");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue