修改切換角色
This commit is contained in:
+4
-4
@@ -199,14 +199,14 @@ public class ProjectLawsInventoryEOController extends JeroController<ProjectLaws
|
||||
|
||||
/**
|
||||
* 批量更新法规清单状态
|
||||
* @param params
|
||||
* @param json
|
||||
* @return
|
||||
*/
|
||||
@AutoLog(value = "项目库-法规清单表-批量更新状态")
|
||||
@ApiOperation(value="项目库-法规清单表-批量更新状态", notes="项目库-法规清单表-批量更新状态")
|
||||
@GetMapping(value = "/updateStatusBatch")
|
||||
public Result<?> updateStatusBatch(@RequestParam Map<String,Object> params) {
|
||||
return this.projectLawsInventoryEOService.updateStatusBatch(params);
|
||||
@PostMapping(value = "/updateStatusBatch")
|
||||
public Result<?> updateStatusBatch(@RequestBody JSONObject json) {
|
||||
return this.projectLawsInventoryEOService.updateStatusBatch(json);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
+2
-2
@@ -70,10 +70,10 @@ public interface IProjectLawsInventoryEOService extends IService<ProjectLawsInve
|
||||
|
||||
/**
|
||||
* 批量更新状态
|
||||
* @param params
|
||||
* @param json
|
||||
* @return
|
||||
*/
|
||||
Result<?> updateStatusBatch(Map<String, Object> params);
|
||||
Result<?> updateStatusBatch(JSONObject json);
|
||||
|
||||
void sendMessage(String msgContent, List<String> userIdList,String projectLibraryId,Map<String,Object> params);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user