8 changed files with 47 additions and 18 deletions
@ -0,0 +1,26 @@ |
|||
<?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> |
|||
<groupId>com.dimensionalnode</groupId> |
|||
<artifactId>bnyer-api</artifactId> |
|||
<version>1.0.0</version> |
|||
</parent> |
|||
<modelVersion>4.0.0</modelVersion> |
|||
|
|||
<artifactId>bnyer-api-order</artifactId> |
|||
|
|||
<description> |
|||
bnyer-api-order订单服务接口模块 |
|||
</description> |
|||
|
|||
<dependencies> |
|||
<!-- bnyer Common Core--> |
|||
<dependency> |
|||
<groupId>com.dimensionalnode</groupId> |
|||
<artifactId>bnyer-common-core</artifactId> |
|||
</dependency> |
|||
</dependencies> |
|||
|
|||
</project> |
|||
@ -1,4 +1,4 @@ |
|||
package com.bnyer.img.api.dto; |
|||
package com.bnyer.order.api.dto; |
|||
|
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Getter; |
|||
@ -1,9 +1,9 @@ |
|||
package com.bnyer.img.api.factory; |
|||
package com.bnyer.order.api.factory; |
|||
|
|||
import com.bnyer.common.core.domain.R; |
|||
import com.bnyer.img.api.dto.QueryVipOrderDto; |
|||
import com.bnyer.img.api.remote.RemoteVipOrderService; |
|||
import com.bnyer.img.api.vo.VipOrderVo; |
|||
import com.bnyer.order.api.dto.QueryVipOrderDto; |
|||
import com.bnyer.order.api.remote.RemoteVipOrderService; |
|||
import com.bnyer.order.api.vo.VipOrderVo; |
|||
import org.slf4j.Logger; |
|||
import org.slf4j.LoggerFactory; |
|||
import org.springframework.cloud.openfeign.FallbackFactory; |
|||
@ -1,10 +1,10 @@ |
|||
package com.bnyer.img.api.remote; |
|||
package com.bnyer.order.api.remote; |
|||
|
|||
import com.bnyer.common.core.constant.ServiceNameConstants; |
|||
import com.bnyer.common.core.domain.R; |
|||
import com.bnyer.img.api.dto.QueryVipOrderDto; |
|||
import com.bnyer.img.api.factory.RemoteVipOrderFallbackFactory; |
|||
import com.bnyer.img.api.vo.VipOrderVo; |
|||
import com.bnyer.order.api.dto.QueryVipOrderDto; |
|||
import com.bnyer.order.api.factory.RemoteVipOrderFallbackFactory; |
|||
import com.bnyer.order.api.vo.VipOrderVo; |
|||
import org.springframework.cloud.openfeign.FeignClient; |
|||
import org.springframework.web.bind.annotation.PostMapping; |
|||
import org.springframework.web.bind.annotation.RequestBody; |
|||
@ -1,6 +1,5 @@ |
|||
package com.bnyer.img.api.vo; |
|||
package com.bnyer.order.api.vo; |
|||
|
|||
import com.baomidou.mybatisplus.annotation.TableField; |
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import io.swagger.annotations.ApiModelProperty; |
|||
import lombok.Getter; |
|||
Loading…
Reference in new issue