package cn.autoform.web.service.formapi;
|
|
import java.util.List;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import cn.autoform.db.entity.FieldPropertyEntity;
|
import cn.autoform.web.mapper.formapi.FormApiMapper;
|
|
@Service
|
public class FormApiService {
|
|
@Autowired
|
private FormApiMapper formApiMapper = null;
|
|
/**
|
* 获取字段顺番
|
* @param tenantID
|
* @param formID
|
* @return
|
*/
|
public List<FieldPropertyEntity> getColumnNum(String tenantID,String formID) {
|
return formApiMapper.getColumnNum(tenantID, formID);
|
}
|
}
|