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.BizClusterTableTrigger;
import com.artfess.dataShare.dataCollect.manager.BizClusterTableTriggerManager;

/**
 * 数据资源项实体表触发器关联表（数据库实体表的触发器） 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author wh
 * @email wh
 * @since 2024-12-07
 */
@RestController
@RequestMapping("/biz/clusterTable/trigger/v1/")
@ApiGroup(group = {ApiGroupConsts.GROUP_BIZ_DATASHARE})
@Api(tags = "数据汇聚-数据采集临时表（用于采集任务）")
public class BizClusterTableTriggerController extends BaseController<BizClusterTableTriggerManager, BizClusterTableTrigger> {

}
