Administrator
2025-07-04 d448834784e996a3c35c90097c4e7b110899bed2
src/main/java/cc/mrbird/febs/mall/service/ClothesTypeService.java
@@ -2,10 +2,19 @@
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.common.entity.QueryRequest;
import cc.mrbird.febs.mall.dto.clothes.AdminClothesDeliverGoodsDto;
import cc.mrbird.febs.mall.dto.clothes.AdminClothesOrderListDto;
import cc.mrbird.febs.mall.dto.clothes.AdminClothesRefundOrderDto;
import cc.mrbird.febs.mall.dto.clothes.AdminClothesTypeInfoDto;
import cc.mrbird.febs.mall.entity.*;
import cc.mrbird.febs.mall.vo.clothes.AdminClothesOrderListVo;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.List;
public interface ClothesTypeService extends IService<ClothesType> {
@@ -56,4 +65,18 @@
    FebsResponse patternSet(AdminClothesTypeInfoDto dto);
    FebsResponse locationSet(AdminClothesTypeInfoDto dto);
    IPage<AdminClothesOrderListVo> getOrderListInPage(AdminClothesOrderListDto dto, QueryRequest request);
    FebsResponse deliverGoods(AdminClothesDeliverGoodsDto dto);
    FebsResponse deliverGoodsUpdate(AdminClothesDeliverGoodsDto dto);
    FebsResponse refundOrder(AdminClothesRefundOrderDto dto);
    void confirmOrder(long orderId);
    void exportOrderList(List<Long> list, HttpServletResponse response) throws IOException;
    void deliverGoodsImport(AdminClothesDeliverGoodsDto dto);
}