package com.artfess.rescue.event.controller;


import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.artfess.base.controller.BaseController;
import com.artfess.rescue.event.model.BizEventDispatch;
import com.artfess.rescue.event.manager.BizEventDispatchManager;

/**
 * 事件派遣信息 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 系统管理员
 * @since 2024-11-30
 */
@RestController
@RequestMapping("/bizEventDispatch/v1/")
public class BizEventDispatchController extends BaseController<BizEventDispatchManager, BizEventDispatch> {

}
