|
@@ -49,8 +49,8 @@ public class MerchantAuthController {
|
|
|
*/
|
|
|
@GetMapping("/certificationAudit/{id}")
|
|
|
public void certificationAudit(@PathVariable("id") @Min(value = 1, message = "商家主键不能小于1") Long id,
|
|
|
- String state ) {
|
|
|
- this.merchantAuthService.certificationAudit(id, state);
|
|
|
+ String state,String message ) {
|
|
|
+ this.merchantAuthService.certificationAudit(id, state,message);
|
|
|
}
|
|
|
|
|
|
|