2024-11-15 13:57:35 +08:00
|
|
|
package com.engine.salary.service;
|
|
|
|
|
|
2024-11-18 16:41:48 +08:00
|
|
|
import com.engine.salary.entity.push.dto.PushSettingDTO;
|
2024-11-15 13:57:35 +08:00
|
|
|
import com.engine.salary.entity.push.param.PushSettingItemSaveParam;
|
|
|
|
|
import com.engine.salary.entity.push.param.PushSettingSaveParam;
|
|
|
|
|
import com.engine.salary.entity.push.po.PushSettingItemPO;
|
|
|
|
|
import com.engine.salary.entity.push.po.PushSettingPO;
|
|
|
|
|
|
2024-11-18 16:41:48 +08:00
|
|
|
import java.util.List;
|
|
|
|
|
|
2024-11-15 13:57:35 +08:00
|
|
|
public interface PushService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 保存推送配置
|
|
|
|
|
* @param param
|
|
|
|
|
*/
|
|
|
|
|
PushSettingPO save(PushSettingSaveParam param);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 保存明细配置
|
|
|
|
|
* @param param
|
|
|
|
|
*/
|
|
|
|
|
PushSettingItemPO saveItem(PushSettingItemSaveParam param);
|
2024-11-18 16:41:48 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 推送一条核算记录下的所有数据
|
|
|
|
|
* @param salarySobId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
List<PushSettingDTO> pushOneRecord(Long salarySobId);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// void push(List<Long> recodes);
|
2024-11-15 13:57:35 +08:00
|
|
|
}
|