|
@@ -22,7 +22,6 @@ import org.jeecg.common.system.query.QueryGenerator;
|
|
|
import org.jeecg.modules.adweb.subscription.entity.SubscribePlan;
|
|
|
import org.jeecg.modules.adweb.subscription.service.ISubscribePlanService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
-import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
@@ -78,7 +77,7 @@ public class SubscribePlanController extends JeecgController<SubscribePlan, ISub
|
|
|
*/
|
|
|
@AutoLog(value = "网站营销方案套餐表-添加")
|
|
|
@Operation(summary = "网站营销方案套餐表-添加")
|
|
|
- @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:add')")
|
|
|
+ // @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:add')")
|
|
|
@PostMapping(value = "/add")
|
|
|
public Result<String> add(@RequestBody SubscribePlan subscribePlan) {
|
|
|
|
|
@@ -109,7 +108,7 @@ public class SubscribePlanController extends JeecgController<SubscribePlan, ISub
|
|
|
*/
|
|
|
@AutoLog(value = "网站营销方案套餐表-编辑")
|
|
|
@Operation(summary = "网站营销方案套餐表-编辑")
|
|
|
- @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:edit')")
|
|
|
+ // @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:edit')")
|
|
|
@RequestMapping(
|
|
|
value = "/edit",
|
|
|
method = {RequestMethod.PUT, RequestMethod.POST})
|
|
@@ -126,7 +125,7 @@ public class SubscribePlanController extends JeecgController<SubscribePlan, ISub
|
|
|
*/
|
|
|
@AutoLog(value = "网站营销方案套餐表-通过id删除")
|
|
|
@Operation(summary = "网站营销方案套餐表-通过id删除")
|
|
|
- @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:delete')")
|
|
|
+ // @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:delete')")
|
|
|
@DeleteMapping(value = "/delete")
|
|
|
public Result<String> delete(@RequestParam(name = "id", required = true) String id) {
|
|
|
subscribePlanService.removeById(id);
|
|
@@ -141,7 +140,7 @@ public class SubscribePlanController extends JeecgController<SubscribePlan, ISub
|
|
|
*/
|
|
|
@AutoLog(value = "网站营销方案套餐表-批量删除")
|
|
|
@Operation(summary = "网站营销方案套餐表-批量删除")
|
|
|
- @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:deleteBatch')")
|
|
|
+ // @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:deleteBatch')")
|
|
|
@DeleteMapping(value = "/deleteBatch")
|
|
|
public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
|
|
|
this.subscribePlanService.removeByIds(Arrays.asList(ids.split(",")));
|
|
@@ -171,7 +170,7 @@ public class SubscribePlanController extends JeecgController<SubscribePlan, ISub
|
|
|
* @param request
|
|
|
* @param subscribePlan
|
|
|
*/
|
|
|
- @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:exportXls')")
|
|
|
+ // @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:exportXls')")
|
|
|
@RequestMapping(value = "/exportXls")
|
|
|
public ModelAndView exportXls(HttpServletRequest request, SubscribePlan subscribePlan) {
|
|
|
return super.exportXls(request, subscribePlan, SubscribePlan.class, "网站营销方案套餐表");
|
|
@@ -184,7 +183,7 @@ public class SubscribePlanController extends JeecgController<SubscribePlan, ISub
|
|
|
* @param response
|
|
|
* @return
|
|
|
*/
|
|
|
- @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:importExcel')")
|
|
|
+ // @PreAuthorize("@jps.requiresPermissions('adweb:subscribe_plan:importExcel')")
|
|
|
@RequestMapping(value = "/importExcel", method = RequestMethod.POST)
|
|
|
public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
|
|
|
return super.importExcel(request, response, SubscribePlan.class);
|