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.BizCompensationDetails;
import com.artfess.rescue.event.manager.BizCompensationDetailsManager;

/**
 * 路损赔偿清单 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 系统管理员
 * @since 2024-08-05
 */
@RestController
@RequestMapping("/event/bizCompensationDetails/v1/")
@Api(tags = "路损赔偿清单")
@ApiGroup(group = {ApiGroupConsts.GROUP_BIZ_RESCUE})
public class BizCompensationDetailsController extends BaseController<BizCompensationDetailsManager, BizCompensationDetails> {

}
