| | |
| | | public ResultData updateConfig(@RequestBody OrganizationChartEntity entity,@CurrentUser SysUser sysUser) |
| | | { |
| | | entity.setUpdateTime(LocalDateTime.now()); |
| | | entity.setUpdateUserId(Integer.parseInt(String.valueOf(sysUser.getUserId()))); |
| | | entity.setUpdateUserId(sysUser.getUserId()); |
| | | return toAjax(iOrganizationChartService.updateConfig(entity)); |
| | | } |
| | | |
| | |
| | | * 修改人 |
| | | */ |
| | | @ApiModelProperty("修改人") |
| | | private Integer updateUserId; |
| | | private Long updateUserId; |
| | | |
| | | /** |
| | | * 修改人 |
| | |
| | | @ApiModelProperty("部门所属区域") |
| | | private String departmentArea; |
| | | |
| | | /** |
| | | * 部门电话 |
| | | */ |
| | | @ApiModelProperty("部门电话") |
| | | private String contactNumber; |
| | | |
| | | /** |
| | | * 分类id |
| | | */ |
| | |
| | | SELECT |
| | | id, |
| | | department_id, |
| | | department_area, |
| | | (select detailed_address from automessage_organization_chart |
| | | where automessage_organization_chart.id=department_id) department_area, |
| | | (select contact_number from automessage_organization_chart where automessage_organization_chart.id=department_id) as contactNumber, |
| | | classify_id, |
| | | matter_name, |
| | | associate_ids, |