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 cn.autoform.log.mapper;
|
| import org.apache.ibatis.annotations.Mapper;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * 系统变量持久层接口
| * @author liush
| *
| */
| @Mapper
| public interface SystemMathMapper {
|
|
| /**
| * 通过表单id查询费用类型
| * @param tenantId
| * @param companyId
| * @param formId
| * @return
| */
| List<Map<String,String>> getCostTypeByFormId(@Param("tenantId") String tenantId,
| @Param("companyId") String companyId,
| @Param("formId") String formId);
|
| }
|
|