| | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/service/impl/NotifyDefaultPersonServiceImpl.class */ |
| | | |
| | | public class NotifyDefaultPersonServiceImpl extends BaseServiceImpl<NotifyDefaultPersonMapper, NotifyDefaultPerson> implements INotifyDefaultPersonService { |
| | | @Autowired |
| | | private IEmployeeService employeeService; |
| | | @Autowired |
| | | private ICommonGroupService commonGroupService; |
| | | |
| | | @Override // org.springblade.modules.notify.service.INotifyDefaultPersonService |
| | | |
| | | public NotifyDefaultObjectVO getByBusinessKey(String businessKey) { |
| | | NotifyDefaultObjectVO notifyDefaultObjectVO = new NotifyDefaultObjectVO(); |
| | | List<NotifyDefaultPerson> personList = getNotifyDefaultPerson(businessKey); |
| | |
| | | return notifyDefaultObjectVO; |
| | | } |
| | | |
| | | @Override // org.springblade.modules.notify.service.INotifyDefaultPersonService |
| | | |
| | | public void saveNotifyDefaultPerson(NotifyDefaultObjectVO notifyDefaultObjectVO) { |
| | | List<Long> empIds = notifyDefaultObjectVO.getEmpIds(); |
| | | List<Long> orgIds = notifyDefaultObjectVO.getOrgIds(); |