package com.artfess.dataShare.dataApi.controller;


import com.artfess.dataShare.dataApi.manager.BizServiceApiLogManager;
import com.artfess.dataShare.dataApi.model.BizServiceApiLog;
import com.artfess.base.annotation.ApiGroup;
import com.artfess.base.constants.ApiGroupConsts;
import com.artfess.base.controller.BaseController;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * 数据资产-数据服务接口调用日志 前端控制器
 *
 * @company 阿特菲斯信息技术有限公司
 * @author wubin
 * @since 2024-11-28
 */
@RestController
@RequestMapping("/biz/log/serviceApiLog/v1/")
@Api(tags = "数据资产-数据服务接口调用日志")
@ApiGroup(group = {ApiGroupConsts.GROUP_BIZ_DATASHARE})
public class BizServiceApiLogController extends BaseController<BizServiceApiLogManager, BizServiceApiLog> {

}
