1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package cn.autoform.web.mapper.formapi;
|
| import java.util.List;
|
| import org.apache.ibatis.annotations.Mapper;
| import org.apache.ibatis.annotations.Param;
|
| import cn.autoform.db.entity.FieldPropertyEntity;
|
| @Mapper
| public interface FormApiMapper {
|
| // 获取字段顺番
| List<FieldPropertyEntity> getColumnNum(@Param("tenantID") String tenantID, @Param("formID") String formID);
| }
|
|