Administrator
2025-07-02 4c9c358ede7e52d6063716b3374dd437910cd417
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
package cc.mrbird.febs.mall.service;
 
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.mall.dto.clothes.*;
import cc.mrbird.febs.mall.entity.ClothesType;
import com.baomidou.mybatisplus.extension.service.IService;
 
public interface ApiClothesService extends IService<ClothesType> {
 
    FebsResponse clothesType();
 
    FebsResponse typeInfo(ApiTypeInfoDto dto);
 
    FebsResponse clothList(ApiClothesClothPageDto dto);
 
    FebsResponse patternList(ApiClothesPatternPageDto dto);
 
    FebsResponse sizeList(ApiClothesSizeDto dto);
 
    FebsResponse locationList(ApiClothesLocationPageDto dto);
 
    FebsResponse artList(ApiClothesArtPageDto dto);
 
    FebsResponse statureList(ApiClothesMemberStatureDto dto);
 
    FebsResponse statureAdd(ApiClothesMemberStatureAddDto dto);
 
    FebsResponse statureInfo(ApiClothesMemberStatureInfoDto dto);
 
    FebsResponse statureUpdate(ApiClothesMemberStatureUpdateDto dto);
 
    FebsResponse statureDel(ApiClothesMemberStatureInfoDto dto);
}