package com.artfess.rescue.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配置 * * @author heyifan * @email heyf@jee-soft.cn * @date 2018年4月19日 */ @Configuration public class RescueConfigSwaggerConfig extends SwaggerConfigHelper { @Bean public Docket rescueApi() { return buildProductApi("巡查救援系统", ApiGroupConsts.GROUP_BIZ_RESCUE); } }