加盟意向-修改线索状态

This commit is contained in:
guohb
2024-03-22 15:18:13 +08:00
parent eac8231512
commit dc6f7abb8f
2 changed files with 18 additions and 4 deletions

View File

@@ -24,8 +24,7 @@ public class MiniJoinIntentionController {
@PostMapping(path = "/getOpenAreaList")
@ApiOperation("填写加盟意向申请书")
public ResponseResult submit(JoinIntentionRequest request) {
joinIntentionService.submit(request);
return ResponseResult.success();
public ResponseResult<Boolean> submit(JoinIntentionRequest request) {
return ResponseResult.success(joinIntentionService.submit(request));
}
}