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
82
83
84
85
86
87
package com.changhong.epc.tenant.controller.system;
 
import com.changhong.epc.bean.admin.InitCompany;
import com.changhong.epc.bean.admin.TenantInfo;
import com.changhong.epc.bean.tenant.system.EpcShowColumn;
import com.changhong.epc.config.tool.MybatisTool;
import com.changhong.epc.constter.base.BaseConst;
import com.changhong.epc.constter.base.Context;
import com.changhong.epc.constter.tenant.TenantUrlConst;
import com.changhong.epc.tenant.service.system.TenantInfoService;
import com.changhong.epc.tenant.service.system.budget.BudgetConfigService;
import com.iemsoft.framework.cloud.core.thread.ThreadData;
import org.springframework.web.bind.annotation.*;
 
import javax.annotation.Resource;
 
@RestController
public class TenantInfoController implements TenantUrlConst ,BaseConst {
 
    @Resource(name="tenantInfoServiceImpl")
    private TenantInfoService tenantInfoService;
 
    @Resource
    private BudgetConfigService budgetConfigService;
 
    @PostMapping(REST_TENANT_SELECTTENANTINFO)
    public TenantInfo getTenantInfo(@RequestBody TenantInfo tenantInfo){
        tenantInfo.setOpenId(ThreadData.get(OPEN_ID));
//        return tenantInfoService.getTenantInfo(tenantInfo);
        return tenantInfo;
    }
 
    @PostMapping(REST_TENANT_UPDATETENANTINFO)
    public int updateTenantInfo(@RequestBody TenantInfo tenantInfo){
//        return tenantInfoService.updateTenantInfo(tenantInfo);
        return 0;
    }
 
    @PostMapping(REST_TENANT_INIT_INFO)
    public int tenantInitInfo(@RequestBody InitCompany initCompany){
        MybatisTool.initDataSource(initCompany);
        return tenantInfoService.initTenantInfo(initCompany);
    }
 
    @PostMapping("/synOrg")
    public int synOrg(){
        return budgetConfigService.synOrg();
    }
 
    /**
     * 更新按鈕
     * @param epc
     * @return
     */
    @PostMapping(REST_TENANT_PERSION_UPDATE)
    public int updateShowColumn(@RequestBody EpcShowColumn epc){
        return tenantInfoService.updateShowColumnById(epc,Context.getOpenId());
    }
 
    /**
     * 查詢按鈕
     * @param epc
     * @return
     */
    @PostMapping(REST_TENANT_PERSION_SELECT)
    public EpcShowColumn selectShowColumn(@RequestBody EpcShowColumn epc){
        return tenantInfoService.selectShowColumnById(epc,Context.getOpenId());
    }
    /**
     * 删除
     * @param epc
     * @return
     */
    @PostMapping(REST_TENANT_PERSION_DELETE)
    public void deleteShowColumn(@RequestBody EpcShowColumn epc){
         tenantInfoService.deleteShowColumnById(epc,Context.getOpenId());
    }
    /**
     * 增加
     * @param epc
     * @return
     */
    @PostMapping(REST_TENANT_PERSION_INSERT)
    public void insertShowColumn(@RequestBody EpcShowColumn epc){
         tenantInfoService.insertShowColumn(epc,Context.getOpenId());
    }
}