package com.artfess.rescue.event.controller;


import com.artfess.base.annotation.ApiGroup;
import com.artfess.base.constants.ApiGroupConsts;
import io.swagger.annotations.Api;
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.BizRescueDispatch;
import com.artfess.rescue.event.manager.BizRescueDispatchManager;

/**
 * 救援派遣信息 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 系统管理员
 * @since 2024-10-24
 */
@RestController
@RequestMapping("/event/bizRescueDispatch/v1/")
@Api(tags = "救援派遣信息")
@ApiGroup(group = {ApiGroupConsts.GROUP_BIZ_RESCUE})
public class BizRescueDispatchController extends BaseController<BizRescueDispatchManager, BizRescueDispatch> {

}
