|
@@ -148,29 +148,31 @@ public class PostCheckedController extends BaseController {
|
148
|
148
|
|
149
|
149
|
/**
|
150
|
150
|
* 修改岗检表管理
|
151
|
|
- @ApiOperation("修改岗检表管理")
|
152
|
|
- @ApiImplicitParams({
|
153
|
|
- @ApiImplicitParam(name = "id", value = "主键ID", dataType = "Long", dataTypeClass = Long.class),
|
154
|
|
- @ApiImplicitParam(name = "checkWorkgroupId", value = "检查工作组ID", dataType = "Long", dataTypeClass = Long.class),
|
155
|
|
- @ApiImplicitParam(name = "checkGroupId", value = "检查小组ID", dataType = "Long", dataTypeClass = Long.class),
|
156
|
|
- @ApiImplicitParam(name = "checkedDeptId", value = "被检查部门ID", dataType = "Long", dataTypeClass = Long.class),
|
157
|
|
- @ApiImplicitParam(name = "checkedPostId", value = "被检查岗位ID", dataType = "Long", dataTypeClass = Long.class),
|
158
|
|
- @ApiImplicitParam(name = "printUserId", value = "打印人ID", dataType = "Long", dataTypeClass = Long.class),
|
159
|
|
- @ApiImplicitParam(name = "printTime", value = "打印时间", dataType = "Date", dataTypeClass = Date.class),
|
160
|
|
- @ApiImplicitParam(name = "checkedImg", value = "上传:检查后的检查表照片或PDF,磁盘相对路径", dataType = "String", dataTypeClass = String.class),
|
161
|
|
- @ApiImplicitParam(name = "checkedUserName", value = "上传:检查人中文姓名(上传页面设置的值)", dataType = "String", dataTypeClass = String.class),
|
162
|
|
- @ApiImplicitParam(name = "checkedTime", value = "上传:检查时间(上传页面设置的值)", dataType = "Date", dataTypeClass = Date.class),
|
163
|
|
- @ApiImplicitParam(name = "uploadUserId", value = "上传:检查表上传人ID", dataType = "Long", dataTypeClass = Long.class),
|
164
|
|
- @ApiImplicitParam(name = "uploadTime", value = "上传:检查表上传时间", dataType = "Date", dataTypeClass = Date.class),
|
165
|
|
- @ApiImplicitParam(name = "delFlag", value = "删除标志(0代表存在 2代表删除)", dataType = "Integer", dataTypeClass = Integer.class),
|
166
|
|
- @ApiImplicitParam(name = "createUserId", value = "创建者用户ID", dataType = "Long", dataTypeClass = Long.class),
|
167
|
|
- })
|
168
|
|
- @PreAuthorize("@ss.hasPermi('postCheck:postChecked:edit')")
|
169
|
|
- @Log(title = "岗检表管理", businessType = BusinessType.UPDATE)
|
170
|
|
- @PutMapping public AjaxResult edit(@RequestBody PostChecked postChecked) {
|
171
|
|
- return toAjax(postCheckedService.updatePostChecked(postChecked));
|
172
|
|
- }
|
173
|
151
|
*/
|
|
152
|
+ @ApiOperation("修改岗检表管理")
|
|
153
|
+ @ApiImplicitParams({
|
|
154
|
+ @ApiImplicitParam(name = "id", value = "主键ID", dataType = "Long", dataTypeClass = Long.class),
|
|
155
|
+ @ApiImplicitParam(name = "checkWorkgroupId", value = "检查工作组ID", dataType = "Long", dataTypeClass = Long.class),
|
|
156
|
+ @ApiImplicitParam(name = "checkGroupId", value = "检查小组ID", dataType = "Long", dataTypeClass = Long.class),
|
|
157
|
+ @ApiImplicitParam(name = "checkedDeptId", value = "被检查部门ID", dataType = "Long", dataTypeClass = Long.class),
|
|
158
|
+ @ApiImplicitParam(name = "checkedPostId", value = "被检查岗位ID", dataType = "Long", dataTypeClass = Long.class),
|
|
159
|
+// @ApiImplicitParam(name = "printUserId", value = "打印人ID", dataType = "Long", dataTypeClass = Long.class),
|
|
160
|
+// @ApiImplicitParam(name = "printTime", value = "打印时间", dataType = "Date", dataTypeClass = Date.class),
|
|
161
|
+// @ApiImplicitParam(name = "checkedImg", value = "上传:检查后的检查表照片或PDF,磁盘相对路径", dataType = "String", dataTypeClass = String.class),
|
|
162
|
+// @ApiImplicitParam(name = "checkedUserName", value = "上传:检查人中文姓名(上传页面设置的值)", dataType = "String", dataTypeClass = String.class),
|
|
163
|
+// @ApiImplicitParam(name = "checkedTime", value = "上传:检查时间(上传页面设置的值)", dataType = "Date", dataTypeClass = Date.class),
|
|
164
|
+// @ApiImplicitParam(name = "uploadUserId", value = "上传:检查表上传人ID", dataType = "Long", dataTypeClass = Long.class),
|
|
165
|
+// @ApiImplicitParam(name = "uploadTime", value = "上传:检查表上传时间", dataType = "Date", dataTypeClass = Date.class),
|
|
166
|
+// @ApiImplicitParam(name = "delFlag", value = "删除标志(0代表存在 2代表删除)", dataType = "Integer", dataTypeClass = Integer.class),
|
|
167
|
+// @ApiImplicitParam(name = "createUserId", value = "创建者用户ID", dataType = "Long", dataTypeClass = Long.class),
|
|
168
|
+ @ApiImplicitParam(name = "children", value = "检查表明细数组", dataType = "List", dataTypeClass = PostCheckedItems.class),
|
|
169
|
+ })
|
|
170
|
+ @PreAuthorize("@ss.hasPermi('postCheck:postChecked:edit')")
|
|
171
|
+ @Log(title = "岗检表管理", businessType = BusinessType.UPDATE)
|
|
172
|
+ @PutMapping
|
|
173
|
+ public AjaxResult edit(@RequestBody PostChecked postChecked) {
|
|
174
|
+ return toAjax(postCheckedService.updatePostChecked(postChecked));
|
|
175
|
+ }
|
174
|
176
|
|
175
|
177
|
/**
|
176
|
178
|
* 删除岗检表管理
|