| | |
| | | return clothesService.clothList(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "图案列表", notes = "图案列表") |
| | | @ApiOperation(value = "正面图案列表", notes = "图案列表") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiClothesPatternVo.class) |
| | | }) |
| | |
| | | return clothesService.sizeList(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "位置列表", notes = "位置列表") |
| | | @ApiOperation(value = "反面图案列表", notes = "反面图案列表") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiClothesLocationVo.class) |
| | | }) |
| | |
| | | |
| | | return clothesService.draftSave(dto); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "获取草稿角标数量") |
| | | @GetMapping(value = "/findDraftCnt") |
| | | public FebsResponse findDraftCnt() { |
| | | |
| | | return clothesService.findDraftCnt(); |
| | | } |
| | | } |