| | |
| | | import com.hz.his.dto.user.project.UserPackageDto; |
| | | import com.hz.his.dto.user.project.UserProjectDto; |
| | | import com.hz.his.dto.user.project.UserProjectUsedDto; |
| | | import com.hz.his.dto.user.promotion.UserPromotionUsedDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | |
| | | /** |
| | | * 获取用户促销使用记录 |
| | | * @param orderItemNo 子订单号 |
| | | * */ |
| | | @PostMapping(value = "/user/promotion/used") |
| | | Result userPromotionUsed(@RequestParam("orderItemNo") String orderItemNo); |
| | | Result userPromotionUsed(@RequestBody UserPromotionUsedDto userPromotionUsedDto); |
| | | |
| | | |
| | | /** |