事故信息列表

This commit is contained in:
hekaiyu 2025-11-25 10:03:05 +08:00
parent c9d8ab10f9
commit 82b9230fd6

View File

@ -46,6 +46,16 @@ public class BizEventTypeController extends JeecgController<EventType, EventType
return Result.OK(eventTypeService.queryCoefficients());
}
/**
* 事故信息列表
* @return
*/
@Operation(summary = "事故类型表-事故信息列表")
@GetMapping(value = "/getEventTypeInfo")
public Result<?> getEventTypeInfo() {
return Result.OK(eventTypeService.list());
}
/**
* 添加
*