package com.artfess.uc.config; 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配置 * * @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); } }