| | |
| | | package com.ruoyi.order.service; |
| | | |
| | | import cn.hutool.json.JSONObject; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import com.ruoyi.order.dto.GetImportOrderDTO; |
| | | import com.ruoyi.order.model.ChargeOrder; |
| | | import com.ruoyi.order.model.Order; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | public interface ChargeOrderService extends IService<ChargeOrder> { |
| | | void importExpress(String url); |
| | | R<JSONObject> importExpress(MultipartFile file); |
| | | |
| | | PageInfo<ChargeOrder> getUserPointPageList(GetImportOrderDTO getImportOrderDTO); |
| | | } |