根据定位卡号获取人是否再电子围栏里,shiro权限注释

pull/4/head
dearlin 2024-01-25 16:37:20 +08:00
parent 563a0cbd3a
commit 648d5df8e7
168 changed files with 1758 additions and 1708 deletions

View File

@ -38,7 +38,7 @@ public class AccidentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("accident:add")
// @RequiresPermissions("accident:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "事故管理",instructionsOperate = "事故信息",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class AccidentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("accident:del")
// @RequiresPermissions("accident:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "事故管理",instructionsOperate = "事故信息",instructionsType = "删除")
public Object delete() throws Exception{
@ -79,7 +79,7 @@ public class AccidentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("accident:edit")
// @RequiresPermissions("accident:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "事故管理",instructionsOperate = "事故信息",instructionsType = "修改")
public Object edit() throws Exception{
@ -97,7 +97,7 @@ public class AccidentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("accident:list")
// @RequiresPermissions("accident:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "事故管理",instructionsOperate = "事故信息",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -121,7 +121,7 @@ public class AccidentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("accident:edit")
// @RequiresPermissions("accident:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "事故管理",instructionsOperate = "事故信息",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -140,7 +140,7 @@ public class AccidentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("accident:del")
// @RequiresPermissions("accident:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "事故管理",instructionsOperate = "事故信息",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -165,7 +165,7 @@ public class AccidentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "事故管理",instructionsOperate = "事故信息",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -37,7 +37,7 @@ public class DBAlarmController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("dbalarm:add")
// @RequiresPermissions("dbalarm:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -55,7 +55,7 @@ public class DBAlarmController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("dbalarm:del")
// @RequiresPermissions("dbalarm:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -72,7 +72,7 @@ public class DBAlarmController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("dbalarm:edit")
// @RequiresPermissions("dbalarm:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -89,7 +89,7 @@ public class DBAlarmController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("dbalarm:list")
// @RequiresPermissions("dbalarm:list")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "在线监测",instructionsOperate = "智能预警",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -112,7 +112,7 @@ public class DBAlarmController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("dbalarm:edit")
// @RequiresPermissions("dbalarm:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "在线监测",instructionsOperate = "智能预警",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -131,7 +131,7 @@ public class DBAlarmController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("dbalarm:del")
// @RequiresPermissions("dbalarm:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -155,7 +155,7 @@ public class DBAlarmController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -38,7 +38,7 @@ public class DevNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("devnotice:add")
// @RequiresPermissions("devnotice:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -61,7 +61,7 @@ public class DevNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("devnotice:del")
// @RequiresPermissions("devnotice:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -129,7 +129,7 @@ public class DevNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("devnotice:list")
// @RequiresPermissions("devnotice:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -151,7 +151,7 @@ public class DevNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("devnotice:edit")
// @RequiresPermissions("devnotice:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -199,7 +199,7 @@ public class DevNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("devnotice:del")
// @RequiresPermissions("devnotice:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -223,7 +223,7 @@ public class DevNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -34,7 +34,7 @@ public class DeviceCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("devicecorp:add")
// @RequiresPermissions("devicecorp:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -57,7 +57,7 @@ public class DeviceCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("devicecorp:del")
// @RequiresPermissions("devicecorp:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -74,7 +74,7 @@ public class DeviceCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("devicecorp:edit")
// @RequiresPermissions("devicecorp:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -91,7 +91,7 @@ public class DeviceCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("devicecorp:list")
// @RequiresPermissions("devicecorp:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -113,7 +113,7 @@ public class DeviceCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("devicecorp:edit")
// @RequiresPermissions("devicecorp:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -131,7 +131,7 @@ public class DeviceCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("devicecorp:del")
// @RequiresPermissions("devicecorp:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -155,7 +155,7 @@ public class DeviceCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -1794,7 +1794,7 @@ public class AppHiddenController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/repulseHidden")
//@RequiresPermissions("hidden:edit")
//// @RequiresPermissions("hidden:edit")
@ResponseBody
public Object repulseHidden() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -1847,7 +1847,7 @@ public class AppHiddenController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/isChek")
//@RequiresPermissions("hidden:edit")
//// @RequiresPermissions("hidden:edit")
@ResponseBody
public Object isChek() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();

View File

@ -197,7 +197,7 @@ public class AppSafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/explain")
//@RequiresPermissions("safetyenvironmental:edit")
//// @RequiresPermissions("safetyenvironmental:edit")
@ResponseBody
public Object explain(@RequestParam(value="FFILE",required=false) MultipartFile[] files) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -233,7 +233,7 @@ public class AppSafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("safetyenvironmental:del")
// @RequiresPermissions("safetyenvironmental:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -251,7 +251,7 @@ public class AppSafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("safetyenvironmental:del")
// @RequiresPermissions("safetyenvironmental:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -278,7 +278,7 @@ public class AppSafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -121,7 +121,7 @@ public class AppSafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/delete")
@RequiresPermissions("safetyenvironmentalexplain:del")
// @RequiresPermissions("safetyenvironmentalexplain:del")
@ResponseBody
public Object delete() throws Exception {
Map<String, String> map = new HashMap<String, String>();
@ -142,7 +142,7 @@ public class AppSafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/edit")
@RequiresPermissions("safetyenvironmentalexplain:edit")
// @RequiresPermissions("safetyenvironmentalexplain:edit")
@ResponseBody
public Object edit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -164,7 +164,7 @@ public class AppSafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/goEdit")
@RequiresPermissions("safetyenvironmentalexplain:edit")
// @RequiresPermissions("safetyenvironmentalexplain:edit")
@ResponseBody
public Object goEdit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -184,7 +184,7 @@ public class AppSafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/deleteAll")
@RequiresPermissions("safetyenvironmentalexplain:del")
// @RequiresPermissions("safetyenvironmentalexplain:del")
@ResponseBody
public Object deleteAll() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -213,7 +213,7 @@ public class AppSafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception {
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -105,7 +105,7 @@ public class AppSafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/add")
@RequiresPermissions("safetyenvironmentalinspector:add")
// @RequiresPermissions("safetyenvironmentalinspector:add")
@ResponseBody
public Object add() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -132,7 +132,7 @@ public class AppSafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/delete")
@RequiresPermissions("safetyenvironmentalinspector:del")
// @RequiresPermissions("safetyenvironmentalinspector:del")
@ResponseBody
public Object delete() throws Exception {
Map<String, String> map = new HashMap<String, String>();
@ -153,7 +153,7 @@ public class AppSafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/edit")
@RequiresPermissions("safetyenvironmentalinspector:edit")
// @RequiresPermissions("safetyenvironmentalinspector:edit")
@ResponseBody
public Object edit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -175,7 +175,7 @@ public class AppSafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/goEdit")
@RequiresPermissions("safetyenvironmentalinspector:edit")
// @RequiresPermissions("safetyenvironmentalinspector:edit")
@ResponseBody
public Object goEdit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -195,7 +195,7 @@ public class AppSafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/deleteAll")
@RequiresPermissions("safetyenvironmentalinspector:del")
// @RequiresPermissions("safetyenvironmentalinspector:del")
@ResponseBody
public Object deleteAll() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -224,7 +224,7 @@ public class AppSafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception {
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -35,7 +35,7 @@ public class AppSafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("safetyenvironmentallog:add")
// @RequiresPermissions("safetyenvironmentallog:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -56,7 +56,7 @@ public class AppSafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("safetyenvironmentallog:del")
// @RequiresPermissions("safetyenvironmentallog:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -75,7 +75,7 @@ public class AppSafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("safetyenvironmentallog:edit")
// @RequiresPermissions("safetyenvironmentallog:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -95,7 +95,7 @@ public class AppSafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("safetyenvironmentallog:list")
// @RequiresPermissions("safetyenvironmentallog:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -118,7 +118,7 @@ public class AppSafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("safetyenvironmentallog:edit")
// @RequiresPermissions("safetyenvironmentallog:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -136,7 +136,7 @@ public class AppSafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("safetyenvironmentallog:del")
// @RequiresPermissions("safetyenvironmentallog:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -163,7 +163,7 @@ public class AppSafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -35,7 +35,7 @@ public class AppSafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("safetyenvironmentalsituation:add")
// @RequiresPermissions("safetyenvironmentalsituation:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -60,7 +60,7 @@ public class AppSafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("safetyenvironmentalsituation:del")
// @RequiresPermissions("safetyenvironmentalsituation:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -79,7 +79,7 @@ public class AppSafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("safetyenvironmentalsituation:edit")
// @RequiresPermissions("safetyenvironmentalsituation:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -99,7 +99,7 @@ public class AppSafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("safetyenvironmentalsituation:list")
// @RequiresPermissions("safetyenvironmentalsituation:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -122,7 +122,7 @@ public class AppSafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("safetyenvironmentalsituation:edit")
// @RequiresPermissions("safetyenvironmentalsituation:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -140,7 +140,7 @@ public class AppSafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("safetyenvironmentalsituation:del")
// @RequiresPermissions("safetyenvironmentalsituation:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -167,7 +167,7 @@ public class AppSafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -158,7 +158,7 @@ public class ArchivesCapitalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -157,7 +157,7 @@ public class ArchivesEduManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -157,7 +157,7 @@ public class ArchivesEduPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -93,7 +93,7 @@ public class ArchivesFilesController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("archivesfiles:edit")
// @RequiresPermissions("archivesfiles:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -129,7 +129,7 @@ public class ArchivesFilesController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("archivesfiles:edit")
// @RequiresPermissions("archivesfiles:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -147,7 +147,7 @@ public class ArchivesFilesController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("archivesfiles:del")
// @RequiresPermissions("archivesfiles:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -171,7 +171,7 @@ public class ArchivesFilesController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -156,7 +156,7 @@ public class ArchivesPostManController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -156,7 +156,7 @@ public class ArchivesTeacherController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -106,7 +106,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/add")
// @RequiresPermissions("hidden:add")
// // @RequiresPermissions("hidden:add")
// @ResponseBody
// public Object add() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -399,7 +399,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/edit")
// @RequiresPermissions("hidden:edit")
// // @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object edit() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -775,7 +775,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/list")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object list(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -1018,7 +1018,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/goEdit")
// @RequiresPermissions("hidden:edit")
// // @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object goEdit() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -1211,7 +1211,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/deleteAll")
// @RequiresPermissions("hidden:del")
// // @RequiresPermissions("hidden:del")
// @ResponseBody
// public Object deleteAll() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -1284,7 +1284,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/excel2")
//// @RequiresPermissions("toExcel")
//// // @RequiresPermissions("toExcel")
// public ModelAndView exportExcel2() throws Exception {
// ModelAndView mv = new ModelAndView();
// PageData pd = new PageData();
@ -1383,7 +1383,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/excel")
//// @RequiresPermissions("toExcel")
//// // @RequiresPermissions("toExcel")
// public ModelAndView exportExcel() throws Exception {
// ModelAndView mv = new ModelAndView();
// PageData pd = new PageData();
@ -2017,7 +2017,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/confirmHidden")
// @RequiresPermissions("hidden:edit")
// // @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object confirmHidden() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -2110,7 +2110,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/repulseHidden")
// //@RequiresPermissions("hidden:edit")
// //// @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object repulseHidden() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -2129,7 +2129,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/confirmUpdate")
// @RequiresPermissions("hidden:edit")
// // @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object confirmUpdate(@RequestParam(value = "FFILE", required = false) MultipartFile file,
// @RequestParam(value = "FFILETwo", required = false) MultipartFile fileTwo
@ -2446,7 +2446,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/majorlist")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object majorlist(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -2491,7 +2491,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/verifylist")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object verifylist(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -2666,7 +2666,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/listGwj")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object listGwj(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -2711,7 +2711,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/ignorelist")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object ignore(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -2783,7 +2783,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/listForSafetyEnvironmental")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object listForSafetyEnvironmental(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -2811,7 +2811,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/assign")
// @RequiresPermissions("hidden:add")
// // @RequiresPermissions("hidden:add")
// @ResponseBody
// public Object assign() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -2950,7 +2950,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/getListForTianzhang")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object getListForTianzhang(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -3003,7 +3003,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/goEmis")
// @RequiresPermissions("hidden:edit")
// // @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object goEmis() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -3088,7 +3088,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/getListForemis")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object getListForemis(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -3141,7 +3141,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/isChek")
// //@RequiresPermissions("hidden:edit")
// //// @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object isChek() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -3169,7 +3169,7 @@
// * @return
// */
// @RequestMapping(value = "/getHiddenNames")
// //@RequiresPermissions("hidden:edit")
// //// @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object getHiddenNames() {
// Map<String, Object> map = new HashMap<>();
@ -3391,7 +3391,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/exportexcel")
// //@RequiresPermissions("hidden:edit")
// //// @RequiresPermissions("hidden:edit")
// @ResponseBody
// public Object exportexcel() throws Exception {
// String errInfo = "success";
@ -3756,7 +3756,7 @@
// }
//
// @RequestMapping(value = "/listForAhZp")
// @RequiresPermissions("hidden:list")
// // @RequiresPermissions("hidden:list")
// @ResponseBody
// public Object listFoAhZp(Page page) throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();
@ -3788,7 +3788,7 @@
// * @throws Exception
// */
// @RequestMapping(value = "/addHiddenApi")
// @RequiresPermissions("hidden:add")
// // @RequiresPermissions("hidden:add")
// @ResponseBody
// public Object addHiddenApi() throws Exception {
// Map<String, Object> map = new HashMap<String, Object>();

View File

@ -283,7 +283,7 @@ public class AppCheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/delete")
@RequiresPermissions("checkrecord:del")
// @RequiresPermissions("checkrecord:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "隐患排查",instructionsOperate = "清单检查情况",instructionsType = "删除检查记录")
public Object delete() throws Exception {
@ -303,7 +303,7 @@ public class AppCheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/edit")
@RequiresPermissions("checkrecord:edit")
// @RequiresPermissions("checkrecord:edit")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "隐患排查",instructionsOperate = "清单检查情况",instructionsType = "修改")
public Object edit() throws Exception {
@ -434,7 +434,7 @@ public class AppCheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/deleteAll")
@RequiresPermissions("checkrecord:del")
// @RequiresPermissions("checkrecord:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "隐患排查",instructionsOperate = "清单检查情况",instructionsType = "批量删除")
public Object deleteAll() throws Exception {

View File

@ -38,7 +38,7 @@ public class AppCorpFuncController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("corpfunc:add")
// @RequiresPermissions("corpfunc:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -61,7 +61,7 @@ public class AppCorpFuncController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("corpfunc:del")
// @RequiresPermissions("corpfunc:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -78,7 +78,7 @@ public class AppCorpFuncController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("corpfunc:edit")
// @RequiresPermissions("corpfunc:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -156,7 +156,7 @@ public class AppCorpFuncController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("corpfunc:edit")
// @RequiresPermissions("corpfunc:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -192,7 +192,7 @@ public class AppCorpFuncController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("corpfunc:del")
// @RequiresPermissions("corpfunc:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -76,7 +76,7 @@ public class CheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/add")
@RequiresPermissions("checkrecord:add")
// @RequiresPermissions("checkrecord:add")
@ResponseBody
@Transactional
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单排查",instructionsType = "新增记录")
@ -240,7 +240,7 @@ public class CheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/delete")
@RequiresPermissions("checkrecord:del")
// @RequiresPermissions("checkrecord:del")
@ResponseBody
@Transactional
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单检查情况",instructionsType = "删除检查记录")
@ -262,7 +262,7 @@ public class CheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/edit")
@RequiresPermissions("checkrecord:edit")
// @RequiresPermissions("checkrecord:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单检查情况",instructionsType = "修改")
public Object edit() throws Exception {
@ -299,7 +299,7 @@ public class CheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/list")
@RequiresPermissions("checkrecord:list")
// @RequiresPermissions("checkrecord:list")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单检查情况",instructionsType = "检查记录列表")
public Object list(Page page) throws Exception {
@ -538,7 +538,7 @@ public class CheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/deleteAll")
@RequiresPermissions("checkrecord:del")
// @RequiresPermissions("checkrecord:del")
@ResponseBody
public Object deleteAll() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -1217,7 +1217,7 @@ public class CheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/allList")
@RequiresPermissions("checkrecord:list")
// @RequiresPermissions("checkrecord:list")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "检查记录管理",instructionsType = "检查记录列表")
public Object allList(Page page) throws Exception {
@ -1272,7 +1272,7 @@ public class CheckRecordController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/recording")
@RequiresPermissions("checkrecord:add")
// @RequiresPermissions("checkrecord:add")
@ResponseBody
@Transactional
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单检查情况",instructionsType = "补录")

View File

@ -48,7 +48,7 @@ public class JobEvaluationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/count")
@RequiresPermissions("jobEvaluation:list")
// @RequiresPermissions("jobEvaluation:list")
@ResponseBody
public Object jobEvaluation() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -148,7 +148,7 @@ public class JobEvaluationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/counlistPaget")
@RequiresPermissions("jobEvaluation:list")
// @RequiresPermissions("jobEvaluation:list")
@ResponseBody
@LogAnno(menuType= "双重预控",menuServer= "持续改进",instructionsOperate = "企业报告",instructionsType = "公司人员业绩")
public Object jobEvaluationlistPage(Page page) throws Exception{

View File

@ -66,7 +66,7 @@ public class ListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("listmanager:add")
// @RequiresPermissions("listmanager:add")
@ResponseBody
@Transactional
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "新增")
@ -256,7 +256,7 @@ public class ListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("listmanager:del")
// @RequiresPermissions("listmanager:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "禁用")
public Object delete() throws Exception{
@ -383,7 +383,7 @@ public class ListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/enable")
@RequiresPermissions("listmanager:del")
// @RequiresPermissions("listmanager:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "启用")
public Object enable() throws Exception{
@ -505,7 +505,7 @@ public class ListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("listmanager:edit")
// @RequiresPermissions("listmanager:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -1060,7 +1060,7 @@ public class ListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("listmanager:del")
// @RequiresPermissions("listmanager:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{

View File

@ -63,7 +63,7 @@ public class StopListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("stoplistmanager:add")
// @RequiresPermissions("stoplistmanager:add")
@ResponseBody
@Transactional
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "新增")
@ -245,7 +245,7 @@ public class StopListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("stoplistmanager:del")
// @RequiresPermissions("stoplistmanager:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "禁用")
public Object delete() throws Exception{
@ -371,7 +371,7 @@ public class StopListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/restore")
@RequiresPermissions("stoplistmanager:del")
// @RequiresPermissions("stoplistmanager:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "启用")
public Object restore() throws Exception {
@ -390,7 +390,7 @@ public class StopListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/enable")
@RequiresPermissions("stoplistmanager:del")
// @RequiresPermissions("stoplistmanager:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "启用")
public Object enable() throws Exception{
@ -512,7 +512,7 @@ public class StopListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("stoplistmanager:edit")
// @RequiresPermissions("stoplistmanager:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -992,7 +992,7 @@ public class StopListManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("stoplistmanager:del")
// @RequiresPermissions("stoplistmanager:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{

View File

@ -98,7 +98,7 @@ public class AppCommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("commitmentcompany:del")
// @RequiresPermissions("commitmentcompany:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "公司级承诺",instructionsOperate = "公司级承诺",instructionsType = "删除")
public Object delete() throws Exception{
@ -116,7 +116,7 @@ public class AppCommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("commitmentcompany:edit")
// @RequiresPermissions("commitmentcompany:edit")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "公司级承诺",instructionsOperate = "公司级承诺",instructionsType = "修改")
public Object edit() throws Exception{
@ -174,7 +174,7 @@ public class AppCommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("commitmentcompany:del")
// @RequiresPermissions("commitmentcompany:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "公司级承诺",instructionsOperate = "公司级承诺",instructionsType = "批量删除")
public Object deleteAll() throws Exception{

View File

@ -67,7 +67,7 @@ public class AppCommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
// @RequiresPermissions("commitmentteam:add")
// // @RequiresPermissions("commitmentteam:add")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "班组级承诺",instructionsOperate = "班组级承诺",instructionsType = "新增")
public Object add(@RequestParam(value="FFILE",required=false) MultipartFile[] files) throws Exception{
@ -102,7 +102,7 @@ public class AppCommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
// @RequiresPermissions("commitmentteam:del")
// // @RequiresPermissions("commitmentteam:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "班组级承诺",instructionsOperate = "班组级承诺",instructionsType = "删除")
public Object delete() throws Exception{
@ -122,7 +122,7 @@ public class AppCommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
// @RequiresPermissions("commitmentteam:edit")
// // @RequiresPermissions("commitmentteam:edit")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "班组级承诺",instructionsOperate = "班组级承诺",instructionsType = "修改")
public Object edit() throws Exception{
@ -143,7 +143,7 @@ public class AppCommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
// @RequiresPermissions("commitmentteam:list")
// // @RequiresPermissions("commitmentteam:list")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "班组级承诺",instructionsOperate = "班组级承诺",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -166,7 +166,7 @@ public class AppCommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions("commitmentteam:edit")
// // @RequiresPermissions("commitmentteam:edit")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "班组级承诺",instructionsOperate = "班组级承诺",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -185,7 +185,7 @@ public class AppCommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
// @RequiresPermissions("commitmentteam:del")
// // @RequiresPermissions("commitmentteam:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "班组级承诺",instructionsOperate = "班组级承诺",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -213,7 +213,7 @@ public class AppCommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
// @RequiresPermissions("toExcel")
// // @RequiresPermissions("toExcel")
@LogAnno(menuType= "手机",menuServer= "班组级承诺",instructionsOperate = "班组级承诺",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -91,7 +91,7 @@ public class AppCommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("commitmentworkshop:del")
// @RequiresPermissions("commitmentworkshop:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "车间级承诺",instructionsOperate = "车间级承诺",instructionsType = "删除")
public Object delete() throws Exception{
@ -109,7 +109,7 @@ public class AppCommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("commitmentworkshop:edit")
// @RequiresPermissions("commitmentworkshop:edit")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "车间级承诺",instructionsOperate = "车间级承诺",instructionsType = "修改")
public Object edit() throws Exception{
@ -167,7 +167,7 @@ public class AppCommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("commitmentworkshop:del")
// @RequiresPermissions("commitmentworkshop:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "车间级承诺",instructionsOperate = "车间级承诺",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -192,7 +192,7 @@ public class AppCommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "手机",menuServer= "车间级承诺",instructionsOperate = "车间级承诺",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -41,7 +41,7 @@ public class CommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("commitmentcompany:add")
// @RequiresPermissions("commitmentcompany:add")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "公司级承诺公告",instructionsType = "新增")
public Object add() throws Exception{
@ -60,7 +60,7 @@ public class CommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/replenishSave")
// @RequiresPermissions("commitmentteam:add")
// // @RequiresPermissions("commitmentteam:add")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "公司级承诺公告",instructionsType = "补录")
public Object replenishSave() throws Exception{
@ -97,7 +97,7 @@ public class CommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("commitmentcompany:del")
// @RequiresPermissions("commitmentcompany:del")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "公司级承诺公告",instructionsType = "删除")
public Object delete() throws Exception{
@ -115,7 +115,7 @@ public class CommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("commitmentcompany:edit")
// @RequiresPermissions("commitmentcompany:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "公司级承诺公告",instructionsType = "修改")
public Object edit() throws Exception{
@ -133,7 +133,7 @@ public class CommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("commitmentcompany:list")
// @RequiresPermissions("commitmentcompany:list")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "公司级承诺公告",instructionsType = "列表")
public Object list() throws Exception{
@ -170,7 +170,7 @@ public class CommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("commitmentcompany:del")
// @RequiresPermissions("commitmentcompany:del")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "公司级承诺公告",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -195,7 +195,7 @@ public class CommitmentCompanyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "公司级承诺公告",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -44,7 +44,7 @@ public class CommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
// @RequiresPermissions("commitmentteam:add")
// // @RequiresPermissions("commitmentteam:add")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "班组级承诺公告",instructionsType = "新增")
public Object add(@RequestParam(value="FFILE",required=false) MultipartFile[] files) throws Exception{
@ -82,7 +82,7 @@ public class CommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/replenishSave")
// @RequiresPermissions("commitmentteam:add")
// // @RequiresPermissions("commitmentteam:add")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "班组级承诺公告",instructionsType = "补录")
public Object replenishSave() throws Exception{
@ -119,7 +119,7 @@ public class CommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
// @RequiresPermissions("commitmentteam:del")
// // @RequiresPermissions("commitmentteam:del")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "班组级承诺公告",instructionsType = "删除")
public Object delete() throws Exception{
@ -139,7 +139,7 @@ public class CommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
// @RequiresPermissions("commitmentteam:edit")
// // @RequiresPermissions("commitmentteam:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "班组级承诺公告",instructionsType = "修改")
public Object edit() throws Exception{
@ -160,7 +160,7 @@ public class CommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("commitmentteam:list")
// @RequiresPermissions("commitmentteam:list")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "班组级承诺公告",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -183,7 +183,7 @@ public class CommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("commitmentteam:edit")
// @RequiresPermissions("commitmentteam:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "班组级承诺公告",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -202,7 +202,7 @@ public class CommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
// @RequiresPermissions("commitmentteam:del")
// // @RequiresPermissions("commitmentteam:del")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "班组级承诺公告",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -230,7 +230,7 @@ public class CommitmentTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
// @RequiresPermissions("toExcel")
// // @RequiresPermissions("toExcel")
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "班组级承诺公告",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -42,7 +42,7 @@ public class CommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("commitmentworkshop:add")
// @RequiresPermissions("commitmentworkshop:add")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "车间级承诺公告",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class CommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/replenishSave")
// @RequiresPermissions("commitmentteam:add")
// // @RequiresPermissions("commitmentteam:add")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "车间级承诺公告",instructionsType = "补录")
public Object replenishSave() throws Exception{
@ -98,7 +98,7 @@ public class CommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("commitmentworkshop:del")
// @RequiresPermissions("commitmentworkshop:del")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "车间级承诺公告",instructionsType = "删除")
public Object delete() throws Exception{
@ -116,7 +116,7 @@ public class CommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("commitmentworkshop:edit")
// @RequiresPermissions("commitmentworkshop:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "车间级承诺公告",instructionsType = "修改")
public Object edit() throws Exception{
@ -134,7 +134,7 @@ public class CommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("commitmentworkshop:list")
// @RequiresPermissions("commitmentworkshop:list")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "车间级承诺公告",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -157,7 +157,7 @@ public class CommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("commitmentworkshop:edit")
// @RequiresPermissions("commitmentworkshop:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "车间级承诺公告",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -176,7 +176,7 @@ public class CommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("commitmentworkshop:del")
// @RequiresPermissions("commitmentworkshop:del")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "车间级承诺公告",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -201,7 +201,7 @@ public class CommitmentWorkshopController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "监测预警",menuServer= "安全承诺",instructionsOperate = "车间级承诺公告",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -60,7 +60,7 @@ public class CorpAdviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("corpadvice:del")
// @RequiresPermissions("corpadvice:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -96,7 +96,7 @@ public class CorpAdviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("corpadvice:list")
// @RequiresPermissions("corpadvice:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -136,7 +136,7 @@ public class CorpAdviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("corpadvice:edit")
// @RequiresPermissions("corpadvice:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -154,7 +154,7 @@ public class CorpAdviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("corpadvice:del")
// @RequiresPermissions("corpadvice:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -72,7 +72,7 @@ public class CorpInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("corpinfo:add")
// @RequiresPermissions("corpinfo:add")
@ResponseBody
@Transactional
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "企业信息",instructionsType = "新增")
@ -128,7 +128,7 @@ public class CorpInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("corpinfo:del")
// @RequiresPermissions("corpinfo:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "企业信息",instructionsType = "删除")
public Object delete() throws Exception{
@ -227,7 +227,7 @@ public class CorpInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("corpinfo:list")
// @RequiresPermissions("corpinfo:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -408,7 +408,7 @@ public class CorpInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("corpinfo:del")
// @RequiresPermissions("corpinfo:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "企业信息",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -521,7 +521,7 @@ public class CorpInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/listByCorpType")
@RequiresPermissions("corpinfo:list")
// @RequiresPermissions("corpinfo:list")
@ResponseBody
public Object listByCorpType(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -34,7 +34,7 @@ public class CorpPlsInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("corpplsinfo:add")
// @RequiresPermissions("corpplsinfo:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -52,7 +52,7 @@ public class CorpPlsInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("corpplsinfo:del")
// @RequiresPermissions("corpplsinfo:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -69,7 +69,7 @@ public class CorpPlsInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("corpplsinfo:edit")
// @RequiresPermissions("corpplsinfo:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -86,7 +86,7 @@ public class CorpPlsInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("corpplsinfo:list")
// @RequiresPermissions("corpplsinfo:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -108,7 +108,7 @@ public class CorpPlsInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions("corpplsinfo:edit")
// // @RequiresPermissions("corpplsinfo:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -126,7 +126,7 @@ public class CorpPlsInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("corpplsinfo:del")
// @RequiresPermissions("corpplsinfo:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -41,7 +41,7 @@ public class CorpTypeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("corptype:add")
// @RequiresPermissions("corptype:add")
@ResponseBody
@Transactional
public Object add() throws Exception{
@ -92,7 +92,7 @@ public class CorpTypeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("corptype:del")
// @RequiresPermissions("corptype:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -109,7 +109,7 @@ public class CorpTypeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("corptype:edit")
// @RequiresPermissions("corptype:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -140,7 +140,7 @@ public class CorpTypeController extends BaseController {
// * @throws Exception
// */
// @RequestMapping(value="/list")
// @RequiresPermissions("corptype:list")
// // @RequiresPermissions("corptype:list")
// @ResponseBody
// public Object list() throws Exception{
// Map<String,Object> map = new HashMap<String,Object>();
@ -161,7 +161,7 @@ public class CorpTypeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("corptype:edit")
// @RequiresPermissions("corptype:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -180,7 +180,7 @@ public class CorpTypeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("corptype:del")
// @RequiresPermissions("corptype:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -36,7 +36,7 @@ public class CorpTypeToDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("corptypetodept:add")
// @RequiresPermissions("corptypetodept:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -54,7 +54,7 @@ public class CorpTypeToDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("corptypetodept:del")
// @RequiresPermissions("corptypetodept:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -71,7 +71,7 @@ public class CorpTypeToDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("corptypetodept:edit")
// @RequiresPermissions("corptypetodept:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -88,7 +88,7 @@ public class CorpTypeToDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("corptypetodept:list")
// @RequiresPermissions("corptypetodept:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -110,7 +110,7 @@ public class CorpTypeToDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions("corptypetodept:edit")
// // @RequiresPermissions("corptypetodept:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -128,7 +128,7 @@ public class CorpTypeToDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("corptypetodept:del")
// @RequiresPermissions("corptypetodept:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -151,7 +151,7 @@ public class CorpTypeToDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goLisByCorpTypeId")
// @RequiresPermissions("corptypetodept:edit")
// // @RequiresPermissions("corptypetodept:edit")
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "企业信息",instructionsType = "去修改页面获取数据")
@ResponseBody
public Object goLisByCorpTypeId() throws Exception{

View File

@ -39,7 +39,7 @@ public class QualificationsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("qualifications:add")
// @RequiresPermissions("qualifications:add")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "行业资质",instructionsType = "新增")
public Object add() throws Exception{
@ -65,7 +65,7 @@ public class QualificationsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("qualifications:del")
// @RequiresPermissions("qualifications:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "行业资质",instructionsType = "删除")
public Object delete() throws Exception{
@ -94,7 +94,7 @@ public class QualificationsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("qualifications:edit")
// @RequiresPermissions("qualifications:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "行业资质",instructionsType = "修改")
public Object edit() throws Exception{
@ -115,7 +115,7 @@ public class QualificationsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("qualifications:list")
// @RequiresPermissions("qualifications:list")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "行业资质",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -174,7 +174,7 @@ public class QualificationsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("qualifications:del")
// @RequiresPermissions("qualifications:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "企业管理",instructionsOperate = "行业资质",instructionsType = "批量删除")
public Object deleteAll() throws Exception{

View File

@ -102,7 +102,7 @@ public class AppCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("courseware:add")
// @RequiresPermissions("courseware:add")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "资料课件维护",instructionsOperate = "资料课件维护",instructionsType = "新增")
public Object add(@RequestParam(value="cfile",required=false) MultipartFile cfile,
@ -149,7 +149,7 @@ public class AppCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("courseware:del")
// @RequiresPermissions("courseware:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "资料课件维护",instructionsOperate = "资料课件维护",instructionsType = "删除")
public Object delete() throws Exception{
@ -176,7 +176,7 @@ public class AppCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("courseware:edit")
// @RequiresPermissions("courseware:edit")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "资料课件维护",instructionsOperate = "资料课件维护",instructionsType = "修改")
public Object edit(@RequestParam(value="cfile",required=false) MultipartFile cfile,
@ -276,7 +276,7 @@ public class AppCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("courseware:del")
// @RequiresPermissions("courseware:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "资料课件维护",instructionsOperate = "资料课件维护",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -311,7 +311,7 @@ public class AppCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "手机",menuServer= "资料课件维护",instructionsOperate = "资料课件维护",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -45,7 +45,7 @@ public class DataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("courseware:add")
// @RequiresPermissions("courseware:add")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课件管理",instructionsType = "新增")
public Object add(@RequestParam(value="cfile",required=false) MultipartFile cfile,
@ -96,7 +96,7 @@ public class DataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("courseware:del")
// @RequiresPermissions("courseware:del")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -130,7 +130,7 @@ public class DataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("courseware:edit")
// @RequiresPermissions("courseware:edit")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "修改")
public Object edit(@RequestParam(value="cfile",required=false) MultipartFile cfile,
@ -178,7 +178,7 @@ public class DataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("courseware:list")
// @RequiresPermissions("courseware:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课程管理",instructionsType = "资料课件列表")
public Object list(Page page) throws Exception{
@ -223,7 +223,7 @@ public class DataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("courseware:del")
// @RequiresPermissions("courseware:del")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -258,7 +258,7 @@ public class DataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -345,7 +345,7 @@ public class DataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/editState")
@RequiresPermissions("courseware:edit")
// @RequiresPermissions("courseware:edit")
@ResponseBody
public Object editState() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -42,7 +42,7 @@ public class QuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions( value = {"question:add" , "courseware:add"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:add" , "courseware:add"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课件管理",instructionsType = "课件习题新增")
public Object add() throws Exception{
@ -72,7 +72,7 @@ public class QuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions( value = {"question:del" , "courseware:del"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:del" , "courseware:del"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课件管理",instructionsType = "课件习题删除")
public Object delete() throws Exception{
@ -92,7 +92,7 @@ public class QuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课件管理",instructionsType = "课件习题修改")
public Object edit() throws Exception{
@ -113,7 +113,7 @@ public class QuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions( value = {"question:list" , "courseware:list"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:list" , "courseware:list"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课件管理",instructionsType = "课件习题列表")
public Object list(Page page) throws Exception{
@ -137,7 +137,7 @@ public class QuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -155,7 +155,7 @@ public class QuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions( value = {"question:del" , "courseware:del"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:del" , "courseware:del"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课件管理",instructionsType = "课件习题批量删除")
public Object deleteAll() throws Exception{
@ -183,7 +183,7 @@ public class QuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -294,7 +294,7 @@ public class QuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/readExcel")
// @RequiresPermissions("fromExcel")
// // @RequiresPermissions("fromExcel")
@SuppressWarnings("unchecked")
@ResponseBody
@Transactional

View File

@ -59,7 +59,7 @@ public class VideoCoursewareController extends BaseController {
* @throws Exception
*/
// @RequestMapping(value="/add")
// @RequiresPermissions("courseware:add")
// // @RequiresPermissions("courseware:add")
// @ResponseBody
// public Object add(@RequestParam(value="vfile",required=false) MultipartFile vfile,
// @RequestParam(value="vcfile",required=false) MultipartFile vcfile) throws Exception{
@ -114,7 +114,7 @@ public class VideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("courseware:add")
// @RequiresPermissions("courseware:add")
@ResponseBody
@Transactional
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课件管理",instructionsType = "新增")
@ -181,7 +181,7 @@ public class VideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("courseware:del")
// @RequiresPermissions("courseware:del")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -217,7 +217,7 @@ public class VideoCoursewareController extends BaseController {
// * @throws Exception
// */
// @RequestMapping(value="/edit")
// @RequiresPermissions("courseware:edit")
// // @RequiresPermissions("courseware:edit")
// @ResponseBody
// public Object edit(@RequestParam(value="vfile",required=false) MultipartFile vfile,
// @RequestParam(value="vcfile",required=false) MultipartFile vcfile) throws Exception{
@ -267,7 +267,7 @@ public class VideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("courseware:edit")
// @RequiresPermissions("courseware:edit")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -334,7 +334,7 @@ public class VideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("courseware:list")
// @RequiresPermissions("courseware:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课程管理",instructionsType = "视频课件列表")
public Object list(Page page) throws Exception{
@ -456,7 +456,7 @@ public class VideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("courseware:del")
// @RequiresPermissions("courseware:del")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -491,7 +491,7 @@ public class VideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -559,7 +559,7 @@ public class VideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/editState")
@RequiresPermissions("courseware:edit")
// @RequiresPermissions("courseware:edit")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课件管理",instructionsType = "修改状态")
public Object editState() throws Exception{

View File

@ -143,7 +143,7 @@ public class AppMyCurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("curriculum:add")
// @RequiresPermissions("curriculum:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -168,7 +168,7 @@ public class AppMyCurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("curriculum:del")
// @RequiresPermissions("curriculum:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -187,7 +187,7 @@ public class AppMyCurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("curriculum:edit")
// @RequiresPermissions("curriculum:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -207,7 +207,7 @@ public class AppMyCurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("curriculum:list")
// @RequiresPermissions("curriculum:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -230,7 +230,7 @@ public class AppMyCurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("curriculum:del")
// @RequiresPermissions("curriculum:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -257,7 +257,7 @@ public class AppMyCurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -307,7 +307,7 @@ public class AppMyCurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/listSummary")
// @RequiresPermissions("curriculum:list")
// // @RequiresPermissions("curriculum:list")
@ResponseBody
public Object listSummary(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -58,7 +58,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("curriculum:add")
// @RequiresPermissions("curriculum:add")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课程管理",instructionsType = "新增")
public Object add(@RequestParam(value="FFILE",required=false) MultipartFile FFILE) throws Exception{
@ -121,7 +121,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("curriculum:del")
// @RequiresPermissions("curriculum:del")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课程管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -148,7 +148,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("curriculum:edit")
// @RequiresPermissions("curriculum:edit")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课程管理",instructionsType = "修改")
public Object edit(@RequestParam(value="FFILE",required=false) MultipartFile FFILE) throws Exception{
@ -207,7 +207,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/inherit")
@RequiresPermissions("curriculum:edit")
// @RequiresPermissions("curriculum:edit")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课程管理",instructionsType = "继承")
public Object inherit(@RequestParam(value="FFILE",required=false) MultipartFile FFILE) throws Exception{
@ -270,7 +270,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("curriculum:list")
// @RequiresPermissions("curriculum:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "课程管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -294,7 +294,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions("curriculum:edit")
// // @RequiresPermissions("curriculum:edit")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课程管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -330,7 +330,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("curriculum:del")
// @RequiresPermissions("curriculum:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -357,7 +357,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -407,7 +407,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/findForStudyByCurriculumId")
// @RequiresPermissions("curriculum:edit")
// // @RequiresPermissions("curriculum:edit")
@ResponseBody
public Object findForStudyByCurriculumId() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -426,7 +426,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/pageDataByUser")
// @RequiresPermissions("curriculum:list")
// // @RequiresPermissions("curriculum:list")
@ResponseBody
public Object pageDataByUser(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -450,7 +450,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/listSummary")
// @RequiresPermissions("curriculum:list")
// // @RequiresPermissions("curriculum:list")
@ResponseBody
public Object listSummary(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -472,7 +472,7 @@ public class CurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/listTreeByUserId")
@RequiresPermissions("curriculum:list")
// @RequiresPermissions("curriculum:list")
@ResponseBody
public Object listTree(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -36,7 +36,7 @@ public class KcmiddlekjController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("kcmiddlekj:add")
// @RequiresPermissions("kcmiddlekj:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -61,7 +61,7 @@ public class KcmiddlekjController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("kcmiddlekj:del")
// @RequiresPermissions("kcmiddlekj:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -80,7 +80,7 @@ public class KcmiddlekjController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("kcmiddlekj:edit")
// @RequiresPermissions("kcmiddlekj:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -100,7 +100,7 @@ public class KcmiddlekjController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
// @RequiresPermissions("kcmiddlekj:list")
// // @RequiresPermissions("kcmiddlekj:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "我的任务",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -125,7 +125,7 @@ public class KcmiddlekjController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("kcmiddlekj:edit")
// @RequiresPermissions("kcmiddlekj:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -143,7 +143,7 @@ public class KcmiddlekjController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("kcmiddlekj:del")
// @RequiresPermissions("kcmiddlekj:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -170,7 +170,7 @@ public class KcmiddlekjController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -140,7 +140,7 @@ public class LabelFactoryController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/delete")
@RequiresPermissions("labelfacory:del")
// @RequiresPermissions("labelfacory:del")
@ResponseBody
public Object delete() throws Exception {
Map<String, String> map = new HashMap<String, String>();
@ -159,7 +159,7 @@ public class LabelFactoryController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/edit")
@RequiresPermissions("labelfacory:edit")
// @RequiresPermissions("labelfacory:edit")
@ResponseBody
public Object edit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -197,7 +197,7 @@ public class LabelFactoryController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/deleteAll")
@RequiresPermissions("labelfacory:del")
// @RequiresPermissions("labelfacory:del")
@ResponseBody
public Object deleteAll() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();

View File

@ -41,7 +41,7 @@ public class TextLibraryController extends BaseController {
private CorpInfoService corpInfoService;
@RequestMapping(value = "/init")
@RequiresPermissions("textlibrary:add")
// @RequiresPermissions("textlibrary:add")
@ResponseBody
public Object init(@RequestParam(value = "FILE", required = false) MultipartFile[] FILE) throws Exception {
Map<String, Object> response = new HashMap<>();
@ -52,7 +52,7 @@ public class TextLibraryController extends BaseController {
}
@RequestMapping(value = "/list")
@RequiresPermissions("textlibrary:list")
// @RequiresPermissions("textlibrary:list")
@ResponseBody
public Object list(Page page) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -142,7 +142,7 @@ public class TextLibraryController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/delete")
@RequiresPermissions("textlibrary:del")
// @RequiresPermissions("textlibrary:del")
@ResponseBody
public Object delete() throws Exception {
Map<String, String> map = new HashMap<String, String>();
@ -168,7 +168,7 @@ public class TextLibraryController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/goEdit")
@RequiresPermissions("textlibrary:edit")
// @RequiresPermissions("textlibrary:edit")
@ResponseBody
public Object goEdit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -188,7 +188,7 @@ public class TextLibraryController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/deleteAll")
@RequiresPermissions("textlibrary:del")
// @RequiresPermissions("textlibrary:del")
@ResponseBody
public Object deleteAll() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();

View File

@ -46,7 +46,7 @@ public class PersonObtainEvidenceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("personobtainevidence:add")
// @RequiresPermissions("personobtainevidence:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "人员取证情况",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -79,7 +79,7 @@ public class PersonObtainEvidenceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("personobtainevidence:del")
// @RequiresPermissions("personobtainevidence:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "人员取证情况",instructionsType = "删除")
public Object delete() throws Exception{
@ -99,7 +99,7 @@ public class PersonObtainEvidenceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("personobtainevidence:edit")
// @RequiresPermissions("personobtainevidence:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "人员取证情况",instructionsType = "修改")
public Object edit(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -127,7 +127,7 @@ public class PersonObtainEvidenceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("personobtainevidence:list")
// @RequiresPermissions("personobtainevidence:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "人员取证情况",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -151,7 +151,7 @@ public class PersonObtainEvidenceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("personobtainevidence:edit")
// @RequiresPermissions("personobtainevidence:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "人员取证情况",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -259,7 +259,7 @@ public class PersonObtainEvidenceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("personobtainevidence:del")
// @RequiresPermissions("personobtainevidence:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "人员取证情况",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -284,7 +284,7 @@ public class PersonObtainEvidenceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "人员取证情况",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class TrainingInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("traininginfo:add")
// @RequiresPermissions("traininginfo:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训情况",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -69,7 +69,7 @@ public class TrainingInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("traininginfo:del")
// @RequiresPermissions("traininginfo:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训情况",instructionsType = "删除")
public Object delete() throws Exception{
@ -89,7 +89,7 @@ public class TrainingInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("traininginfo:edit")
// @RequiresPermissions("traininginfo:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训情况",instructionsType = "修改")
public Object edit(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -117,7 +117,7 @@ public class TrainingInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("traininginfo:list")
// @RequiresPermissions("traininginfo:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训情况",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -152,7 +152,7 @@ public class TrainingInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("traininginfo:edit")
// @RequiresPermissions("traininginfo:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训情况",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -171,7 +171,7 @@ public class TrainingInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("traininginfo:del")
// @RequiresPermissions("traininginfo:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训情况",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -196,7 +196,7 @@ public class TrainingInfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训情况",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class TrainingPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("trainingplan:add")
// @RequiresPermissions("trainingplan:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训计划",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -69,7 +69,7 @@ public class TrainingPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("trainingplan:del")
// @RequiresPermissions("trainingplan:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训计划",instructionsType = "删除")
public Object delete() throws Exception{
@ -89,7 +89,7 @@ public class TrainingPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("trainingplan:edit")
// @RequiresPermissions("trainingplan:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训计划",instructionsType = "修改")
public Object edit(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -118,7 +118,7 @@ public class TrainingPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("trainingplan:list")
// @RequiresPermissions("trainingplan:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训计划",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -151,7 +151,7 @@ public class TrainingPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("trainingplan:edit")
// @RequiresPermissions("trainingplan:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训计划",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -170,7 +170,7 @@ public class TrainingPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("trainingplan:del")
// @RequiresPermissions("trainingplan:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训计划",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -195,7 +195,7 @@ public class TrainingPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "教育培训",instructionsOperate = "培训计划",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -37,7 +37,7 @@ public class EmergencyDrillAttachmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencydrillbasic:add")
// @RequiresPermissions("emergencydrillbasic:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -74,7 +74,7 @@ public class EmergencyDrillAttachmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -93,7 +93,7 @@ public class EmergencyDrillAttachmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
public Object edit(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -124,7 +124,7 @@ public class EmergencyDrillAttachmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencydrillbasic:list")
// @RequiresPermissions("emergencydrillbasic:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -147,7 +147,7 @@ public class EmergencyDrillAttachmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -165,7 +165,7 @@ public class EmergencyDrillAttachmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -192,7 +192,7 @@ public class EmergencyDrillAttachmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -257,7 +257,7 @@ public class EmergencyDrillAttachmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEditByBasicId")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "去修改页面获取数据")
public Object goEditByBasicId() throws Exception{

View File

@ -36,7 +36,7 @@ public class EmergencyDrillBasicController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencydrillbasic:add")
// @RequiresPermissions("emergencydrillbasic:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "新增")
public Object add() throws Exception{
@ -62,7 +62,7 @@ public class EmergencyDrillBasicController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -82,7 +82,7 @@ public class EmergencyDrillBasicController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -103,7 +103,7 @@ public class EmergencyDrillBasicController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencydrillbasic:list")
// @RequiresPermissions("emergencydrillbasic:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -127,7 +127,7 @@ public class EmergencyDrillBasicController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -146,7 +146,7 @@ public class EmergencyDrillBasicController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -174,7 +174,7 @@ public class EmergencyDrillBasicController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class EmergencyDrillContentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencydrillbasic:add")
// @RequiresPermissions("emergencydrillbasic:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class EmergencyDrillContentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -81,7 +81,7 @@ public class EmergencyDrillContentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -101,7 +101,7 @@ public class EmergencyDrillContentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencydrillbasic:list")
// @RequiresPermissions("emergencydrillbasic:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -125,7 +125,7 @@ public class EmergencyDrillContentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -144,7 +144,7 @@ public class EmergencyDrillContentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -172,7 +172,7 @@ public class EmergencyDrillContentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class EmergencyDrillOrgController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencydrillbasic:add")
// @RequiresPermissions("emergencydrillbasic:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class EmergencyDrillOrgController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -81,7 +81,7 @@ public class EmergencyDrillOrgController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -101,7 +101,7 @@ public class EmergencyDrillOrgController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencydrillbasic:list")
// @RequiresPermissions("emergencydrillbasic:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -125,7 +125,7 @@ public class EmergencyDrillOrgController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -144,7 +144,7 @@ public class EmergencyDrillOrgController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -172,7 +172,7 @@ public class EmergencyDrillOrgController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class EmergencyDrillOrgMemberController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencydrillbasic:add")
// @RequiresPermissions("emergencydrillbasic:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class EmergencyDrillOrgMemberController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -81,7 +81,7 @@ public class EmergencyDrillOrgMemberController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -101,7 +101,7 @@ public class EmergencyDrillOrgMemberController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencydrillbasic:list")
// @RequiresPermissions("emergencydrillbasic:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -125,7 +125,7 @@ public class EmergencyDrillOrgMemberController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -144,7 +144,7 @@ public class EmergencyDrillOrgMemberController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -172,7 +172,7 @@ public class EmergencyDrillOrgMemberController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -37,7 +37,7 @@ public class EmergencyDrillReportController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencydrillbasic:add")
// @RequiresPermissions("emergencydrillbasic:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -74,7 +74,7 @@ public class EmergencyDrillReportController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -93,7 +93,7 @@ public class EmergencyDrillReportController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
public Object edit(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -124,7 +124,7 @@ public class EmergencyDrillReportController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencydrillbasic:list")
// @RequiresPermissions("emergencydrillbasic:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -147,7 +147,7 @@ public class EmergencyDrillReportController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -165,7 +165,7 @@ public class EmergencyDrillReportController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -192,7 +192,7 @@ public class EmergencyDrillReportController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -259,7 +259,7 @@ public class EmergencyDrillReportController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEditByBasicId")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "去修改页面获取数据")
public Object goEditByBasicId() throws Exception{

View File

@ -36,7 +36,7 @@ public class EmergencyDrillSceneController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencydrillbasic:add")
// @RequiresPermissions("emergencydrillbasic:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class EmergencyDrillSceneController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -81,7 +81,7 @@ public class EmergencyDrillSceneController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -101,7 +101,7 @@ public class EmergencyDrillSceneController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencydrillbasic:list")
// @RequiresPermissions("emergencydrillbasic:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -125,7 +125,7 @@ public class EmergencyDrillSceneController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencydrillbasic:edit")
// @RequiresPermissions("emergencydrillbasic:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -144,7 +144,7 @@ public class EmergencyDrillSceneController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencydrillbasic:del")
// @RequiresPermissions("emergencydrillbasic:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -172,7 +172,7 @@ public class EmergencyDrillSceneController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急演练管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class EmergencyEquipmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencyequipment:add")
// @RequiresPermissions("emergencyequipment:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急装备管理",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class EmergencyEquipmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencyequipment:del")
// @RequiresPermissions("emergencyequipment:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急装备管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -81,7 +81,7 @@ public class EmergencyEquipmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencyequipment:edit")
// @RequiresPermissions("emergencyequipment:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急装备管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -101,7 +101,7 @@ public class EmergencyEquipmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencyequipment:list")
// @RequiresPermissions("emergencyequipment:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急装备管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -125,7 +125,7 @@ public class EmergencyEquipmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencyequipment:edit")
// @RequiresPermissions("emergencyequipment:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急装备管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -144,7 +144,7 @@ public class EmergencyEquipmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencyequipment:del")
// @RequiresPermissions("emergencyequipment:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急装备管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -172,7 +172,7 @@ public class EmergencyEquipmentController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急装备管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -37,7 +37,7 @@ public class EmergencyPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencyplan:add")
// @RequiresPermissions("emergencyplan:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急预案管理",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -73,7 +73,7 @@ public class EmergencyPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencyplan:del")
// @RequiresPermissions("emergencyplan:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急预案管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -93,7 +93,7 @@ public class EmergencyPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencyplan:edit")
// @RequiresPermissions("emergencyplan:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急预案管理",instructionsType = "修改")
public Object edit(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -124,7 +124,7 @@ public class EmergencyPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencyplan:list")
// @RequiresPermissions("emergencyplan:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急预案管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -148,7 +148,7 @@ public class EmergencyPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencyplan:edit")
// @RequiresPermissions("emergencyplan:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急预案管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -167,7 +167,7 @@ public class EmergencyPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencyplan:del")
// @RequiresPermissions("emergencyplan:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急预案管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -195,7 +195,7 @@ public class EmergencyPlanController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急预案管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class EmergencyTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("emergencyteam:add")
// @RequiresPermissions("emergencyteam:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急救援队伍管理",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class EmergencyTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("emergencyteam:del")
// @RequiresPermissions("emergencyteam:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急救援队伍管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -81,7 +81,7 @@ public class EmergencyTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("emergencyteam:edit")
// @RequiresPermissions("emergencyteam:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急救援队伍管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -101,7 +101,7 @@ public class EmergencyTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("emergencyteam:list")
// @RequiresPermissions("emergencyteam:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急救援队伍管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -125,7 +125,7 @@ public class EmergencyTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("emergencyteam:edit")
// @RequiresPermissions("emergencyteam:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急救援队伍管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -144,7 +144,7 @@ public class EmergencyTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("emergencyteam:del")
// @RequiresPermissions("emergencyteam:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急救援队伍管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -172,7 +172,7 @@ public class EmergencyTeamController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "应急资源管理",instructionsOperate = "应急救援队伍管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -39,7 +39,7 @@ public class MfolderController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("mfolder:add")
// @RequiresPermissions("mfolder:add")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "体系运行",instructionsOperate = "体系文件",instructionsType = "创建目录")
public Object add() throws Exception{
@ -65,7 +65,7 @@ public class MfolderController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/upload")
@RequiresPermissions("mfolder:add")
// @RequiresPermissions("mfolder:add")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "体系运行",instructionsOperate = "体系文件",instructionsType = "上传文件")
public Object add(
@ -111,7 +111,7 @@ public class MfolderController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/batchUpload")
@RequiresPermissions("mfolder:add")
// @RequiresPermissions("mfolder:add")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "体系运行",instructionsOperate = "体系文件",instructionsType = "批量上传文件")
public Object batchUpload(@RequestParam(value = "FFILE", required = false) MultipartFile[] files,
@ -206,7 +206,7 @@ public class MfolderController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("mfolder:del")
// @RequiresPermissions("mfolder:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "体系运行",instructionsOperate = "体系文件",instructionsType = "删除")
public Object delete(@RequestParam String MFOLDER_ID, @RequestParam String FILEPATH) throws Exception{
@ -231,7 +231,7 @@ public class MfolderController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("mfolder:edit")
// @RequiresPermissions("mfolder:edit")
@ResponseBody
// @LogAnno(menuType= "双重预防",menuServer= "体系运行",instructionsOperate = "体系文件",instructionsType = "修改")
public Object edit() throws Exception{
@ -375,7 +375,7 @@ public class MfolderController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/makeAll")
@RequiresPermissions("mfolder:edit")
// @RequiresPermissions("mfolder:edit")
@ResponseBody
// @LogAnno(menuType= "双重预防",menuServer= "体系运行",instructionsOperate = "体系文件",instructionsType = "批量操作")
public Object deleteAll() throws Exception{

View File

@ -36,7 +36,7 @@ public class HealthRecordsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("healthrecords:add")
// @RequiresPermissions("healthrecords:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业卫生档案",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class HealthRecordsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("healthrecords:del")
// @RequiresPermissions("healthrecords:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业卫生档案",instructionsType = "删除")
public Object delete() throws Exception{
@ -79,7 +79,7 @@ public class HealthRecordsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("healthrecords:edit")
// @RequiresPermissions("healthrecords:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业卫生档案",instructionsType = "修改")
public Object edit() throws Exception{
@ -97,7 +97,7 @@ public class HealthRecordsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("healthrecords:list")
// @RequiresPermissions("healthrecords:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业卫生档案",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -131,7 +131,7 @@ public class HealthRecordsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("healthrecords:edit")
// @RequiresPermissions("healthrecords:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业卫生档案",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -150,7 +150,7 @@ public class HealthRecordsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("healthrecords:del")
// @RequiresPermissions("healthrecords:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业卫生档案",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -175,7 +175,7 @@ public class HealthRecordsController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
// @RequiresPermissions("toExcel")
// // @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业卫生档案",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class HealthTrainingController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("healthtraining:add")
// @RequiresPermissions("healthtraining:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业健康培训",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class HealthTrainingController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("healthtraining:del")
// @RequiresPermissions("healthtraining:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业健康培训",instructionsType = "删除")
public Object delete() throws Exception{
@ -79,7 +79,7 @@ public class HealthTrainingController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("healthtraining:edit")
// @RequiresPermissions("healthtraining:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业健康培训",instructionsType = "修改")
public Object edit() throws Exception{
@ -97,7 +97,7 @@ public class HealthTrainingController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("healthtraining:list")
// @RequiresPermissions("healthtraining:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业健康培训",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -131,7 +131,7 @@ public class HealthTrainingController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("healthtraining:edit")
// @RequiresPermissions("healthtraining:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业健康培训",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -150,7 +150,7 @@ public class HealthTrainingController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("healthtraining:del")
// @RequiresPermissions("healthtraining:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业健康培训",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -175,7 +175,7 @@ public class HealthTrainingController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
// @RequiresPermissions("toExcel")
// // @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业健康培训",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class OccupationalHazardController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("occupationalhazard:add")
// @RequiresPermissions("occupationalhazard:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业病危害因素",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class OccupationalHazardController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("occupationalhazard:del")
// @RequiresPermissions("occupationalhazard:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业病危害因素",instructionsType = "删除")
public Object delete() throws Exception{
@ -79,7 +79,7 @@ public class OccupationalHazardController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("occupationalhazard:edit")
// @RequiresPermissions("occupationalhazard:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业病危害因素",instructionsType = "修改")
public Object edit() throws Exception{
@ -97,7 +97,7 @@ public class OccupationalHazardController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("occupationalhazard:list")
// @RequiresPermissions("occupationalhazard:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业病危害因素",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -121,7 +121,7 @@ public class OccupationalHazardController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("occupationalhazard:edit")
// @RequiresPermissions("occupationalhazard:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业病危害因素",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -140,7 +140,7 @@ public class OccupationalHazardController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("occupationalhazard:del")
// @RequiresPermissions("occupationalhazard:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业病危害因素",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -165,7 +165,7 @@ public class OccupationalHazardController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
// @RequiresPermissions("toExcel")
// // @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "职业病危害因素",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class OccupationalHealthController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("occupationalhealth:add")
// @RequiresPermissions("occupationalhealth:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "企业职业健康",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class OccupationalHealthController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("occupationalhealth:del")
// @RequiresPermissions("occupationalhealth:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "企业职业健康",instructionsType = "删除")
public Object delete() throws Exception{
@ -79,7 +79,7 @@ public class OccupationalHealthController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("occupationalhealth:edit")
// @RequiresPermissions("occupationalhealth:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "企业职业健康",instructionsType = "修改")
public Object edit() throws Exception{
@ -97,7 +97,7 @@ public class OccupationalHealthController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("occupationalhealth:list")
// @RequiresPermissions("occupationalhealth:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "企业职业健康",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -121,7 +121,7 @@ public class OccupationalHealthController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("occupationalhealth:edit")
// @RequiresPermissions("occupationalhealth:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "企业职业健康",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -140,7 +140,7 @@ public class OccupationalHealthController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("occupationalhealth:del")
// @RequiresPermissions("occupationalhealth:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "企业职业健康",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -165,7 +165,7 @@ public class OccupationalHealthController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
// @RequiresPermissions("toExcel")
// // @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "职业健康管理",instructionsOperate = "企业职业健康",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -84,7 +84,7 @@ public class HiddenController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/add")
@RequiresPermissions("hidden:add")
// @RequiresPermissions("hidden:add")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单排查",instructionsType = "新增")
public Object add() throws Exception {
@ -156,7 +156,7 @@ public class HiddenController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/listForSafetyEnvironmental")
@RequiresPermissions("hidden:list")
// @RequiresPermissions("hidden:list")
@ResponseBody
public Object listForSafetyEnvironmental(Page page) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -264,7 +264,7 @@ public class HiddenController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/edit")
@RequiresPermissions("hidden:edit")
// @RequiresPermissions("hidden:edit")
@ResponseBody
public Object edit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -634,7 +634,7 @@ public class HiddenController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/list")
@RequiresPermissions("hidden:list")
// @RequiresPermissions("hidden:list")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患治理",instructionsOperate = "隐患整改",instructionsType = "列表")
public Object list(Page page) throws Exception {
@ -903,7 +903,7 @@ public class HiddenController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/goEdit")
@RequiresPermissions("hidden:edit")
// @RequiresPermissions("hidden:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "隐患排查",instructionsOperate = "清单检查记录",instructionsType = "查看隐患信息")
public Object goEdit() throws Exception {
@ -1092,7 +1092,7 @@ public class HiddenController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/deleteAll")
@RequiresPermissions("hidden:del")
// @RequiresPermissions("hidden:del")
@ResponseBody
public Object deleteAll() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();

View File

@ -34,7 +34,7 @@ public class DictionaryController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("dictionaries:list")
// @RequiresPermissions("dictionaries:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -64,7 +64,7 @@ public class SafetyEnvironmentalAssessController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("safetyenvironmentalassess:del")
// @RequiresPermissions("safetyenvironmentalassess:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -83,7 +83,7 @@ public class SafetyEnvironmentalAssessController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("safetyenvironmentalassess:edit")
// @RequiresPermissions("safetyenvironmentalassess:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -103,7 +103,7 @@ public class SafetyEnvironmentalAssessController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("safetyenvironmentalassess:list")
// @RequiresPermissions("safetyenvironmentalassess:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -126,7 +126,7 @@ public class SafetyEnvironmentalAssessController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("safetyenvironmentalassess:edit")
// @RequiresPermissions("safetyenvironmentalassess:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -144,7 +144,7 @@ public class SafetyEnvironmentalAssessController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("safetyenvironmentalassess:del")
// @RequiresPermissions("safetyenvironmentalassess:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -171,7 +171,7 @@ public class SafetyEnvironmentalAssessController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -200,7 +200,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/list")
@RequiresPermissions("safetyenvironmental:list")
// @RequiresPermissions("safetyenvironmental:list")
@ResponseBody
public Object list(Page page) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -241,7 +241,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/pleadList")
@RequiresPermissions("safetyenvironmental:list")
// @RequiresPermissions("safetyenvironmental:list")
@ResponseBody
public Object pleadList(Page page) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -270,7 +270,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/add")
@RequiresPermissions("safetyenvironmental:add")
// @RequiresPermissions("safetyenvironmental:add")
@ResponseBody
public Object add() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -334,7 +334,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/goEdit")
@RequiresPermissions("safetyenvironmental:edit")
// @RequiresPermissions("safetyenvironmental:edit")
@ResponseBody
public Object goEdit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -355,7 +355,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/edit")
@RequiresPermissions("safetyenvironmental:edit")
// @RequiresPermissions("safetyenvironmental:edit")
@ResponseBody
public Object edit() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -395,7 +395,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/explain")
@RequiresPermissions("safetyenvironmental:edit")
// @RequiresPermissions("safetyenvironmental:edit")
@ResponseBody
public Object explain() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -435,7 +435,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/delete")
@RequiresPermissions("safetyenvironmental:del")
// @RequiresPermissions("safetyenvironmental:del")
@ResponseBody
public Object delete() throws Exception {
Map<String, String> map = new HashMap<String, String>();
@ -454,7 +454,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/hide")
@RequiresPermissions("safetyenvironmental:del")
// @RequiresPermissions("safetyenvironmental:del")
@ResponseBody
public Object hide() throws Exception {
Map<String, String> map = new HashMap<String, String>();
@ -475,7 +475,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/deleteAll")
@RequiresPermissions("safetyenvironmental:del")
// @RequiresPermissions("safetyenvironmental:del")
@ResponseBody
public Object deleteAll() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
@ -504,7 +504,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception {
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -720,7 +720,7 @@ public class SafetyEnvironmentalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value = "/checkList")
@RequiresPermissions("safetyenvironmental:list")
// @RequiresPermissions("safetyenvironmental:list")
@ResponseBody
public Object checkList(Page page) throws Exception {
Map<String, Object> map = new HashMap<String, Object>();

View File

@ -50,7 +50,7 @@ public class SafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("safetyenvironmentalexplain:list")
// @RequiresPermissions("safetyenvironmentalexplain:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -98,7 +98,7 @@ public class SafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("safetyenvironmentalexplain:add")
// @RequiresPermissions("safetyenvironmentalexplain:add")
@ResponseBody
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -158,7 +158,7 @@ public class SafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("safetyenvironmentalexplain:del")
// @RequiresPermissions("safetyenvironmentalexplain:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -177,7 +177,7 @@ public class SafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("safetyenvironmentalexplain:edit")
// @RequiresPermissions("safetyenvironmentalexplain:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -197,7 +197,7 @@ public class SafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("safetyenvironmentalexplain:edit")
// @RequiresPermissions("safetyenvironmentalexplain:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -215,7 +215,7 @@ public class SafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("safetyenvironmentalexplain:del")
// @RequiresPermissions("safetyenvironmentalexplain:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -242,7 +242,7 @@ public class SafetyEnvironmentalExplainController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -45,7 +45,7 @@ public class SafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("safetyenvironmentalinspector:list")
// @RequiresPermissions("safetyenvironmentalinspector:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -93,7 +93,7 @@ public class SafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/verify")
@RequiresPermissions("safetyenvironmentalinspector:add")
// @RequiresPermissions("safetyenvironmentalinspector:add")
@ResponseBody
public Object verify() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -144,7 +144,7 @@ public class SafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("safetyenvironmentalinspector:add")
// @RequiresPermissions("safetyenvironmentalinspector:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -169,7 +169,7 @@ public class SafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("safetyenvironmentalinspector:del")
// @RequiresPermissions("safetyenvironmentalinspector:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -188,7 +188,7 @@ public class SafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("safetyenvironmentalinspector:edit")
// @RequiresPermissions("safetyenvironmentalinspector:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -208,7 +208,7 @@ public class SafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("safetyenvironmentalinspector:edit")
// @RequiresPermissions("safetyenvironmentalinspector:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -226,7 +226,7 @@ public class SafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("safetyenvironmentalinspector:del")
// @RequiresPermissions("safetyenvironmentalinspector:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -253,7 +253,7 @@ public class SafetyEnvironmentalInspectorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -35,7 +35,7 @@ public class SafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("safetyenvironmentallog:add")
// @RequiresPermissions("safetyenvironmentallog:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -56,7 +56,7 @@ public class SafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("safetyenvironmentallog:del")
// @RequiresPermissions("safetyenvironmentallog:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -75,7 +75,7 @@ public class SafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("safetyenvironmentallog:edit")
// @RequiresPermissions("safetyenvironmentallog:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -95,7 +95,7 @@ public class SafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("safetyenvironmentallog:list")
// @RequiresPermissions("safetyenvironmentallog:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -118,7 +118,7 @@ public class SafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("safetyenvironmentallog:edit")
// @RequiresPermissions("safetyenvironmentallog:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -136,7 +136,7 @@ public class SafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("safetyenvironmentallog:del")
// @RequiresPermissions("safetyenvironmentallog:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -163,7 +163,7 @@ public class SafetyEnvironmentalLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -35,7 +35,7 @@ public class SafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("safetyenvironmentalsituation:add")
// @RequiresPermissions("safetyenvironmentalsituation:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -60,7 +60,7 @@ public class SafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("safetyenvironmentalsituation:del")
// @RequiresPermissions("safetyenvironmentalsituation:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -79,7 +79,7 @@ public class SafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("safetyenvironmentalsituation:edit")
// @RequiresPermissions("safetyenvironmentalsituation:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -99,7 +99,7 @@ public class SafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("safetyenvironmentalsituation:list")
// @RequiresPermissions("safetyenvironmentalsituation:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -122,7 +122,7 @@ public class SafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("safetyenvironmentalsituation:edit")
// @RequiresPermissions("safetyenvironmentalsituation:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -140,7 +140,7 @@ public class SafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("safetyenvironmentalsituation:del")
// @RequiresPermissions("safetyenvironmentalsituation:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -167,7 +167,7 @@ public class SafetyEnvironmentalSituationController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -38,7 +38,7 @@ public class BillingManageController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("billingmanage:add")
// @RequiresPermissions("billingmanage:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "开票管理",instructionsType = "新增")
public Object add() throws Exception{
@ -61,7 +61,7 @@ public class BillingManageController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("billingmanage:del")
// @RequiresPermissions("billingmanage:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "开票管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -79,7 +79,7 @@ public class BillingManageController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("billingmanage:edit")
// @RequiresPermissions("billingmanage:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "开票管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -113,7 +113,7 @@ public class BillingManageController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("billingmanage:list")
// @RequiresPermissions("billingmanage:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "开票管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -144,7 +144,7 @@ public class BillingManageController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("billingmanage:edit")
// @RequiresPermissions("billingmanage:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "开票管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -163,7 +163,7 @@ public class BillingManageController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("billingmanage:del")
// @RequiresPermissions("billingmanage:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "开票管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -188,7 +188,7 @@ public class BillingManageController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "开票管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -36,7 +36,7 @@ public class InvoiceManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("invoicemanager:add")
// @RequiresPermissions("invoicemanager:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "发票管理",instructionsType = "新增")
public Object add() throws Exception{
@ -59,7 +59,7 @@ public class InvoiceManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("invoicemanager:del")
// @RequiresPermissions("invoicemanager:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "发票管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -77,7 +77,7 @@ public class InvoiceManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("invoicemanager:edit")
// @RequiresPermissions("invoicemanager:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "发票管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -95,7 +95,7 @@ public class InvoiceManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("invoicemanager:list")
// @RequiresPermissions("invoicemanager:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "发票管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -119,7 +119,7 @@ public class InvoiceManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("invoicemanager:edit")
// @RequiresPermissions("invoicemanager:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "发票管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -157,7 +157,7 @@ public class InvoiceManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("invoicemanager:del")
// @RequiresPermissions("invoicemanager:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "发票管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -182,7 +182,7 @@ public class InvoiceManagerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "发票管理",instructionsOperate = "发票管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -44,7 +44,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("majordangersource:add")
// @RequiresPermissions("majordangersource:add")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -78,7 +78,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("majordangersource:del")
// @RequiresPermissions("majordangersource:del")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -98,7 +98,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("majordangersource:edit")
// @RequiresPermissions("majordangersource:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "修改")
public Object edit(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -131,7 +131,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/enable")
@RequiresPermissions("majordangersource:edit")
// @RequiresPermissions("majordangersource:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "启用")
public Object enable() throws Exception{
@ -181,7 +181,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("majordangersource:list")
// @RequiresPermissions("majordangersource:list")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -205,7 +205,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("majordangersource:edit")
// @RequiresPermissions("majordangersource:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -224,7 +224,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("majordangersource:del")
// @RequiresPermissions("majordangersource:del")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -257,7 +257,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
@ -348,7 +348,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/findRealTimeMonitoringListAll")
@RequiresPermissions("majordangersource:list")
// @RequiresPermissions("majordangersource:list")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "实时监控获取所有的重大危险源列表")
public Object findRealTimeMonitoringListAll() throws Exception{
@ -369,7 +369,7 @@ public class MajorDangerSourceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/findRealtimeInfo")
@RequiresPermissions("majordangersource:edit")
// @RequiresPermissions("majordangersource:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "获取重大危险源信息及实时监测数据展示")
public Object findRealtimeInfo() throws Exception{

View File

@ -35,7 +35,7 @@ public class MajorDangerSourceLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("majordangersource:add")
// @RequiresPermissions("majordangersource:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -59,7 +59,7 @@ public class MajorDangerSourceLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("majordangersource:del")
// @RequiresPermissions("majordangersource:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -78,7 +78,7 @@ public class MajorDangerSourceLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("majordangersource:edit")
// @RequiresPermissions("majordangersource:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -97,7 +97,7 @@ public class MajorDangerSourceLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("majordangersource:list")
// @RequiresPermissions("majordangersource:list")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -121,7 +121,7 @@ public class MajorDangerSourceLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("majordangersource:edit")
// @RequiresPermissions("majordangersource:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -139,7 +139,7 @@ public class MajorDangerSourceLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goCompare")
@RequiresPermissions("majordangersource:edit")
// @RequiresPermissions("majordangersource:edit")
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "最大危险源管理",instructionsType = "去变更页面获取数据")
public Object goCompare(Page page) throws Exception{
@ -162,7 +162,7 @@ public class MajorDangerSourceLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("majordangersource:del")
// @RequiresPermissions("majordangersource:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -194,7 +194,7 @@ public class MajorDangerSourceLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -193,7 +193,7 @@ public class MajordangersourceDisposalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("majordangersourcedisposal:del")
// @RequiresPermissions("majordangersourcedisposal:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -212,7 +212,7 @@ public class MajordangersourceDisposalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("majordangersourcedisposal:del")
// @RequiresPermissions("majordangersourcedisposal:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -239,7 +239,7 @@ public class MajordangersourceDisposalController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -36,7 +36,7 @@ public class MajordangersourceStoragetankController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("majordangersourcestoragetank:add")
// @RequiresPermissions("majordangersourcestoragetank:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -55,7 +55,7 @@ public class MajordangersourceStoragetankController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("majordangersourcestoragetank:del")
// @RequiresPermissions("majordangersourcestoragetank:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -74,7 +74,7 @@ public class MajordangersourceStoragetankController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("majordangersourcestoragetank:edit")
// @RequiresPermissions("majordangersourcestoragetank:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -94,7 +94,7 @@ public class MajordangersourceStoragetankController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("majordangersourcestoragetank:list")
// @RequiresPermissions("majordangersourcestoragetank:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -135,7 +135,7 @@ public class MajordangersourceStoragetankController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("majordangersourcestoragetank:del")
// @RequiresPermissions("majordangersourcestoragetank:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -162,7 +162,7 @@ public class MajordangersourceStoragetankController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -36,7 +36,7 @@ public class MajordangersourceStoragetankLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("majordangersourcestoragetank:add")
// @RequiresPermissions("majordangersourcestoragetank:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -56,7 +56,7 @@ public class MajordangersourceStoragetankLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("majordangersourcestoragetank:del")
// @RequiresPermissions("majordangersourcestoragetank:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -75,7 +75,7 @@ public class MajordangersourceStoragetankLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("majordangersourcestoragetank:edit")
// @RequiresPermissions("majordangersourcestoragetank:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -118,7 +118,7 @@ public class MajordangersourceStoragetankLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("majordangersourcestoragetank:edit")
// @RequiresPermissions("majordangersourcestoragetank:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -136,7 +136,7 @@ public class MajordangersourceStoragetankLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("majordangersourcestoragetank:del")
// @RequiresPermissions("majordangersourcestoragetank:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -163,7 +163,7 @@ public class MajordangersourceStoragetankLogController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -39,7 +39,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("monitoringdevice:add")
// @RequiresPermissions("monitoringdevice:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -64,7 +64,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("monitoringdevice:del")
// @RequiresPermissions("monitoringdevice:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -83,7 +83,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("monitoringdevice:edit")
// @RequiresPermissions("monitoringdevice:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -103,7 +103,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/enable")
@RequiresPermissions("monitoringdevice:edit")
// @RequiresPermissions("monitoringdevice:edit")
@ResponseBody
public Object enable() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -127,7 +127,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("monitoringdevice:list")
// @RequiresPermissions("monitoringdevice:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -150,7 +150,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("monitoringdevice:edit")
// @RequiresPermissions("monitoringdevice:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -169,7 +169,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goShow")
@RequiresPermissions("monitoringdevice:edit")
// @RequiresPermissions("monitoringdevice:edit")
@ResponseBody
public Object goShow() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -188,7 +188,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("monitoringdevice:del")
// @RequiresPermissions("monitoringdevice:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -215,7 +215,7 @@ public class MonitoringDeviceController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -45,7 +45,7 @@ public class MonitoringDeviceDisableController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("monitoringdevice:add")
// @RequiresPermissions("monitoringdevice:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -89,7 +89,7 @@ public class MonitoringDeviceDisableController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("monitoringdevice:del")
// @RequiresPermissions("monitoringdevice:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -108,7 +108,7 @@ public class MonitoringDeviceDisableController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("monitoringdevice:edit")
// @RequiresPermissions("monitoringdevice:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -128,7 +128,7 @@ public class MonitoringDeviceDisableController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("monitoringdevice:list")
// @RequiresPermissions("monitoringdevice:list")
@ResponseBody
public Object list(Page page) throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -151,7 +151,7 @@ public class MonitoringDeviceDisableController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("monitoringdevice:edit")
// @RequiresPermissions("monitoringdevice:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -169,7 +169,7 @@ public class MonitoringDeviceDisableController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("monitoringdevice:del")
// @RequiresPermissions("monitoringdevice:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -196,7 +196,7 @@ public class MonitoringDeviceDisableController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -37,7 +37,7 @@ public class MonitoringDeviceSensorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions(value = {"majordangersource:add","monitoringdevice:add"}, logical = Logical.OR)
// @RequiresPermissions(value = {"majordangersource:add","monitoringdevice:add"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "数据采集阈值设定",instructionsType = "新增")
public Object add() throws Exception{
@ -63,7 +63,7 @@ public class MonitoringDeviceSensorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions(value = {"majordangersource:del","monitoringdevice:del"}, logical = Logical.OR)
// @RequiresPermissions(value = {"majordangersource:del","monitoringdevice:del"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "数据采集阈值设定",instructionsType = "删除")
public Object delete() throws Exception{
@ -83,7 +83,7 @@ public class MonitoringDeviceSensorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions(value = {"majordangersource:edit","monitoringdevice:edit"}, logical = Logical.OR)
// @RequiresPermissions(value = {"majordangersource:edit","monitoringdevice:edit"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "数据采集阈值设定",instructionsType = "修改")
public Object edit() throws Exception{
@ -104,7 +104,7 @@ public class MonitoringDeviceSensorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions(value = {"majordangersource:list","monitoringdevice:list"}, logical = Logical.OR)
// @RequiresPermissions(value = {"majordangersource:list","monitoringdevice:list"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "数据采集阈值设定",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -128,7 +128,7 @@ public class MonitoringDeviceSensorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions(value = {"majordangersource:edit","monitoringdevice:edit"}, logical = Logical.OR)
// @RequiresPermissions(value = {"majordangersource:edit","monitoringdevice:edit"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "数据采集阈值设定",instructionsType = "其修改页面获取数据")
public Object goEdit() throws Exception{
@ -148,7 +148,7 @@ public class MonitoringDeviceSensorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions(value = {"majordangersource:del","monitoringdevice:del"}, logical = Logical.OR)
// @RequiresPermissions(value = {"majordangersource:del","monitoringdevice:del"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "数据采集阈值设定",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -176,7 +176,7 @@ public class MonitoringDeviceSensorController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "监测预警",menuServer= "重大危险源监测预警",instructionsOperate = "数据采集阈值设定",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -43,7 +43,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("noticecorp:add")
// @RequiresPermissions("noticecorp:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -119,7 +119,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("noticecorp:del")
// @RequiresPermissions("noticecorp:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "删除")
public Object delete() throws Exception{
@ -140,7 +140,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("noticecorp:edit")
// @RequiresPermissions("noticecorp:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "修改")
public Object edit(@RequestParam(value="file",required=false) MultipartFile file) throws Exception{
@ -166,7 +166,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("noticecorp:list")
// @RequiresPermissions("noticecorp:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -251,7 +251,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("noticecorp:del")
// @RequiresPermissions("noticecorp:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -276,7 +276,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
@ -321,7 +321,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/changeIsTop")
@RequiresPermissions("noticecorp:edit")
// @RequiresPermissions("noticecorp:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "变更置顶状态")
public Object changeIsTop() throws Exception{
@ -340,7 +340,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/changeStatus")
@RequiresPermissions("noticecorp:edit")
// @RequiresPermissions("noticecorp:edit")
@ResponseBody
@Transactional //开启事物
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "变更状态")
@ -369,7 +369,7 @@ public class NoticeCorpController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/listUserRead")
@RequiresPermissions("noticecorp:list")
// @RequiresPermissions("noticecorp:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "企业公告",instructionsType = "列表")
public Object listUserRead(Page page) throws Exception{

View File

@ -295,7 +295,7 @@ public class NoticeManagementController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "通知公告",instructionsOperate = "通知模板配置",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

View File

@ -44,7 +44,7 @@ public class ServiceNoticeController extends BaseController {
* @throws Exception
*/
// @RequestMapping(value="/add")
// @RequiresPermissions("serviceNotice:add")
// // @RequiresPermissions("serviceNotice:add")
// @ResponseBody
// public Object add() throws Exception{
// Map<String,Object> map = new HashMap<String,Object>();
@ -95,7 +95,7 @@ public class ServiceNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goAdd")
@RequiresPermissions("serviceNotice:add")
// @RequiresPermissions("serviceNotice:add")
@ResponseBody
public Object goAdd() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -113,7 +113,7 @@ public class ServiceNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("serviceNotice:del")
// @RequiresPermissions("serviceNotice:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -130,7 +130,7 @@ public class ServiceNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("serviceNotice:edit")
// @RequiresPermissions("serviceNotice:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -311,7 +311,7 @@ public class ServiceNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/changeStatus")
@RequiresPermissions("serviceNotice:edit")
// @RequiresPermissions("serviceNotice:edit")
@ResponseBody
@Transactional //开启事物
public Object changeStatus() throws Exception{
@ -354,7 +354,7 @@ public class ServiceNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/changeIsTop")
@RequiresPermissions("serviceNotice:edit")
// @RequiresPermissions("serviceNotice:edit")
@ResponseBody
public Object changeIsTop() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -373,7 +373,7 @@ public class ServiceNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("serviceNotice:del")
// @RequiresPermissions("serviceNotice:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -397,7 +397,7 @@ public class ServiceNoticeController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();

View File

@ -237,7 +237,7 @@ public class AppOffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("offduty:del")
// @RequiresPermissions("offduty:del")
@ResponseBody
@LogAnno(menuType= "手机",menuServer= "离岗管理",instructionsOperate = "离岗管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{

View File

@ -42,7 +42,7 @@ public class OffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("offduty:add")
// @RequiresPermissions("offduty:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -65,7 +65,7 @@ public class OffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("offduty:del")
// @RequiresPermissions("offduty:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -82,7 +82,7 @@ public class OffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("offduty:edit")
// @RequiresPermissions("offduty:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "离岗管理",instructionsOperate = "离岗管理",instructionsType = "修改")
public Object edit() throws Exception{
@ -102,7 +102,7 @@ public class OffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("offduty:list")
// @RequiresPermissions("offduty:list")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "离岗管理",instructionsOperate = "离岗管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -161,7 +161,7 @@ public class OffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("offduty:edit")
// @RequiresPermissions("offduty:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "离岗管理",instructionsOperate = "离岗管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -180,7 +180,7 @@ public class OffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("offduty:del")
// @RequiresPermissions("offduty:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -248,7 +248,7 @@ public class OffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/review")
@RequiresPermissions("offduty:edit")
// @RequiresPermissions("offduty:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "离岗管理",instructionsOperate = "离岗管理",instructionsType = "审批")
public Object review() throws Exception{
@ -268,7 +268,7 @@ public class OffDutyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/cancel")
@RequiresPermissions("offduty:edit")
// @RequiresPermissions("offduty:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "离岗管理",instructionsOperate = "离岗管理",instructionsType = "取消")
public Object cancel() throws Exception{

View File

@ -39,7 +39,7 @@ public class OffDutySetupController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("offdutySetup:add")
// @RequiresPermissions("offdutySetup:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -63,7 +63,7 @@ public class OffDutySetupController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("offdutySetup:del")
// @RequiresPermissions("offdutySetup:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -80,7 +80,7 @@ public class OffDutySetupController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("offdutySetup:edit")
// @RequiresPermissions("offdutySetup:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "离岗设置",instructionsOperate = "离岗设置",instructionsType = "修改")
public Object edit() throws Exception{
@ -100,7 +100,7 @@ public class OffDutySetupController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("offdutySetup:list")
// @RequiresPermissions("offdutySetup:list")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "离岗设置",instructionsOperate = "离岗设置",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -133,7 +133,7 @@ public class OffDutySetupController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("offdutySetup:edit")
// @RequiresPermissions("offdutySetup:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "离岗设置",instructionsOperate = "离岗设置",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -152,7 +152,7 @@ public class OffDutySetupController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("offdutySetup:del")
// @RequiresPermissions("offdutySetup:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -39,7 +39,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions( value = {"stageexampaper:add", "curriculum:add"}, logical = Logical.OR)
// @RequiresPermissions( value = {"stageexampaper:add", "curriculum:add"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "试卷管理",instructionsType = "新增")
public Object add() throws Exception{
@ -82,7 +82,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions( value = {"stageexampaper:del", "curriculum:del"}, logical = Logical.OR)
// @RequiresPermissions( value = {"stageexampaper:del", "curriculum:del"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "试卷管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -100,7 +100,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions( value = {"stageexampaper:edit", "curriculum:edit"}, logical = Logical.OR)
// @RequiresPermissions( value = {"stageexampaper:edit", "curriculum:edit"}, logical = Logical.OR)
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -117,7 +117,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions( value = {"stageexampaper:list", "curriculum:list"}, logical = Logical.OR)
// @RequiresPermissions( value = {"stageexampaper:list", "curriculum:list"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "在线学习与考试",instructionsOperate = "试卷管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -141,7 +141,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions( value = {"`stageexampaper:edit`", "curriculum:edit"}, logical = Logical.OR)
// // @RequiresPermissions( value = {"`stageexampaper:edit`", "curriculum:edit"}, logical = Logical.OR)
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -162,7 +162,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions( value = {"stageexampaper:del", "curriculum:del"}, logical = Logical.OR)
// @RequiresPermissions( value = {"stageexampaper:del", "curriculum:del"}, logical = Logical.OR)
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -186,7 +186,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -248,7 +248,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/getExam")
// @RequiresPermissions( value = {"coursepapers:edit", "curriculum:edit"}, logical = Logical.OR)
// // @RequiresPermissions( value = {"coursepapers:edit", "curriculum:edit"}, logical = Logical.OR)
@ResponseBody
public Object getExam() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -266,7 +266,7 @@ public class StageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/editState")
@RequiresPermissions( value = {"stageexampaper:edit", "curriculum:edit"}, logical = Logical.OR)
// @RequiresPermissions( value = {"stageexampaper:edit", "curriculum:edit"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "试卷管理",instructionsType = "修改")
public Object editState() throws Exception{

View File

@ -38,7 +38,7 @@ public class PerformanceExamineDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("performanceexamine:add")
// @RequiresPermissions("performanceexamine:add")
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -56,7 +56,7 @@ public class PerformanceExamineDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("performanceexamine:del")
// @RequiresPermissions("performanceexamine:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -73,7 +73,7 @@ public class PerformanceExamineDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("performanceexamine:edit")
// @RequiresPermissions("performanceexamine:edit")
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -146,7 +146,7 @@ public class PerformanceExamineDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("performanceexamine:edit")
// @RequiresPermissions("performanceexamine:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -164,7 +164,7 @@ public class PerformanceExamineDeptController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("performanceexamine:del")
// @RequiresPermissions("performanceexamine:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -44,7 +44,7 @@ public class PerformanceExamineUserController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("performanceexamine:add")
// @RequiresPermissions("performanceexamine:add")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "绩效考核",instructionsOperate = "人员绩效",instructionsType = "新增")
public Object add() throws Exception{
@ -63,7 +63,7 @@ public class PerformanceExamineUserController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("performanceexamine:del")
// @RequiresPermissions("performanceexamine:del")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "绩效考核",instructionsOperate = "人员绩效",instructionsType = "删除")
public Object delete() throws Exception{
@ -81,7 +81,7 @@ public class PerformanceExamineUserController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("performanceexamine:edit")
// @RequiresPermissions("performanceexamine:edit")
@ResponseBody
@LogAnno(menuType= "双重预防",menuServer= "绩效考核",instructionsOperate = "人员绩效",instructionsType = "修改")
public Object edit() throws Exception{
@ -179,7 +179,7 @@ public class PerformanceExamineUserController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("performanceexamine:edit")
// @RequiresPermissions("performanceexamine:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -197,7 +197,7 @@ public class PerformanceExamineUserController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("performanceexamine:del")
// @RequiresPermissions("performanceexamine:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -57,7 +57,7 @@ public class PlatformDataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("courseware:add")
// @RequiresPermissions("courseware:add")
@ResponseBody
public Object add(@RequestParam(value="cfile",required=false) MultipartFile cfile,
@RequestParam(value="ccfile",required=false) MultipartFile ccfile) throws Exception{
@ -105,7 +105,7 @@ public class PlatformDataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("courseware:del")
// @RequiresPermissions("courseware:del")
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -138,7 +138,7 @@ public class PlatformDataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("courseware:edit")
// @RequiresPermissions("courseware:edit")
@ResponseBody
public Object edit(@RequestParam(value="cfile",required=false) MultipartFile cfile,
@RequestParam(value="ccfile",required=false) MultipartFile ccfile) throws Exception{
@ -184,7 +184,7 @@ public class PlatformDataCoursewareController extends BaseController {
// * @throws Exception
// */
// @RequestMapping(value="/list")
// @RequiresPermissions("courseware:list")
// // @RequiresPermissions("courseware:list")
// @ResponseBody
// public Object list(Page page) throws Exception{
// Map<String,Object> map = new HashMap<String,Object>();
@ -208,7 +208,7 @@ public class PlatformDataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("courseware:list")
// @RequiresPermissions("courseware:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "资料课件列表")
public Object list(Page page) throws Exception{
@ -250,7 +250,7 @@ public class PlatformDataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("courseware:del")
// @RequiresPermissions("courseware:del")
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -284,7 +284,7 @@ public class PlatformDataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -369,7 +369,7 @@ public class PlatformDataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/editState")
@RequiresPermissions("courseware:edit")
// @RequiresPermissions("courseware:edit")
@ResponseBody
public Object editState() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -389,7 +389,7 @@ public class PlatformDataCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/joinMyCourseware")
@RequiresPermissions("courseware:list")
// @RequiresPermissions("courseware:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "把平台资源加入到我的课件中")
public Object joinMyCourseware() throws Exception{

View File

@ -41,7 +41,7 @@ public class PlatformQuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions( value = {"question:add" , "courseware:add"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:add" , "courseware:add"}, logical = Logical.OR)
@ResponseBody
public Object add() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -69,7 +69,7 @@ public class PlatformQuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions( value = {"question:del" , "courseware:del"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:del" , "courseware:del"}, logical = Logical.OR)
@ResponseBody
public Object delete() throws Exception{
Map<String,String> map = new HashMap<String,String>();
@ -88,7 +88,7 @@ public class PlatformQuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
@ResponseBody
public Object edit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -108,7 +108,7 @@ public class PlatformQuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions( value = {"question:list" , "courseware:list"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:list" , "courseware:list"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "试题列表")
public Object list(Page page) throws Exception{
@ -132,7 +132,7 @@ public class PlatformQuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -150,7 +150,7 @@ public class PlatformQuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions( value = {"question:del" , "courseware:del"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:del" , "courseware:del"}, logical = Logical.OR)
@ResponseBody
public Object deleteAll() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -177,7 +177,7 @@ public class PlatformQuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();
PageData pd = new PageData();
@ -285,7 +285,7 @@ public class PlatformQuestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/readExcel")
@RequiresPermissions("fromExcel")
// @RequiresPermissions("fromExcel")
@SuppressWarnings("unchecked")
@ResponseBody
@Transactional

View File

@ -56,7 +56,7 @@ public class PlatformVideoCoursewareController extends BaseController {
// * @throws Exception
// */
// @RequestMapping(value="/list")
// @RequiresPermissions("courseware:list")
// // @RequiresPermissions("courseware:list")
// @ResponseBody
// public Object list(Page page) throws Exception{
// Map<String,Object> map = new HashMap<String,Object>();
@ -88,7 +88,7 @@ public class PlatformVideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("courseware:list")
// @RequiresPermissions("courseware:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "视频课件列表")
public Object list(Page page) throws Exception{
@ -113,7 +113,7 @@ public class PlatformVideoCoursewareController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/joinMyCourseware")
@RequiresPermissions("courseware:list")
// @RequiresPermissions("courseware:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课件资源管理",instructionsType = "把平台资源加入到我的课件中")
public Object joinMyCourseware() throws Exception{

View File

@ -80,7 +80,7 @@ public class PlatformCurriculumController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("curriculum:list")
// @RequiresPermissions("curriculum:list")
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "课程管理",instructionsType = "列表")
public Object list(Page page) throws Exception{

View File

@ -54,7 +54,7 @@ public class PlatformStageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions( value = {"stageexampaper:list", "curriculum:list"}, logical = Logical.OR)
// @RequiresPermissions( value = {"stageexampaper:list", "curriculum:list"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "试卷管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -79,7 +79,7 @@ public class PlatformStageexampaperInputController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions( value = {"stageexampaper:edit", "curriculum:edit"}, logical = Logical.OR)
// // @RequiresPermissions( value = {"stageexampaper:edit", "curriculum:edit"}, logical = Logical.OR)
@ResponseBody
@LogAnno(menuType= "教育培训",menuServer= "平台资源库",instructionsOperate = "试卷管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{

View File

@ -57,7 +57,7 @@ public class AppSurveyController extends BaseController {
* @throws Exceptionexists
*/
@RequestMapping(value="/getQuestions")
// @RequiresPermissions("survey:edit")
// // @RequiresPermissions("survey:edit")
@ResponseBody
public Object getQuestions() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -75,7 +75,7 @@ public class AppSurveyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions("survey:edit")
// // @RequiresPermissions("survey:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -98,7 +98,7 @@ public class AppSurveyController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/getstate")
@RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
// @RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
@ResponseBody
public Object getstate() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -73,7 +73,7 @@ public class AppSurveyanswerController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions("survey:edit")
// // @RequiresPermissions("survey:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -51,7 +51,7 @@ public class AppSurveycorpinfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions("survey:edit")
// // @RequiresPermissions("survey:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();
@ -69,7 +69,7 @@ public class AppSurveycorpinfoController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/getstate")
// @RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
// // @RequiresPermissions( value = {"question:edit" , "courseware:edit"}, logical = Logical.OR)
@ResponseBody
public Object getstate() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -52,7 +52,7 @@ public class AppSurveyquestionController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
// @RequiresPermissions("survey:edit")
// // @RequiresPermissions("survey:edit")
@ResponseBody
public Object goEdit() throws Exception{
Map<String,Object> map = new HashMap<String,Object>();

View File

@ -36,7 +36,7 @@ public class OutSourcedController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/add")
@RequiresPermissions("outsourced:add")
// @RequiresPermissions("outsourced:add")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "相关方管理",instructionsOperate = "外包工程管理",instructionsType = "新增")
public Object add(@RequestParam(value="file",required=false) MultipartFile file,
@ -132,7 +132,7 @@ public class OutSourcedController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/delete")
@RequiresPermissions("outsourced:del")
// @RequiresPermissions("outsourced:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "相关方管理",instructionsOperate = "外包工程管理",instructionsType = "删除")
public Object delete() throws Exception{
@ -150,7 +150,7 @@ public class OutSourcedController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/edit")
@RequiresPermissions("outsourced:edit")
// @RequiresPermissions("outsourced:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "相关方管理",instructionsOperate = "外包工程管理",instructionsType = "修改")
public Object edit(@RequestParam(value="file",required=false) MultipartFile file,
@ -239,7 +239,7 @@ public class OutSourcedController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/list")
@RequiresPermissions("outsourced:list")
// @RequiresPermissions("outsourced:list")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "相关方管理",instructionsOperate = "外包工程管理",instructionsType = "列表")
public Object list(Page page) throws Exception{
@ -263,7 +263,7 @@ public class OutSourcedController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/goEdit")
@RequiresPermissions("outsourced:edit")
// @RequiresPermissions("outsourced:edit")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "相关方管理",instructionsOperate = "外包工程管理",instructionsType = "去修改页面获取数据")
public Object goEdit() throws Exception{
@ -282,7 +282,7 @@ public class OutSourcedController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/deleteAll")
@RequiresPermissions("outsourced:del")
// @RequiresPermissions("outsourced:del")
@ResponseBody
@LogAnno(menuType= "综合管理",menuServer= "相关方管理",instructionsOperate = "外包工程管理",instructionsType = "批量删除")
public Object deleteAll() throws Exception{
@ -307,7 +307,7 @@ public class OutSourcedController extends BaseController {
* @throws Exception
*/
@RequestMapping(value="/excel")
@RequiresPermissions("toExcel")
// @RequiresPermissions("toExcel")
@LogAnno(menuType= "综合管理",menuServer= "相关方管理",instructionsOperate = "外包工程管理",instructionsType = "导出到excel")
public ModelAndView exportExcel() throws Exception{
ModelAndView mv = new ModelAndView();

Some files were not shown because too many files have changed in this diff Show More