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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package cc.mrbird.febs.mall.service.impl;
 
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.common.enumerates.ClothesEnum;
import cc.mrbird.febs.common.enumerates.StateUpDownEnum;
import cc.mrbird.febs.common.utils.LoginUserUtil;
import cc.mrbird.febs.mall.dto.clothes.*;
import cc.mrbird.febs.mall.entity.*;
import cc.mrbird.febs.mall.mapper.*;
import cc.mrbird.febs.mall.service.ApiClothesService;
import cc.mrbird.febs.mall.vo.ApiActivityInfoVo;
import cc.mrbird.febs.mall.vo.clothes.*;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.ObjectUtil;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
 
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
 
@Slf4j
@Service
@RequiredArgsConstructor
public class ApiClothesServiceImpl extends ServiceImpl<ClothesTypeMapper, ClothesType> implements ApiClothesService {
 
    private final ClothesTypeMapper clothesTypeMapper;
    private final ClothesTypeClothMapper clothesTypeClothMapper;
    private final ClothesTypePatternMapper clothesTypePatternMapper;
    private final ClothesTypeSizeMapper clothesTypeSizeMapper;
    private final ClothesSizeMapper clothesSizeMapper;
    private final ClothesTypeLocationMapper clothesTypeLocationMapper;
    private final ClothesTypeArtMapper clothesTypeArtMapper;
    private final ClothesMemberStatureMapper clothesMemberStatureMapper;
 
    @Override
    public FebsResponse clothesType() {
        List<ApiClothesTypeListVo> vos = new ArrayList<>();
 
        List<ClothesType> clothesTypes = clothesTypeMapper.selectList(
                Wrappers.lambdaQuery(ClothesType.class)
                        .eq(ClothesType::getState, ClothesEnum.UP.getCode())
                        .orderByAsc(ClothesType::getOrderNum)
        );
        if (CollUtil.isNotEmpty(clothesTypes)){
            for (ClothesType clothesType : clothesTypes){
                ApiClothesTypeListVo vo = new ApiClothesTypeListVo();
                vo.setId(clothesType.getId());
                vo.setName(clothesType.getName());
                vo.setImage(clothesType.getImage());
                vo.setContent(clothesType.getContent());
                vo.setOrderNum(clothesType.getOrderNum());
                vos.add( vo);
            }
        }
 
        return new FebsResponse().success().data(vos);
    }
 
    @Override
    public FebsResponse typeInfo(ApiTypeInfoDto dto) {
        ApiClothesTypeVo apiClothesTypeVo = new ApiClothesTypeVo();
 
        Long id = dto.getId();
        ClothesType clothesType = clothesTypeMapper.selectById(id);
        if (ObjectUtil.isNotEmpty(clothesType)){
            apiClothesTypeVo.setId(clothesType.getId());
            apiClothesTypeVo.setName(clothesType.getName());
            apiClothesTypeVo.setImage(clothesType.getImage());
            apiClothesTypeVo.setImageFront(clothesType.getImageFront());
            apiClothesTypeVo.setImageBack(clothesType.getImageBack());
            apiClothesTypeVo.setContent(clothesType.getContent());
            apiClothesTypeVo.setClothState(clothesType.getClothState());
            apiClothesTypeVo.setArtState(clothesType.getArtState());
            apiClothesTypeVo.setPatternState(clothesType.getPatternState());
            apiClothesTypeVo.setLocationState(clothesType.getLocationState());
            apiClothesTypeVo.setSizeState(clothesType.getSizeState());
        }
 
        return new FebsResponse().success().data(apiClothesTypeVo);
    }
 
