|
|
|
@ -140,9 +140,7 @@ public class CreatorMiniController extends BaseController { |
|
|
|
@PostMapping(value = "/insertTiktokImg") |
|
|
|
public AjaxResult insertTiktokImg(@Validated @RequestBody @ApiParam("TiktokImg对象") TiktokImgMiniDto dto){ |
|
|
|
log.info("【艺术家小程序】艺术家【{}】新增图片参数为:{}",dto.getCreatorId(),JSON.toJSONString(dto)); |
|
|
|
TiktokImg tiktokImg = dto.extractParam(); |
|
|
|
tiktokImg.setStatus("0"); |
|
|
|
return AjaxResult.success(tiktokImgService.insert(tiktokImg)); |
|
|
|
return AjaxResult.success(tiktokImgService.insert(dto.extractParam())); |
|
|
|
} |
|
|
|
|
|
|
|
//@TokenCheck
|
|
|
|
|