package com.artfess.device.base.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 DeviceConfigSwaggerConfig extends SwaggerConfigHelper {

	@Bean
	public Docket csicApi() {
		return buildProductApi("设施设备管理", ApiGroupConsts.DEVICE_BIZ);
	}
}
