You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.7 KiB
95 lines
3.7 KiB
package com.macro.mall.controller;
|
|
|
|
import com.macro.mall.common.api.CommonResult;
|
|
import com.macro.mall.dto.SmsFlashPromotionSessionDetail;
|
|
import com.macro.mall.model.SmsFlashPromotionSession;
|
|
import com.macro.mall.service.SmsFlashPromotionSessionService;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 限时购场次管理Controller
|
|
* Created by macro on 2018/11/16.
|
|
*/
|
|
@Controller
|
|
@Api(tags = "SmsFlashPromotionSessionController")
|
|
@Tag(name = "SmsFlashPromotionSessionController", description = "限时购场次管理")
|
|
@RequestMapping("/flashSession")
|
|
public class SmsFlashPromotionSessionController {
|
|
@Autowired
|
|
private SmsFlashPromotionSessionService flashPromotionSessionService;
|
|
|
|
@ApiOperation("添加场次")
|
|
@RequestMapping(value = "/create", method = RequestMethod.POST)
|
|
@ResponseBody
|
|
public CommonResult create(@RequestBody SmsFlashPromotionSession promotionSession) {
|
|
int count = flashPromotionSessionService.create(promotionSession);
|
|
if (count > 0) {
|
|
return CommonResult.success(count);
|
|
}
|
|
return CommonResult.failed();
|
|
}
|
|
|
|
@ApiOperation("修改场次")
|
|
@RequestMapping(value = "/update/{id}", method = RequestMethod.POST)
|
|
@ResponseBody
|
|
public CommonResult update(@PathVariable Long id, @RequestBody SmsFlashPromotionSession promotionSession) {
|
|
int count = flashPromotionSessionService.update(id, promotionSession);
|
|
if (count > 0) {
|
|
return CommonResult.success(count);
|
|
}
|
|
return CommonResult.failed();
|
|
}
|
|
|
|
@ApiOperation("修改启用状态")
|
|
@RequestMapping(value = "/update/status/{id}", method = RequestMethod.POST)
|
|
@ResponseBody
|
|
public CommonResult updateStatus(@PathVariable Long id, Integer status) {
|
|
int count = flashPromotionSessionService.updateStatus(id, status);
|
|
if (count > 0) {
|
|
return CommonResult.success(count);
|
|
}
|
|
return CommonResult.failed();
|
|
}
|
|
|
|
@ApiOperation("删除场次")
|
|
@RequestMapping(value = "/delete/{id}", method = RequestMethod.POST)
|
|
@ResponseBody
|
|
public CommonResult delete(@PathVariable Long id) {
|
|
int count = flashPromotionSessionService.delete(id);
|
|
if (count > 0) {
|
|
return CommonResult.success(count);
|
|
}
|
|
return CommonResult.failed();
|
|
}
|
|
|
|
@ApiOperation("获取场次详情")
|
|
@RequestMapping(value = "/{id}", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
public CommonResult<SmsFlashPromotionSession> getItem(@PathVariable Long id) {
|
|
SmsFlashPromotionSession promotionSession = flashPromotionSessionService.getItem(id);
|
|
return CommonResult.success(promotionSession);
|
|
}
|
|
|
|
@ApiOperation("获取全部场次")
|
|
@RequestMapping(value = "/list", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
public CommonResult<List<SmsFlashPromotionSession>> list() {
|
|
List<SmsFlashPromotionSession> promotionSessionList = flashPromotionSessionService.list();
|
|
return CommonResult.success(promotionSessionList);
|
|
}
|
|
|
|
@ApiOperation("获取全部可选场次及其数量")
|
|
@RequestMapping(value = "/selectList", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
public CommonResult<List<SmsFlashPromotionSessionDetail>> selectList(Long flashPromotionId) {
|
|
List<SmsFlashPromotionSessionDetail> promotionSessionList = flashPromotionSessionService.selectList(flashPromotionId);
|
|
return CommonResult.success(promotionSessionList);
|
|
}
|
|
} |