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
| package cn.autoform.log.service;
|
| import java.util.Map;
|
| /**
| * 系统变量业务层接口
| * @author liush
| *
| */
| public interface SystemMathService {
|
|
| /**
| * 通过表单id获取费用类型
| * @param costFromMapping
| * @return
| */
| Map<String,String> getCostTypeByFormId(String formId);
|
|
|
|
|
|
|
| }
|
|