| | |
| | | return clothesService.statureInfo(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "身材数据-详情", notes = "身材数据-详情") |
| | | @ApiOperation(value = "身材数据-保存", notes = "身材数据-保存") |
| | | @PostMapping(value = "/statureUpdate") |
| | | public FebsResponse statureUpdate(@RequestBody @Validated ApiClothesMemberStatureUpdateDto dto) { |
| | | |
| | | return clothesService.statureUpdate(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "身材数据-设置默认", notes = "身材数据-设置默认") |
| | | @PostMapping(value = "/statureUpdateState") |
| | | public FebsResponse statureUpdateState(@RequestBody @Validated ApiClothesMemberStatureUpdateStateDto dto) { |
| | | |
| | | return clothesService.statureUpdateState(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "身材数据-删除", notes = "身材数据-删除") |
| | |
| | | |
| | | return clothesService.statureDel(dto); |
| | | } |
| | | |
| | | @ApiOperation(value = "预览效果-保存至草稿", notes = "预览效果-保存至草稿") |
| | | @ApiResponses({ |
| | | @ApiResponse(code = 200, message = "success", response = ApiMyDraftSaveVo.class) |
| | | }) |
| | | @PostMapping(value = "/draftSave") |
| | | public FebsResponse draftSave(@RequestBody @Validated ApiMyDraftSaveDto dto) { |
| | | |
| | | return clothesService.draftSave(dto); |
| | | } |
| | | } |