    @Override
    public FebsResponse clothList(ApiClothesClothPageDto dto) {
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesClothVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesClothVo> voPage = clothesTypeClothMapper.selectPageInCloth(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse patternList(ApiClothesPatternPageDto dto) {
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesPatternVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesPatternVo> voPage = clothesTypePatternMapper.selectPageInPattern(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse sizeList(ApiClothesSizeDto dto) {
        List<ApiClothesSizeVo> vos = new ArrayList<>();
 
        Long typeId = dto.getTypeId();
        List<ClothesTypeSize> clothesTypeSizes = clothesTypeSizeMapper.selectList(
                Wrappers.lambdaQuery(ClothesTypeSize.class)
                        .eq(ClothesTypeSize::getTypeId, typeId)
        );
        if (CollUtil.isNotEmpty(clothesTypeSizes)){
 
            Set<Long> collect = clothesTypeSizes.stream().map(ClothesTypeSize::getSizeId).collect(Collectors.toSet());
            List<ClothesSize> clothesSizes = clothesSizeMapper.selectList(
                    Wrappers.lambdaQuery(ClothesSize.class)
                            .in(ClothesSize::getId, collect)
 
            );
 
            if (CollUtil.isNotEmpty(clothesSizes)){
                for (ClothesSize clothesSize : clothesSizes){
                    ApiClothesSizeVo vo = new ApiClothesSizeVo();
                    vo.setId(clothesSize.getId());
                    vo.setCode(clothesSize.getCode());
                    vo.setName(clothesSize.getName());
                    vo.setImage(clothesSize.getImage());
                    vo.setContent(clothesSize.getContent());
                    vo.setPrice(clothesSize.getPrice());
                    vo.setType(clothesSize.getType());
                    vos.add(vo);
                }
            }
        }
 
        return new FebsResponse().success().data(vos);
    }
 
    @Override
    public FebsResponse locationList(ApiClothesLocationPageDto dto) {
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesLocationVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesLocationVo> voPage = clothesTypeLocationMapper.selectPageInLocation(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse artList(ApiClothesArtPageDto dto) {
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesArtVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesArtVo> voPage = clothesTypeArtMapper.selectPageInArt(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse statureList(ApiClothesMemberStatureDto dto) {
 
        Long memberId = LoginUserUtil.getLoginUser().getId();
        dto.setMemberId(memberId);
        // 创建分页对象,传入当前页和每页大小
        Page<ApiClothesMemberStatureVo> page = new Page<>(dto.getPageNow(), dto.getPageSize());
        // 调用Mapper方法获取活动分页数据
        Page<ApiClothesMemberStatureVo> voPage = clothesMemberStatureMapper.selectPageInMemberStature(page, dto);
 
        return new FebsResponse().success().data(voPage);
    }
 
    @Override
    public FebsResponse statureAdd(ApiClothesMemberStatureAddDto dto) {
 
        Long memberId = LoginUserUtil.getLoginUser().getId();
        ClothesMemberStature clothesMemberStature = new ClothesMemberStature();
        clothesMemberStature.setMemberId(memberId);
        clothesMemberStature.setName(dto.getName());
        clothesMemberStature.setHeightLine(dto.getHeightLine());
        clothesMemberStature.setBustLine(dto.getBustLine());
        clothesMemberStature.setWaistLine(dto.getWaistLine());
        clothesMemberStature.setWideLine(dto.getWideLine());
        clothesMemberStature.setHipLine(dto.getHipLine());
        clothesMemberStature.setState(dto.getState());
        clothesMemberStatureMapper.insert(clothesMemberStature);
 
        if(ClothesEnum.UP.getCode() == dto.getState()){
            clothesMemberStatureMapper.update(null,
                        Wrappers.lambdaUpdate(ClothesMemberStature.class)
                    .set(ClothesMemberStature::getState, ClothesEnum.DOWN.getCode())
                    .eq(ClothesMemberStature::getMemberId, memberId)
                    .ne(ClothesMemberStature::getId, clothesMemberStature.getId())
                    .eq(ClothesMemberStature::getDelFlag, ClothesEnum.DOWN.getCode())
                    );
        }
 
        return new FebsResponse().success().message("操作成功");
    }
 
    @Override
    public FebsResponse statureInfo(ApiClothesMemberStatureInfoDto dto) {
        Long memberId = LoginUserUtil.getLoginUser().getId();
 
        ApiClothesMemberStatureVo apiClothesMemberStatureVo = new ApiClothesMemberStatureVo();
        ClothesMemberStature clothesMemberStature = clothesMemberStatureMapper.selectById(dto.getId());
        if (ObjectUtil.isNotEmpty(clothesMemberStature)){
            apiClothesMemberStatureVo.setId(clothesMemberStature.getId());
            apiClothesMemberStatureVo.setName(clothesMemberStature.getName());
            apiClothesMemberStatureVo.setHeightLine(clothesMemberStature.getHeightLine());
            apiClothesMemberStatureVo.setBustLine(clothesMemberStature.getBustLine());
            apiClothesMemberStatureVo.setWaistLine(clothesMemberStature.getWaistLine());
            apiClothesMemberStatureVo.setWideLine(clothesMemberStature.getWideLine());
            apiClothesMemberStatureVo.setHipLine(clothesMemberStature.getHipLine());
            apiClothesMemberStatureVo.setState(clothesMemberStature.getState());
        }
 
        return new FebsResponse().success().data(apiClothesMemberStatureVo);
    }
 
    @Override
    public FebsResponse statureUpdate(ApiClothesMemberStatureUpdateDto dto) {
 
        Long memberId = LoginUserUtil.getLoginUser().getId();
        ClothesMemberStature clothesMemberStature = clothesMemberStatureMapper.selectById(dto.getId());
        if (ObjectUtil.isNotEmpty(clothesMemberStature)){
            clothesMemberStature.setName(dto.getName());
            clothesMemberStature.setHeightLine(dto.getHeightLine());
            clothesMemberStature.setBustLine(dto.getBustLine());
            clothesMemberStature.setWaistLine(dto.getWaistLine());
            clothesMemberStature.setWideLine(dto.getWideLine());
            clothesMemberStature.setHipLine(dto.getHipLine());
            clothesMemberStature.setState(dto.getState());
            clothesMemberStatureMapper.updateById(clothesMemberStature);
 
            if(ClothesEnum.UP.getCode() == dto.getState()){
                clothesMemberStatureMapper.update(null,
                        Wrappers.lambdaUpdate(ClothesMemberStature.class)
                                .set(ClothesMemberStature::getState, ClothesEnum.DOWN.getCode())
                                .eq(ClothesMemberStature::getMemberId, memberId)
                                .ne(ClothesMemberStature::getId, clothesMemberStature.getId())
                                .eq(ClothesMemberStature::getDelFlag, ClothesEnum.DOWN.getCode())
                );
            }
        }
 
        return new FebsResponse().success().message("操作成功");
    }
 
    @Override
    public FebsResponse statureDel(ApiClothesMemberStatureInfoDto dto) {
 
        Long memberId = LoginUserUtil.getLoginUser().getId();
        clothesMemberStatureMapper.delete(
                Wrappers.lambdaUpdate(ClothesMemberStature.class)
                        .eq(ClothesMemberStature::getId, dto.getId())
                        .eq(ClothesMemberStature::getMemberId, memberId)
                        .eq(ClothesMemberStature::getDelFlag, ClothesEnum.DOWN.getCode())
        );
 
        return new FebsResponse().success().message("操作成功");
    }
}