commit | author | age | ||
a18bfa | 1 | package cn.autoform.log.service; |
Z | 2 | |
3 | import java.util.Map; | |
4 | ||
5 | /** | |
6 | * 系统变量业务层接口 | |
7 | * @author liush | |
8 | * | |
9 | */ | |
10 | public interface SystemMathService { | |
11 | ||
12 | ||
13 | /** | |
14 | * 通过表单id获取费用类型 | |
15 | * @param costFromMapping | |
16 | * @return | |
17 | */ | |
18 | Map<String,String> getCostTypeByFormId(String formId); | |
19 | ||
20 | ||
21 | ||
22 | ||
23 | ||
24 | ||
25 | ||
26 | } |