package com.artfess.dataShare.dataCollect.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.dataShare.dataCollect.model.BizClusterCollectData;
import com.artfess.dataShare.dataCollect.manager.BizClusterCollectDataManager;

/**
 * 触发器触发临时中间表-所有提供方共用（用于数据采集同步任务） 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author 系统管理员
 * @email wh
 * @since 2024-12-07
 */
@RestController
@RequestMapping("/biz/dataCollect/clusterCollectData/v1/")
@Api(tags = "数据汇聚-触发器触发临时中间表-所有提供方共用")
@ApiGroup(group = {ApiGroupConsts.GROUP_BIZ_DATASHARE})
public class BizClusterCollectDataController extends BaseController<BizClusterCollectDataManager, BizClusterCollectData> {

}
