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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package cn.autoform.web.controller.formset;
 
import cn.autoform.bean.page.PageResult;
import cn.autoform.db.entity.FormSetInfoEntity;
import cn.autoform.db.exten.FormSetPage;
import cn.autoform.fw.exception.RestResult;
import cn.autoform.fw.utility.RestResultGenerator;
import cn.autoform.web.service.page.PageService;
import net.sf.json.JSONObject;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
 
@RestController
public class FormSetController {
 
    @Autowired
    PageService pageService;
 
    @Value("${tempTenantId:100000023}")
    private String tempTenantId;
    
    @RequestMapping(value = "${requset.formsetpage}", method = RequestMethod.POST)
    public RestResult<PageResult<FormSetInfoEntity>> queryFormSetAndPaging(@RequestBody FormSetPage formSetPage){
//        JSONObject jsonObj = JSONObject.fromObject(jsonStr);
//        String tenantID = jsonObj.getString("tenantID");
//        String businessSystem = jsonObj.getString("flag");
//        String formName = jsonObj.getString("formName");
//        FormSetPage formSetPage = new FormSetPage();
//        formSetPage.setTenantID(tenantID);
//        formSetPage.setBusinessSystem(businessSystem);
//        formSetPage.setFormName(formName);
        return RestResultGenerator.genSuccessPageResult(this.pageService.queryPage(formSetPage));
    }
 
    @RequestMapping(value = "search/formset/temp", method = RequestMethod.POST)
    public RestResult<PageResult<FormSetInfoEntity>> queryFormSetTemp(@RequestBody FormSetPage formSetPage){
//        JSONObject jsonObj = JSONObject.fromObject(jsonStr);
//        String businessSystem = jsonObj.getString("flag");
//        String formName = jsonObj.getString("formName");
//        FormSetPage formSetPage = new FormSetPage();
        formSetPage.setTenantID(tempTenantId);
//        formSetPage.setBusinessSystem(businessSystem);
//        formSetPage.setFormName("%" + formName + "%");
        return RestResultGenerator.genSuccessPageResult(this.pageService.queryPage(formSetPage));
    }
 
 
 
    //暂时不使用
    @RequestMapping(value = "${requset.formsetabis}", method = RequestMethod.POST)
    public RestResult<String> queryFormSetBussinesssystem(@RequestBody String jsonStr) {
        JSONObject jsonObj = JSONObject.fromObject(jsonStr);
        String formSetID = jsonObj.getString("formSetID");
        String tenantID = jsonObj.getString("tenantID");
        return  RestResultGenerator.genSuccessResult(this.pageService.queryFormSetBussinesssystem(formSetID, tenantID));
    }
    
    @RequestMapping(value = "${request.formnamepage}", method = RequestMethod.POST)
    public RestResult<PageResult<FormSetInfoEntity>> queryFormNameAndPaging(String jsonStr) {
        JSONObject jsonObj = JSONObject.fromObject(jsonStr);
        Integer pageNum =jsonObj.getInt("pageNum");
        Integer pageSize = jsonObj.getInt("pageSize");
        String tenantID = jsonObj.getString("tenantID");
        String businessSystem = jsonObj.getString("flag");
        String formName = jsonObj.getString("formName");
        FormSetPage formSetPage = new FormSetPage();
        formSetPage.setPageNum(pageNum);
        formSetPage.setPageSize(pageSize);
        formSetPage.setTenantID(tenantID);
        formSetPage.setBusinessSystem(businessSystem);
        formSetPage.setFormName("%" + formName + "%");
        return RestResultGenerator.genSuccessPageResult(this.pageService.queryPage(formSetPage));
    }
    
    
    
}