Administrator
2025-07-04 d448834784e996a3c35c90097c4e7b110899bed2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package cc.mrbird.febs.mall.service;
 
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> {
 
    IPage<ClothesType> adminTypeList(ClothesType dto, QueryRequest request);
 
    FebsResponse typeAdd(ClothesType dto);
 
    FebsResponse typeUpdate(ClothesType dto);
 
    FebsResponse changeState(Long id, Integer type, Integer state);
 
    IPage<ClothesSize> adminSizeList(ClothesSize dto, QueryRequest request);
 
    FebsResponse sizeAdd(ClothesSize dto);
 
    FebsResponse sizeUpdate(ClothesSize dto);
 
    IPage<ClothesPattern> adminPatternList(ClothesPattern dto, QueryRequest request);
 
    FebsResponse patternAdd(ClothesPattern dto);
 
    FebsResponse patternUpdate(ClothesPattern dto);
 
    IPage<ClothesLocation> adminLocationList(ClothesLocation dto, QueryRequest request);
 
    FebsResponse locationAdd(ClothesLocation dto);
 
    FebsResponse locationUpdate(ClothesLocation dto);
 
    IPage<ClothesCloth> adminClothList(ClothesCloth dto, QueryRequest request);
 
    FebsResponse clothAdd(ClothesCloth dto);
 
    FebsResponse clothUpdate(ClothesCloth dto);
 
    IPage<ClothesArt> adminArtList(ClothesArt dto, QueryRequest request);
 
    FebsResponse artAdd(ClothesArt dto);
 
    FebsResponse artUpdate(ClothesArt dto);
 
    FebsResponse artSet(AdminClothesTypeInfoDto dto);
 
    FebsResponse sizeSet(AdminClothesTypeInfoDto dto);
 
    FebsResponse clothSet(AdminClothesTypeInfoDto dto);
 
    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);
}