Administrator
2025-07-01 fd0efdcc064a63bd5e993f94a5545aedbfc72b6e
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
package cc.mrbird.febs.mall.controller.clothes;
 
import cc.mrbird.febs.common.annotation.ControllerEndpoint;
import cc.mrbird.febs.common.controller.BaseController;
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.common.entity.QueryRequest;
import cc.mrbird.febs.mall.dto.clothes.AdminClothesTypeInfoDto;
import cc.mrbird.febs.mall.dto.memberLevel.AdminMemberLabelAddDto;
import cc.mrbird.febs.mall.dto.memberLevel.AdminMemberLabelDto;
import cc.mrbird.febs.mall.dto.memberLevel.AdminMemberLabelUpdateDto;
import cc.mrbird.febs.mall.entity.*;
import cc.mrbird.febs.mall.service.ClothesTypeService;
import cc.mrbird.febs.mall.vo.clothes.AdminClothesTypeInfoVo;
import cc.mrbird.febs.mall.vo.memberLevel.AdminMemberLabelSetDto;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
 
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import java.util.Map;
 
@Slf4j
@Validated
@RestController
@RequiredArgsConstructor
@RequestMapping(value = "/admin/clothesType")
public class AdminClothesTypeController extends BaseController {
 
    private final ClothesTypeService clothesTypeService;
    /**
     * 分类列表
     * @return
     */
    @GetMapping("typeList")
    public FebsResponse typeList(ClothesType dto, QueryRequest request) {
 
        Map<String, Object> data = getDataTable(clothesTypeService.adminTypeList(dto, request));
        return new FebsResponse().success().data(data);
    }
    /**
     * 分类-新增
     */
    @PostMapping("typeAdd")
    @ControllerEndpoint(operation = " 分类-新增", exceptionMessage = "操作失败")
    public FebsResponse typeAdd(@RequestBody @Valid ClothesType dto) {
 
        return clothesTypeService.typeAdd(dto);
    }
    /**
     * 分类-更新
     */
    @PostMapping("typeUpdate")
    @ControllerEndpoint(operation = "分类-更新", exceptionMessage = "操作失败")
    public FebsResponse typeUpdate(@RequestBody @Valid ClothesType dto) {
 
        return clothesTypeService.typeUpdate(dto);
    }
    /**
     * 分类-状态操作
     */
    @GetMapping("changeState/{id}/{type}/{state}")
    @ControllerEndpoint(operation = "分类-状态操作", exceptionMessage = "操作失败")
    public FebsResponse changeState(
            @NotNull(message = "{required}") @PathVariable Long id,
            @NotNull(message = "{required}") @PathVariable Integer type,
            @NotNull(message = "{required}") @PathVariable Integer state
    ) {
 
        return clothesTypeService.changeState(id,type,state);
    }
    /**
     * 尺码列表
     * @return
     */
    @GetMapping("sizeList")
    public FebsResponse sizeList(ClothesSize dto, QueryRequest request) {
 
        Map<String, Object> data = getDataTable(clothesTypeService.adminSizeList(dto, request));
        return new FebsResponse().success().data(data);
    }
    /**
     * 尺码-新增
     */
    @PostMapping("sizeAdd")
    @ControllerEndpoint(operation = "新增", exceptionMessage = "操作失败")
    public FebsResponse sizeAdd(@RequestBody @Valid ClothesSize dto) {
 
        return clothesTypeService.sizeAdd(dto);
    }
    /**
     * 尺码-更新
     */
    @PostMapping("sizeUpdate")
    @ControllerEndpoint(operation = "分类-更新", exceptionMessage = "操作失败")
    public FebsResponse sizeUpdate(@RequestBody @Valid ClothesSize dto) {
 
        return clothesTypeService.sizeUpdate(dto);
    }
    /**
     * 图案列表
     * @return
     */
    @GetMapping("patternList")
    public FebsResponse patternList(ClothesPattern dto, QueryRequest request) {
 
        Map<String, Object> data = getDataTable(clothesTypeService.adminPatternList(dto, request));
        return new FebsResponse().success().data(data);
    }
    /**
     * 图案-新增
     */
    @PostMapping("patternAdd")
    @ControllerEndpoint(operation = "新增", exceptionMessage = "操作失败")
    public FebsResponse patternAdd(@RequestBody @Valid ClothesPattern dto) {
 
        return clothesTypeService.patternAdd(dto);
    }
    /**
     * 图案-更新
     */
    @PostMapping("patternUpdate")
    @ControllerEndpoint(operation = "分类-更新", exceptionMessage = "操作失败")
    public FebsResponse patternUpdate(@RequestBody @Valid ClothesPattern dto) {
 
        return clothesTypeService.patternUpdate(dto);
    }
 
 
    /**
     * 位置列表
     * @return
     */
    @GetMapping("locationList")
    public FebsResponse locationList(ClothesLocation dto, QueryRequest request) {
 
        Map<String, Object> data = getDataTable(clothesTypeService.adminLocationList(dto, request));
        return new FebsResponse().success().data(data);
    }
    /**
     * 位置-新增
     */
    @PostMapping("locationAdd")
    @ControllerEndpoint(operation = "新增", exceptionMessage = "操作失败")
    public FebsResponse locationAdd(@RequestBody @Valid ClothesLocation dto) {
 
        return clothesTypeService.locationAdd(dto);
    }
    /**
     * 位置-更新
     */
    @PostMapping("locationUpdate")
    @ControllerEndpoint(operation = "分类-更新", exceptionMessage = "操作失败")
    public FebsResponse locationUpdate(@RequestBody @Valid ClothesLocation dto) {
 
        return clothesTypeService.locationUpdate(dto);
    }
 
 
    /**
     * 布料列表
     * @return
     */
    @GetMapping("clothList")
    public FebsResponse clothList(ClothesCloth dto, QueryRequest request) {
 
        Map<String, Object> data = getDataTable(clothesTypeService.adminClothList(dto, request));
        return new FebsResponse().success().data(data);
    }
    /**
     * 布料-新增
     */
    @PostMapping("clothAdd")
    @ControllerEndpoint(operation = "新增", exceptionMessage = "操作失败")
    public FebsResponse clothAdd(@RequestBody @Valid ClothesCloth dto) {
 
        return clothesTypeService.clothAdd(dto);
    }
    /**
     * 布料-更新
     */
    @PostMapping("clothUpdate")
    @ControllerEndpoint(operation = "分类-更新", exceptionMessage = "操作失败")
    public FebsResponse clothUpdate(@RequestBody @Valid ClothesCloth dto) {
 
        return clothesTypeService.clothUpdate(dto);
    }
 
 
    /**
     * 工艺列表
     * @return
     */
    @GetMapping("artList")
    public FebsResponse artList(ClothesArt dto, QueryRequest request) {
 
        Map<String, Object> data = getDataTable(clothesTypeService.adminArtList(dto, request));
        return new FebsResponse().success().data(data);
    }
    /**
     * 工艺-新增
     */
    @PostMapping("artAdd")
    @ControllerEndpoint(operation = "新增", exceptionMessage = "操作失败")
    public FebsResponse artAdd(@RequestBody @Valid ClothesArt dto) {
 
        return clothesTypeService.artAdd(dto);
    }
    /**
     * 工艺-更新
     */
    @PostMapping("artUpdate")
    @ControllerEndpoint(operation = "分类-更新", exceptionMessage = "操作失败")
    public FebsResponse artUpdate(@RequestBody @Valid ClothesArt dto) {
 
        return clothesTypeService.artUpdate(dto);
    }
 
