地质所 沉降监测网建设项目
zmk
2024-05-15 9e3afc6d0fa514f986d3fea40fa23124e6fb5070
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
package com.javaweb.geotdp.controller;
 
import javax.validation.Valid;
 
import com.javaweb.geo.domain.HandleException;
import com.javaweb.geo.domain.HandleOpinion;
import com.javaweb.geotdp.vo.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.*;
 
import com.javaweb.common.core.controller.BaseController;
import com.javaweb.geotdp.domain.ResponseResult;
import com.javaweb.geotdp.service.impl.GeoDataServiceImpl;
 
@Controller
@RequestMapping("/geotdp")
public class GeoDataController extends BaseController {
 
    @Autowired
    private GeoDataServiceImpl geoDataServiceImpl;
 
    @PostMapping("/test")
    @ResponseBody
    public ResponseResult test() {
        return ResponseResult.success("网络通畅");
    }
 
 
    /**
     * 上传公司信息
     *
     * @param
     * @return
     * @throws Exception
     */
    @PostMapping("/company/uploadCompany")
    @ResponseBody
    public ResponseResult uploadCompany(@Valid @RequestBody CompanyVo companyVo, BindingResult bindingResult) throws Exception {
        if (bindingResult.hasErrors()) {
 
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.uploadCompany(companyVo);
    }
 
 
    /**
     * 上传人员
     *
     * @return
     * @throws Exception
     */
    @PostMapping("/compileUser/uploadUser")
    @ResponseBody
    public ResponseResult uploadUser(@Valid @RequestBody CompanyUserVo companyUserVo, BindingResult bindingResult) throws Exception {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.uploadUser(companyUserVo);
    }
 
 
    /**
     * 上传项目
     *
     * @return
     * @throws Exception
     */
    @PostMapping("/project/uploadProject")
    @ResponseBody
    public ResponseResult uploadProject(@Valid @RequestBody ProjectVo projectVo, BindingResult bindingResult) throws Exception {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.uploadProject(projectVo);
    }
 
 
    /**
     * 上传勘探点数据接口
     *
     * @return
     */
    @PostMapping("/hole/uploadHole")
    @ResponseBody
    public ResponseResult uploadHole(@Valid @RequestBody HoleVo holeVo, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.uploadHole(holeVo);
 
    }
 
 
    /**
     * 项目验收接口
     *
     * @return
     */
    @PostMapping("/project/checkComplete")
    @ResponseBody
    public ResponseResult checkComplete(@Valid @RequestBody ProjectCheckVo projectCheckVo, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.checkComplete(projectCheckVo);
    }
 
 
    /**
     * 项目验收状态变更接口
     *
     * @return
     */
    @PostMapping("/project/updateStatus")
    @ResponseBody
    public ResponseResult updateStatus(@Valid @RequestBody ProjectCheckVo projectCheckVo, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.updateStatus(projectCheckVo);
    }
 
 
    /**
     * 删除项目接口
     *
     * @return
     */
    @PostMapping("/project/deleteProject")
    @ResponseBody
    public ResponseResult deleteProject(@RequestBody ProjectCheckVo projectCheckVo, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.deleteProject(projectCheckVo);
    }
 
 
    /**
     * 勘探点状态变更接口
     *
     * @return
     */
    @PostMapping("/hole/updateStatus")
    @ResponseBody
    public ResponseResult holeUpdateStatus(@RequestBody HoleVo holeVo, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.holeUpdateStatus(holeVo);
    }
 
 
    /**
     * 获取劳务单位接口
     *
     * @return
     */
    @PostMapping("/company/getLaborList")
    @ResponseBody
    public ResponseResult getLaborList(@Valid @RequestBody LaborUnitVo laborUnitVo, BindingResult bindingResult) throws Exception {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.getLaborList(laborUnitVo);
    }
 
 
    /**
     * 获取三员信息接口
     *
     * @return
     */
    @PostMapping("/people/detail")
    @ResponseBody
    public ResponseResult getPeopleDetail(@Valid @RequestBody PeopleDetailVo peopleDetailVo, BindingResult bindingResult) throws Exception {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.getPeopleDetail(peopleDetailVo);
    }
 
    /**
     * 首页汇总接口
     *
     * @return
     */
    @GetMapping("/index/indexCollect")
    @ResponseBody
    public ResponseResult indexCollect() {
        return geoDataServiceImpl.indexCollect();
    }
 
    /**
     * 首页项目环数量汇总接口
     *
     * @return
     */
    @GetMapping("/index/indexProjectNumsCollect")
    @ResponseBody
    public ResponseResult indexProjectNumsCollect(@RequestParam("startTime") String startTime, @RequestParam("endTime") String endTime) {
        return geoDataServiceImpl.indexProjectNumsCollect(startTime, endTime);
    }
 
    /**
     * 上传异常处理意见接口
     */
    @PostMapping("/uploadHandle")
    @ResponseBody
    public ResponseResult uploadHandle(@Valid @RequestBody HandleOpinion handleOpinion, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.uploadHandle(handleOpinion);
    }
 
    /**
     * 获取项目所有异常数据接口
     */
    @PostMapping("/exception/getProjectException")
    @ResponseBody
    public ResponseResult getProjectException(@Valid @RequestBody ExceptionVo exceptionVo, BindingResult bindingResult) {
        if (bindingResult.hasErrors()) {
            return ResponseResult.error(bindingResult.getAllErrors().get(0).getDefaultMessage());
        }
        return geoDataServiceImpl.getProjectException(exceptionVo);
    }
 
    /**
     * 获取异常详情接口
     */
    @GetMapping("/exception/getExceptionDetail")
    @ResponseBody
    public ResponseResult getExceptionDetail(@RequestParam("secretKey") String secretKey, @RequestParam("exceptionID") String exceptionID) {
        return geoDataServiceImpl.getExceptionDetail(secretKey,exceptionID);
    }
 
 
 
 
}