添加缺失字段

This commit is contained in:
gong
2025-12-19 10:50:20 +08:00
parent 5d4d853355
commit 6efcf0e639
4 changed files with 35 additions and 2 deletions

View File

@@ -57,8 +57,7 @@ public class UPpPackageController {
*/
@GetMapping("/detail/{id}")
public CzgResult<PpPackageVO> getPackageDetail(@PathVariable Long id) {
PpPackage aPackage = ppPackageService.getPackageById(id);
return CzgResult.success(ppPackageService.convertPackageToVo(aPackage));
return CzgResult.success(ppPackageService.getPackageDetail(id));
}
/**