yangys
2024-05-09 60e317f7782c718d28920060fd686d2092c99c1e
smart-man-boot/src/main/java/com/qianwen/smartman/modules/notify/service/impl/BusinessNotifyStateServiceImpl.java
@@ -27,19 +27,19 @@
import com.qianwen.smartman.modules.sync.constant.DingConstant;
@Service
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/service/impl/BusinessNotifyStateServiceImpl.class */
public class BusinessNotifyStateServiceImpl extends BaseServiceImpl<BusinessNotifyStateMapper, BusinessNotifyState> implements IBusinessNotifyStateService {
    @Autowired
    private IEmployeeService employeeService;
    @Autowired
    private ICommonGroupService commonGroupService;
    @Override // org.springblade.modules.notify.service.IBusinessNotifyStateService
    public List<BusinessNotifyState> listByBusinessKey(String businessKey) {
        return listByBusinessKeyAndBusinessId(businessKey, null);
    }
    @Override // org.springblade.modules.notify.service.IBusinessNotifyStateService
    public BusinessNotifyStateVO getByBusinessKeyAndBusinessId(String businessKey, Long businessId) {
        List<BusinessNotifyState> states = listByBusinessKeyAndBusinessId(businessKey, businessId);
        return buildBusinessNotifyStateVO(states);
@@ -88,7 +88,7 @@
        }, businessId));*/
    }
    @Override // org.springblade.modules.notify.service.IBusinessNotifyStateService
    @Transactional(rollbackFor = {Exception.class})
    public void saveBatchByIds(String businessKey, Long businessId, List<Long> empIds, List<Long> orgIds) {
        deleteListByBusinessId(businessKey, businessId);