feat(oa): 跟进记录功能修复添加顾客重id,导致查询失败

This commit is contained in:
LingWei
2025-03-15 15:11:58 +08:00
parent c76fb356fa
commit e993e6aa2d
2 changed files with 18 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ public class OaFollowUpRecordController extends BaseController {
*/
@GetMapping("/list/{customerId}")
public R<OaFollowUpRecordQueryVo> selectByCustomerIdId(
@NotNull(message = "主键不能为空")
@NotNull(message = "顾客id不能为空")
@PathVariable Long customerId) {
return R.ok(iOaFollowUpRecordService.selectByCustomerId(customerId));
}