1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package cn.autoform.web.mapper.templateusedinfo;
|
| import java.util.List;
|
| import org.apache.ibatis.annotations.Mapper;
| import org.apache.ibatis.annotations.Param;
|
| import cn.autoform.bean.TemplateUsedDetails;
|
|
| /**
| * @author lt-wx
| * 模板详情Mapper
| */
| @Mapper
| @FunctionalInterface
| public interface TemplateUsedInfoMapper {
|
| // 从表单基本表中取出数据
| List<TemplateUsedDetails> getTemplateUsedInfo(@Param("tenantID") String tenantID, @Param("templateID") String templateID);
| }
|
|