阳光采购平台修改,接口文档
parent
2ba7b19ce7
commit
d6d6522695
@ -0,0 +1,43 @@
|
||||
package com.glxp.udidl.admin.controller.sys;
|
||||
|
||||
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
||||
import com.glxp.udidl.admin.dto.sys.SysMenuModel;
|
||||
import com.glxp.udidl.admin.service.sys.SysMenuService;
|
||||
import com.glxp.udidl.common.res.BaseResponse;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("sys/menu")
|
||||
public class SysMenuController {
|
||||
@Autowired
|
||||
SysMenuService sysMenuService;
|
||||
|
||||
@AuthRuleAnnotation("sys_menu_all")
|
||||
@PostMapping("/list")
|
||||
public BaseResponse getList(){
|
||||
return sysMenuService.getMenuTree();
|
||||
}
|
||||
@AuthRuleAnnotation("sys_menu_all")
|
||||
@PostMapping("/insert")
|
||||
public BaseResponse insert(SysMenuModel model){
|
||||
return sysMenuService.insert(model);
|
||||
}
|
||||
@AuthRuleAnnotation("sys_menu_all")
|
||||
@PostMapping("update")
|
||||
public BaseResponse update(SysMenuModel model){
|
||||
return sysMenuService.update(model);
|
||||
}
|
||||
@AuthRuleAnnotation("sys_menu_all")
|
||||
@PostMapping("/detail")
|
||||
public BaseResponse detail(Integer id){
|
||||
return sysMenuService.detail(id);
|
||||
}
|
||||
@AuthRuleAnnotation("sys_menu_all")
|
||||
@PostMapping("/delete")
|
||||
public BaseResponse delete(Integer id){
|
||||
return sysMenuService.delete(id);
|
||||
}
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
package com.glxp.udidl.admin.controller.udplat;
|
||||
|
||||
import com.glxp.udidl.admin.annotation.AuthRuleAnnotation;
|
||||
import com.glxp.udidl.admin.dto.udplat.ProductParam;
|
||||
import com.glxp.udidl.admin.dto.udplat.UnitsParam;
|
||||
import com.glxp.udidl.admin.service.udplat.UdplatDistributorService;
|
||||
import com.glxp.udidl.admin.service.udplat.UdplatGoodsService;
|
||||
import com.glxp.udidl.common.res.BaseResponse;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
@Api(tags = "第三方接口")
|
||||
@RestController
|
||||
public class ThirdApiController {
|
||||
@Autowired
|
||||
UdplatDistributorService udplatDistributorService;
|
||||
@Autowired
|
||||
UdplatGoodsService udplatGoodsService;
|
||||
|
||||
@ApiOperation("获取往来单位信息")
|
||||
@AuthRuleAnnotation("third_api_all")
|
||||
@PostMapping("/udiwms/erp/getUnits")
|
||||
public BaseResponse getUnitsList(@RequestBody UnitsParam param){
|
||||
return udplatDistributorService.getUnitsList(param);
|
||||
}
|
||||
@ApiOperation("获取产品信息")
|
||||
@AuthRuleAnnotation("third_api_all")
|
||||
@PostMapping("/udiwms/erp/getProducts")
|
||||
public BaseResponse getProducts(@RequestBody ProductParam param)
|
||||
{
|
||||
return udplatGoodsService.getProducts(param);
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package com.glxp.udidl.admin.dto.udplat;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ProductListModel {
|
||||
private String code;
|
||||
private String name;
|
||||
private String measname;//计量单位
|
||||
private String model;//型号
|
||||
private String spec;//规格
|
||||
private String registerNo;//注册证号
|
||||
private String manufactureId;//生成企业ID
|
||||
private String manufactory;//生产企业
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.udidl.admin.dto.udplat;
|
||||
|
||||
import com.glxp.udidl.admin.req.ListPageRequest;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ProductParam extends ListPageRequest {
|
||||
private String code;//产品编码
|
||||
private String name;//产品名称
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.glxp.udidl.admin.dto.udplat;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UdplatGoodsParam extends BaseParam{
|
||||
private String manufactureName;//生产企业
|
||||
private String distributorName;//配送企业
|
||||
private String regNum;//注册证号
|
||||
private String model;//型号
|
||||
private String spec;//规格
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
package com.glxp.udidl.admin.dto.udplat;
|
||||
|
||||
import com.glxp.udidl.admin.req.ListPageRequest;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UnitsParam extends ListPageRequest {
|
||||
@ApiModelProperty("关键字查询")
|
||||
private String key;
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.glxp.udidl.admin.service.sys;
|
||||
|
||||
import com.glxp.udidl.admin.dto.sys.SysMenuModel;
|
||||
import com.glxp.udidl.common.res.BaseResponse;
|
||||
|
||||
public interface SysMenuService {
|
||||
BaseResponse getMenuTree();
|
||||
BaseResponse insert(SysMenuModel model);
|
||||
BaseResponse update(SysMenuModel model);
|
||||
BaseResponse detail(Integer id);
|
||||
BaseResponse delete(Integer id);
|
||||
}
|
@ -0,0 +1,72 @@
|
||||
package com.glxp.udidl.admin.service.sys.impl;
|
||||
|
||||
import com.glxp.udidl.admin.dao.sys.SysMenuMapper;
|
||||
import com.glxp.udidl.admin.dto.sys.MenuTreeModel;
|
||||
import com.glxp.udidl.admin.dto.sys.SysMenuModel;
|
||||
import com.glxp.udidl.admin.entity.sys.SysMenu;
|
||||
import com.glxp.udidl.admin.service.sys.SysMenuService;
|
||||
import com.glxp.udidl.common.res.BaseResponse;
|
||||
import com.glxp.udidl.common.util.ResultVOUtils;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Service
|
||||
public class SysMenuServiceImpl implements SysMenuService {
|
||||
@Autowired
|
||||
SysMenuMapper sysMenuMapper;
|
||||
|
||||
@Override
|
||||
public BaseResponse getMenuTree() {
|
||||
List<SysMenu> menus = sysMenuMapper.selectAll();
|
||||
List<MenuTreeModel> resutl = getChild(menus, 0);
|
||||
return ResultVOUtils.success(resutl);
|
||||
}
|
||||
public BaseResponse insert(SysMenuModel model){
|
||||
SysMenu sysMenu = new SysMenu();
|
||||
BeanUtils.copyProperties(model,sysMenu);
|
||||
sysMenu.setCreateTime(new Date());
|
||||
sysMenuMapper.insert(sysMenu);
|
||||
return ResultVOUtils.success();
|
||||
}
|
||||
public BaseResponse update(SysMenuModel model){
|
||||
SysMenu sysMenu = sysMenuMapper.selectByPrimaryKey(model.getId());
|
||||
if(sysMenu == null)
|
||||
return ResultVOUtils.error(-1,"找不到记录");
|
||||
BeanUtils.copyProperties(model,sysMenu);
|
||||
sysMenuMapper.updateByPrimaryKey(sysMenu);
|
||||
return ResultVOUtils.success();
|
||||
}
|
||||
public BaseResponse detail(Integer id){
|
||||
SysMenu sysMenu = sysMenuMapper.selectByPrimaryKey(id);
|
||||
if(sysMenu == null)
|
||||
return ResultVOUtils.error(-1,"找不到记录");
|
||||
return ResultVOUtils.success(sysMenu);
|
||||
}
|
||||
public BaseResponse delete(Integer id){
|
||||
if(sysMenuMapper.getChildCount(id)>0)
|
||||
return ResultVOUtils.error(-1,"存在子级,请先删除子级!");
|
||||
sysMenuMapper.deleteByPrimaryKey(id);
|
||||
return ResultVOUtils.success();
|
||||
}
|
||||
private List<MenuTreeModel> getChild(List<SysMenu> menus, Integer pId) {
|
||||
List<MenuTreeModel> result = new ArrayList<>();
|
||||
List<SysMenu> list = menus.stream().filter(p -> p.getParentId().equals(pId)).collect(Collectors.toList());
|
||||
if (list != null && list.size() > 0) {
|
||||
for (SysMenu item : list) {
|
||||
MenuTreeModel treeModel = new MenuTreeModel();
|
||||
BeanUtils.copyProperties(item, treeModel);
|
||||
List<MenuTreeModel> child = getChild(menus, treeModel.getId());
|
||||
if (child != null && child.size() > 0)
|
||||
treeModel.setChildren(child);
|
||||
result.add(treeModel);
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
@ -0,0 +1,74 @@
|
||||
package com.glxp.udidl.admin.util;
|
||||
|
||||
import javax.servlet.ServletOutputStream;
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.io.*;
|
||||
import java.net.URLEncoder;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
||||
public class FileUtils {
|
||||
public static void exportToFile(HttpServletResponse response,String str,String fileName){
|
||||
response.setCharacterEncoding("utf-8");
|
||||
response.setContentType("application/octet-stream");
|
||||
response.setHeader("content-type","application/octet-stream");
|
||||
response.addHeader("Content-Disposition","attachment;filename="+genAttachmentFileName(fileName,"default")+".json");
|
||||
BufferedOutputStream buff=null;
|
||||
ServletOutputStream outStr = null;
|
||||
try{
|
||||
outStr = response.getOutputStream();
|
||||
buff = new BufferedOutputStream(outStr);
|
||||
buff.write(str.getBytes(StandardCharsets.UTF_8));
|
||||
buff.flush();
|
||||
buff.close();
|
||||
}catch (Exception e){
|
||||
|
||||
}finally {
|
||||
try{
|
||||
buff.close();;
|
||||
outStr.close();
|
||||
}catch (Exception e){}
|
||||
|
||||
}
|
||||
}
|
||||
public static String exportToFile(String str,String path){
|
||||
try
|
||||
{
|
||||
BufferedWriter bw = new BufferedWriter(new FileWriter(path,false));
|
||||
bw.write(str) ;
|
||||
bw.newLine();
|
||||
bw.close();
|
||||
}catch (Exception e){
|
||||
return e.getMessage();
|
||||
}
|
||||
return "success";
|
||||
}
|
||||
public static void getFile(HttpServletResponse response,String path){
|
||||
try {
|
||||
InputStream inputStream = new FileInputStream(path);// 文件的存放路径
|
||||
response.reset();
|
||||
response.setContentType("application/octet-stream");
|
||||
String filename = new File(path).getName();
|
||||
response.addHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(filename, "UTF-8"));
|
||||
ServletOutputStream outputStream = response.getOutputStream();
|
||||
byte[] b = new byte[1024];
|
||||
int len;
|
||||
//从输入流中读取一定数量的字节,并将其存储在缓冲区字节数组中,读到末尾返回-1
|
||||
while ((len = inputStream.read(b)) > 0) {
|
||||
outputStream.write(b, 0, len);
|
||||
}
|
||||
inputStream.close();
|
||||
}catch (Exception e){
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
private static String genAttachmentFileName(String cnName,String defaultName){
|
||||
try{
|
||||
cnName = new String(cnName.getBytes("gb2312"),"ISO8859-1");
|
||||
|
||||
}catch (Exception e){
|
||||
cnName = defaultName;
|
||||
}
|
||||
return cnName;
|
||||
}
|
||||
}
|
@ -1,79 +1,95 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.glxp.udidl.admin.dao.udplat.UdplatGoodsMatchMapper">
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
|
||||
<id column="id" jdbcType="INTEGER" property="id" />
|
||||
<result column="deviceRecordKey" jdbcType="VARCHAR" property="deviceRecordKey" />
|
||||
<result column="deliveryGoodsId" jdbcType="VARCHAR" property="deliveryGoodsId" />
|
||||
<result column="medicalCode" jdbcType="VARCHAR" property="medicalCode" />
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
</resultMap>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||
delete from udplat_goods_match
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
|
||||
insert into udplat_goods_match (id, deviceRecordKey, deliveryGoodsId,
|
||||
medicalCode, createTime
|
||||
)
|
||||
values (#{id,jdbcType=INTEGER}, #{deviceRecordKey,jdbcType=VARCHAR}, #{deliveryGoodsId,jdbcType=VARCHAR},
|
||||
#{medicalCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}
|
||||
)
|
||||
</insert>
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
|
||||
update udplat_goods_match
|
||||
set deviceRecordKey = #{deviceRecordKey,jdbcType=VARCHAR},
|
||||
<if test="projectGoodsCode != null and projectGoodsCode !='' ">
|
||||
projectGoodsCode = #{deliveryGoodsId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="medicalCode != null and medicalCode !='' ">
|
||||
medicalCode = #{medicalCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
updateTime = #{updateTime,jdbcType=TIMESTAMP}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
|
||||
from udplat_goods_match
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
|
||||
from udplat_goods_match
|
||||
</select>
|
||||
<select id="selectByDeviceRecordKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
|
||||
from udplat_goods_match
|
||||
where deviceRecordKey = #{id}
|
||||
</select>
|
||||
<select id="getList" parameterType="com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchParam" resultType="com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchListModel">
|
||||
select p.uuid, p.nameCode,p.ylqxzcrbarmc,p.zczbhhzbapzbh, p.cpmctymc,p.ggxh,p.cpms,p.deviceRecordKey,m.deliveryGoodsId,m.medicalCode from productinfo as p
|
||||
<resultMap id="BaseResultMap" type="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
|
||||
<id column="id" jdbcType="INTEGER" property="id"/>
|
||||
<result column="deviceRecordKey" jdbcType="VARCHAR" property="deviceRecordKey"/>
|
||||
<result column="deliveryGoodsId" jdbcType="VARCHAR" property="deliveryGoodsId"/>
|
||||
<result column="medicalCode" jdbcType="VARCHAR" property="medicalCode"/>
|
||||
<result column="createTime" jdbcType="TIMESTAMP" property="createTime"/>
|
||||
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime"/>
|
||||
</resultMap>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
|
||||
delete
|
||||
from udplat_goods_match
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</delete>
|
||||
<insert id="insert" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
|
||||
insert into udplat_goods_match (id, deviceRecordKey, deliveryGoodsId,
|
||||
medicalCode, createTime)
|
||||
values (#{id,jdbcType=INTEGER}, #{deviceRecordKey,jdbcType=VARCHAR}, #{deliveryGoodsId,jdbcType=VARCHAR},
|
||||
#{medicalCode,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP})
|
||||
</insert>
|
||||
<update id="updateByPrimaryKey" parameterType="com.glxp.udidl.admin.entity.udplat.UdplatGoodsMatch">
|
||||
update udplat_goods_match
|
||||
set deviceRecordKey = #{deviceRecordKey,jdbcType=VARCHAR},
|
||||
<if test="projectGoodsCode != null and projectGoodsCode !='' ">
|
||||
projectGoodsCode = #{deliveryGoodsId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="medicalCode != null and medicalCode !='' ">
|
||||
medicalCode = #{medicalCode,jdbcType=VARCHAR},
|
||||
</if>
|
||||
updateTime = #{updateTime,jdbcType=TIMESTAMP}
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</update>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
|
||||
from udplat_goods_match
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
</select>
|
||||
<select id="selectAll" resultMap="BaseResultMap">
|
||||
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
|
||||
from udplat_goods_match
|
||||
</select>
|
||||
<select id="selectByDeviceRecordKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||
select id, deviceRecordKey, deliveryGoodsId, medicalCode, createTime, updateTime
|
||||
from udplat_goods_match
|
||||
where deviceRecordKey = #{id}
|
||||
</select>
|
||||
<select id="getList" parameterType="com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchParam"
|
||||
resultType="com.glxp.udidl.admin.dto.udplat.UdplatGoodsMatchListModel">
|
||||
select p.uuid, p.nameCode,p.ylqxzcrbarmc,p.zczbhhzbapzbh,
|
||||
p.cpmctymc,p.ggxh,p.cpms,p.deviceRecordKey,m.deliveryGoodsId,m.medicalCode from productinfo as p
|
||||
left join udplat_goods_match as m on p.deviceRecordKey = m.deviceRecordKey where p.isNewest =1 and p.diType=1
|
||||
<if test="name != null and name != ''">
|
||||
and (p.cpmctymc like concat(#{name},'%') or p.ylqxzcrbarmc like concat(#{name},'%'))
|
||||
and p.cpmctymc like concat('%',#{name},'%')
|
||||
</if>
|
||||
<if test="nameCode != null and nameCode != '' ">
|
||||
and p.nameCode = #{nameCode}
|
||||
</if>
|
||||
<if test="ylqxzcrbarmc != null and ylqxzcrbarmc != '' ">
|
||||
and p.ylqxzcrbarmc = #{ylqxzcrbarmc}
|
||||
</if>
|
||||
<if test="ggxh != null and ggxh != '' ">
|
||||
and p.ggxh like concat('%',#{ggxh},'%')
|
||||
</if>
|
||||
<if test="zczbhhzbapzbh != null and zczbhhzbapzbh != '' ">
|
||||
and p.zczbhhzbapzbh like concat('%',#{zczbhhzbapzbh},'%')
|
||||
</if>
|
||||
<if test="goodsMatchType == 1">
|
||||
and m.deliveryGoodsId is not null and m.deliveryGoodsId != ''
|
||||
and m.deliveryGoodsId is not null and m.deliveryGoodsId != ''
|
||||
</if>
|
||||
<if test="goodsMatchType == 2">
|
||||
and (m.deliveryGoodsId is null or m.deliveryGoodsId = '')
|
||||
and (m.deliveryGoodsId is null or m.deliveryGoodsId = '')
|
||||
</if>
|
||||
<if test="medicalMatchType == 1">
|
||||
and m.medicalCode is not null and m.medicalCode != ''
|
||||
and m.medicalCode is not null and m.medicalCode != ''
|
||||
</if>
|
||||
<if test="medicalMatchType == 2">
|
||||
and (m.medicalCode is null or m.medicalCode = '')
|
||||
and (m.medicalCode is null or m.medicalCode = '')
|
||||
</if>
|
||||
<if test="startDate != '' and startDate != null">
|
||||
and p.updateTime >= #{startDate}
|
||||
and p.updateTime >= #{startDate}
|
||||
</if>
|
||||
<if test="endDate != '' and endDate != null">
|
||||
and p.updateTime <= #{endDate}
|
||||
and p.updateTime <= #{endDate}
|
||||
</if>
|
||||
</select>
|
||||
<select id="getMatchList" parameterType="java.lang.String" resultType="com.glxp.udidl.admin.dto.device.ProductGoodsMatchModel">
|
||||
select p.*,m.deliveryGoodsId,m.medicalCode from productinfo as p
|
||||
left join udplat_goods_match as m on p.deviceRecordKey = m.deviceRecordKey where p.uuid=#{uuid}
|
||||
</select>
|
||||
<select id="getMatchList" parameterType="java.lang.String"
|
||||
resultType="com.glxp.udidl.admin.dto.device.ProductGoodsMatchModel">
|
||||
select p.*, m.deliveryGoodsId, m.medicalCode
|
||||
from productinfo as p
|
||||
left join udplat_goods_match as m on p.deviceRecordKey = m.deviceRecordKey
|
||||
where p.uuid = #{uuid}
|
||||
</select>
|
||||
</mapper>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>udidl</artifactId>
|
||||
<groupId>com.glxp</groupId>
|
||||
<version>0.0.1</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>api-swagger</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>8</maven.compiler.source>
|
||||
<maven.compiler.target>8</maven.compiler.target>
|
||||
</properties>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.github.xiaoymin</groupId>
|
||||
<artifactId>knife4j-spring-boot-starter</artifactId>
|
||||
<version>2.0.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@ -0,0 +1,34 @@
|
||||
package com.glxp.udidl.swagger.config;
|
||||
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import springfox.documentation.builders.ApiInfoBuilder;
|
||||
import springfox.documentation.builders.PathSelectors;
|
||||
import springfox.documentation.builders.RequestHandlerSelectors;
|
||||
import springfox.documentation.service.ApiInfo;
|
||||
import springfox.documentation.spi.DocumentationType;
|
||||
import springfox.documentation.spring.web.plugins.Docket;
|
||||
import springfox.documentation.swagger2.annotations.EnableSwagger2;
|
||||
|
||||
@Configuration
|
||||
@EnableSwagger2
|
||||
public class SwaggerConfig {
|
||||
@Bean(value = "defaultApi2")
|
||||
public Docket defaultApi2(){
|
||||
return new Docket(DocumentationType.SWAGGER_2)
|
||||
.apiInfo(apiInfo())
|
||||
.select()
|
||||
//.apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class))
|
||||
.apis(RequestHandlerSelectors.any())
|
||||
.paths(PathSelectors.any())
|
||||
.build();
|
||||
}
|
||||
private ApiInfo apiInfo(){
|
||||
return new ApiInfoBuilder()
|
||||
.title("第三方服务")
|
||||
.description("接口文档")
|
||||
//.contact()
|
||||
.version("1.0")
|
||||
.build();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue