commit | author | age
|
a18bfa
|
1 |
package cn.autoform.web.service.formapi; |
Z |
2 |
|
|
3 |
import java.util.List; |
|
4 |
|
|
5 |
import org.springframework.beans.factory.annotation.Autowired; |
|
6 |
import org.springframework.stereotype.Service; |
|
7 |
|
|
8 |
import cn.autoform.db.entity.FieldPropertyEntity; |
|
9 |
import cn.autoform.web.mapper.formapi.FormApiMapper; |
|
10 |
|
|
11 |
@Service |
|
12 |
public class FormApiService { |
|
13 |
|
|
14 |
@Autowired |
|
15 |
private FormApiMapper formApiMapper = null; |
|
16 |
|
|
17 |
/** |
|
18 |
* 获取字段顺番 |
|
19 |
* @param tenantID |
|
20 |
* @param formID |
|
21 |
* @return |
|
22 |
*/ |
|
23 |
public List<FieldPropertyEntity> getColumnNum(String tenantID,String formID) { |
|
24 |
return formApiMapper.getColumnNum(tenantID, formID); |
|
25 |
} |
|
26 |
} |