zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.changhong.epc.count.controller.system.func;
 
import java.util.List;
import java.util.Map;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
 
import com.changhong.epc.bean.count.func.FunctionInfo;
import com.changhong.epc.constter.count.nomr.CountUrlConst;
import com.changhong.epc.count.service.system.func.FunRegister;
 
@RestController
public class FunctionController implements CountUrlConst {
    
    @Autowired
    private FunRegister funRegister;
    
    /**
     * 返回所有系统变量   (树形)
     * @return
     */
    @RequestMapping(value=SYSTEM_FUNC_ALL, method={RequestMethod.OPTIONS, RequestMethod.POST})
    public Map<String,List<FunctionInfo>> getFunction() {
        return funRegister.getFuncList();
    }
}