| | |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.core.web.controller.BaseController; |
| | | import com.ruoyi.common.security.service.TokenService; |
| | | import com.ruoyi.other.api.domain.Share; |
| | | import com.ruoyi.other.enums.ShareAddType; |
| | | import com.ruoyi.other.enums.ShareAuditStatus; |
| | |
| | | public class ShareController extends BaseController { |
| | | @Resource |
| | | private ShareService shareService; |
| | | @Resource |
| | | private TokenService tokenService; |
| | | |
| | | /** |
| | | * 分享列表 |
| | |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "分享页列表", tags = {"小程序-推广中心"}) |
| | | @GetMapping("/recommand/list") |
| | | public R<List<Share>> recommandlist(){ |
| | | Long userid = tokenService.getLoginUserApplet().getUserid(); |
| | | return R.ok(shareService.list(new LambdaQueryWrapper<Share>() |
| | | .eq(Share::getObjectId, userid))); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 分享添加 |
| | | */ |
| | | @ApiOperation(value = "分享添加", tags = {"小程序-个人中心-门店管理-分享添加"}) |
| | | @PostMapping |
| | | public R<Void> add(@RequestBody Share share){ |
| | | share.setAddType(ShareAddType.STORE.getCode()); |
| | | Long userid = tokenService.getLoginUserApplet().getUserid(); |
| | | if (share.getAddType()==1) { |
| | | share.setAuditStatus(ShareAuditStatus.WAIT.getCode()); |
| | | }else if (share.getAddType()==2){ |
| | | share.setAuditStatus(ShareAuditStatus.WAIT.getCode()); |
| | | share.setObjectId(userid.toString()); |
| | | } |
| | | share.setDelFlag(0); |
| | | share.setAppletShare(1); |
| | | shareService.save(share); |