package cn.autoform.web.service.formoperation;
|
|
import java.util.List;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import cn.autoform.db.entity.FormOperationEntity;
|
import cn.autoform.web.mapper.formset.FormSetMapper;
|
|
/**
|
*
|
* @author huaixun.zhang
|
*
|
*/
|
@Service
|
public class FormOperationInfoService {
|
|
@Autowired
|
private FormSetMapper formSetMapper = null;
|
|
/**
|
* 维护表单基本信息取得
|
* @param tenantID
|
* @return 维护表单基本信息
|
*/
|
public List<FormOperationEntity> receiveFormOperationInfo(String tenantID) {
|
return formSetMapper.getFormOperationInfo(tenantID);
|
}
|
}
|