| | |
| | | import com.ruoyi.order.model.Order; |
| | | import com.ruoyi.order.util.payment.model.RefundCallbackResult; |
| | | import com.ruoyi.order.vo.*; |
| | | import org.omg.CORBA.INTERNAL; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | |
| | | boolean check(Order order, Integer shopId, Long userId); |
| | | |
| | | void writeOff(String id,Integer shopId); |
| | | void writeOff(String id,Integer shopId, String technicianId); |
| | | |
| | | |
| | | /** |
| | |
| | | |
| | | /** |
| | | * 确认发货操作 |
| | | * @param orderId |
| | | * @param code |
| | | * @return |
| | | */ |
| | | R confirmDelivery(Long orderId, String code); |
| | | R confirmDelivery(ConfirmDelivery confirmDelivery); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param goodsId |
| | | * @return |
| | | */ |
| | | Integer getGoodsSaleNum(Integer goodsId, Integer type); |
| | | Integer getGoodsSaleNum(Integer goodsId, Integer type, Long userId); |
| | | |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | Integer getShopSaleNum(Integer shopId, Integer type); |
| | | |
| | | /** |
| | | * 定时查询快递信息 |
| | | */ |
| | | void taskExpress(); |
| | | |
| | | /** |
| | | * 导入物流信息 |
| | | */ |
| | | void importExpress(MultipartFile file); |
| | | } |