Compare commits
No commits in common. "52ca9b3295969a7ea7b4d722e7e272ffa8ec7d2c" and "3e7a30d786497bc20aa9380789d0721b0cd5764d" have entirely different histories.
52ca9b3295
...
3e7a30d786
|
@ -10,7 +10,6 @@ import com.mcwl.resource.domain.dto.ModelImagePageRes;
|
|||
import com.mcwl.resource.domain.request.RequestModel;
|
||||
import com.mcwl.resource.domain.request.RequestWorkFlow;
|
||||
import com.mcwl.resource.domain.vo.MallProductVo;
|
||||
import com.mcwl.resource.service.ModelImageService;
|
||||
import com.mcwl.resource.service.ModelService;
|
||||
import com.mcwl.system.service.ISysUserService;
|
||||
import com.mcwl.web.controller.common.OssUtil;
|
||||
|
@ -39,9 +38,6 @@ public class MallProductController extends BaseController {
|
|||
@Autowired
|
||||
private ModelService modelService;
|
||||
|
||||
@Autowired
|
||||
private ModelImageService modelImageService;
|
||||
|
||||
|
||||
/***
|
||||
*
|
||||
|
@ -149,31 +145,4 @@ public class MallProductController extends BaseController {
|
|||
return AjaxResult.success(mallProductList);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 我的发布-模型
|
||||
*/
|
||||
@PostMapping("/selectByUserIdModel")
|
||||
public AjaxResult selectByUserIdModel(@RequestBody MallProductVo mallProductVo){
|
||||
|
||||
return AjaxResult.success();
|
||||
}
|
||||
|
||||
/**
|
||||
* 我的发布-工作流
|
||||
*/
|
||||
@PostMapping("/selectByUserIdWorkFlow")
|
||||
public AjaxResult selectByUserIdWorkFlow(@RequestBody MallProductVo mallProductVo){
|
||||
|
||||
return AjaxResult.success();
|
||||
}
|
||||
|
||||
/**
|
||||
* 我的发布-图片
|
||||
*/
|
||||
@PostMapping("/selectByUserIdImage")
|
||||
public TableDataInfo selectByUserIdImage(@RequestBody ModelImagePageRes imagePageRes){
|
||||
|
||||
return modelImageService.listByPage(imagePageRes);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package com.mcwl.web.controller.resource;
|
||||
|
||||
import com.mcwl.common.annotation.RepeatSubmit;
|
||||
import com.mcwl.common.core.domain.AjaxResult;
|
||||
import com.mcwl.resource.domain.ModelComment;
|
||||
import com.mcwl.resource.domain.vo.ModelCommentVo;
|
||||
|
@ -37,7 +36,6 @@ public class ModelCommentController {
|
|||
/**
|
||||
* 模型点赞/取消
|
||||
*/
|
||||
@RepeatSubmit
|
||||
@GetMapping("/modelLike/{modelId}")
|
||||
public AjaxResult like(@PathVariable Long imageId) {
|
||||
modelLikeService.like(imageId);
|
||||
|
@ -57,7 +55,6 @@ public class ModelCommentController {
|
|||
/**
|
||||
* 模型评论点赞/取消
|
||||
*/
|
||||
@RepeatSubmit
|
||||
@GetMapping("/commentLike/{commentId}")
|
||||
public AjaxResult commentLike(@PathVariable Long commentId) {
|
||||
modelCommentLikeService.like(commentId);
|
||||
|
|
|
@ -1,10 +1,8 @@
|
|||
package com.mcwl.web.controller.resource;
|
||||
|
||||
import cn.hutool.core.bean.BeanUtil;
|
||||
import com.mcwl.common.annotation.RepeatSubmit;
|
||||
import com.mcwl.common.core.domain.AjaxResult;
|
||||
import com.mcwl.common.core.domain.entity.SysUser;
|
||||
import com.mcwl.common.core.page.PageDomain;
|
||||
import com.mcwl.common.core.page.TableDataInfo;
|
||||
import com.mcwl.common.utils.SecurityUtils;
|
||||
import com.mcwl.common.utils.oss.OssUtil;
|
||||
|
@ -50,9 +48,8 @@ public class ModelImageController {
|
|||
* 图片列表
|
||||
*/
|
||||
@PostMapping("/list")
|
||||
public TableDataInfo list(@RequestBody PageDomain pageDomain) {
|
||||
ModelImagePageRes imagePageRes = new ModelImagePageRes();
|
||||
BeanUtil.copyProperties(pageDomain, imagePageRes);
|
||||
public TableDataInfo list(@RequestBody ModelImagePageRes imagePageRes) {
|
||||
|
||||
return modelImageService.listByPage(imagePageRes);
|
||||
}
|
||||
|
||||
|
@ -115,7 +112,6 @@ public class ModelImageController {
|
|||
/**
|
||||
* 图片点赞/取消
|
||||
*/
|
||||
@RepeatSubmit
|
||||
@GetMapping("/imageLike/{imageId}")
|
||||
public AjaxResult like(@PathVariable @NotNull(message = "图片id不能为空") Long imageId) {
|
||||
modelImageLikeService.like(imageId);
|
||||
|
@ -135,7 +131,6 @@ public class ModelImageController {
|
|||
/**
|
||||
* 图片评论点赞/取消
|
||||
*/
|
||||
@RepeatSubmit
|
||||
@GetMapping("/commentLike/{commentId}")
|
||||
public AjaxResult commentLike(@PathVariable @NotNull(message = "评论id不能为空") Long commentId) {
|
||||
modelImageCommentLikeService.like(commentId);
|
||||
|
|
Loading…
Reference in New Issue