    @PostMapping("artSet")
    @ControllerEndpoint(operation = "设置", exceptionMessage = "操作失败")
    public FebsResponse artSet(@RequestBody @Valid AdminClothesTypeInfoDto dto) {
 
        return clothesTypeService.artSet(dto);
    }
 
    @PostMapping("sizeSet")
    @ControllerEndpoint(operation = "设置", exceptionMessage = "操作失败")
    public FebsResponse sizeSet(@RequestBody @Valid AdminClothesTypeInfoDto dto) {
 
        return clothesTypeService.sizeSet(dto);
    }
 
    @PostMapping("clothSet")
    @ControllerEndpoint(operation = "设置", exceptionMessage = "操作失败")
    public FebsResponse clothSet(@RequestBody @Valid AdminClothesTypeInfoDto dto) {
 
        return clothesTypeService.clothSet(dto);
    }
 
    @PostMapping("patternSet")
    @ControllerEndpoint(operation = "设置", exceptionMessage = "操作失败")
    public FebsResponse patternSet(@RequestBody @Valid AdminClothesTypeInfoDto dto) {
 
        return clothesTypeService.patternSet(dto);
    }
 
    @PostMapping("locationSet")
    @ControllerEndpoint(operation = "设置", exceptionMessage = "操作失败")
    public FebsResponse locationSet(@RequestBody @Valid AdminClothesTypeInfoDto dto) {
 
        return clothesTypeService.locationSet(dto);
    }
 
}