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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package com.changhong.epc.tenant.controller.system.math;
 
import java.util.List;
import java.util.Map;
 
import javax.annotation.Resource;
 
import com.changhong.epc.bean.tenant.cost.CostFromMapping;
import com.changhong.epc.tenant.mapper.tenant.system.math.SystemMathMapper;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
 
import com.changhong.epc.bean.count.system.SystemMath;
import com.changhong.epc.bean.count.system.SystemMathExtend;
import com.changhong.epc.constter.tenant.TenantUrlConst;
import com.changhong.epc.tenant.service.system.math.SystemMathService;
 
/**
 * 系统变量
 *
 * @author liush
 */
@RestController
public class SystemMathController implements TenantUrlConst {
 
    @Resource(name = "systemMathServiceImpl")
    private SystemMathService systemMathService;
 
 
    /**
     * 查询系统变量及其对应的参数
     *
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_MATH_SYSTEMMATH_SELECTLISTS)
    public List<SystemMathExtend> selectAllSysMathEx() {
        return systemMathService.selectAllSystemMathExtend();
    }
 
    /**
     * 查询引用公式
     *
     * @param systemMath
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_MATH_SYSTEMMATH_SELECTLISTNAME)
    public List<SystemMath> selectListName() {
        return systemMathService.selectSystemMathNameList();
    }
 
    /**
     * 接收系统变量拓展类 插入系统变量及其参数
     *
     * @param systemMathExtend
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_MATH_SYSTEMMATH_INSERT)
    public Integer insert(@RequestBody SystemMathExtend systemMathExtend) {
        return systemMathService.insert(systemMathExtend);
    }
 
    /**
     * 接收系统变量拓展类更新系统变量及其参数
     *
     * @param systemMathExtend
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_MATH_SYSTEMMATH_UPDATESELECTIVE)
    public Integer update(@RequestBody SystemMathExtend systemMathExtend) {
        return systemMathService.updateByPrimaryKey(systemMathExtend);
    }
 
    /**
     * 接收系统变量拓展类删除系统变量及其参数
     *
     * @param systemMathExtend
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_MATH_SYSTEMMATH_DELETE)
    public Integer delete(@RequestBody SystemMathExtend systemMathExtend) {
        return systemMathService.deleteByPrimaryKey(systemMathExtend);
    }
 
    /**
     * 获得公式
     *
     * @return
     */
    @PostMapping(REST_TENANT_SYSTEM_MATH_SYSTEMMATH_GETFUNCTION)
    public List<Map<String, String>> getFunction() {
        return systemMathService.getFunction();
    }
 
    /**
     * 通过表单id获取费用类型
     * @param costFromMapping
     * @return
     */
    @PostMapping(REST_TENANT_COST_TYPE_BY_FORMID)
    public Map<String, String> getCostType(@RequestBody Map<String,String> map) {
        System.out.println(map);
        return systemMathService.getCostTypeByFormId(map);
    }
 
}