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
package com.changhong.epc.tenant.service.system.math;
 
import java.util.List;
import java.util.Map;
 
import com.changhong.epc.bean.count.system.SystemMath;
import com.changhong.epc.bean.count.system.SystemMathExtend;
import com.changhong.epc.bean.tenant.cost.CostFromMapping;
 
/**
 * 系统变量业务层接口
 * @author liush
 *
 */
public interface SystemMathService {
 
 
    /**
     * 查询系统变量及其对应的参数
     * @param systemMathExtend
     * @return
     */
    List<SystemMathExtend> selectAllSystemMathExtend();
 
    /**
     * 查询引用公式
     * @param systemMath
     * @return
     */
    List<SystemMath> selectSystemMathNameList();
 
    /**
     * 新增系统变量及其参数
     * @param systemMathExtend
     * @return
     */
    Integer insert(SystemMathExtend systemMathExtend);
    
    /**
     * 更新系统变量及其参数
     * @param systemMathExtend
     * @return
     */
    Integer updateByPrimaryKey(SystemMathExtend systemMathExtend);
 
    /**
     * 删除系统变量及其参数
     * @param systemMathExtend
     * @return
     */
    Integer deleteByPrimaryKey(SystemMathExtend systemMathExtend);
 
    /**
     * 获得公式
     * @return
     */
    List<Map<String, String>> getFunction();
 
 
    /**
     * 通过表单id获取费用类型
     * @param costFromMapping
     * @return
     */
    Map<String,String> getCostTypeByFormId(Map<String,String> map);
 
    
 
    
 
    
 
}