| | |
| | | package cc.mrbird.febs.mall.service; |
| | | |
| | | import cc.mrbird.febs.common.entity.FebsResponse; |
| | | import cc.mrbird.febs.mall.dto.clothes.ApiClothesOrderDraftDto; |
| | | import cc.mrbird.febs.mall.dto.clothes.ApiClothesOrderInfoDto; |
| | | import cc.mrbird.febs.mall.dto.clothes.ApiClothesOrderPayDto; |
| | | import cc.mrbird.febs.mall.dto.clothes.ApiMyDraftPageDto; |
| | | import cc.mrbird.febs.mall.dto.clothes.*; |
| | | import cc.mrbird.febs.mall.entity.ClothesOrder; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | |
| | | FebsResponse delOrder(Long id); |
| | | |
| | | FebsResponse payOrder(ApiClothesOrderPayDto dto); |
| | | |
| | | FebsResponse findOrderList(ApiClothesOrderListVoDto dto); |
| | | |
| | | FebsResponse orderDetails(Long id); |
| | | |
| | | FebsResponse confirmOrder(Long id); |
| | | } |