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