zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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);
    }
}