package com.artfess.yhxt.conf;

import com.artfess.base.conf.SwaggerConfigHelper;
import com.artfess.base.constants.ApiGroupConsts;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.spring.web.plugins.Docket;

/**
 * Swagger配置
 *
 * @author heyifan
 * @company 广州宏天软件股份有限公司
 * @email heyf@jee-soft.cn
 * @date 2018年4月19日
 */
@Configuration
public class BizSwaggerConfig extends SwaggerConfigHelper {

    @Bean
    public Docket bizApi() {
        return buildProductApi("业务接口", ApiGroupConsts.GROUP_BIZ);
    }

}
