package com.klp.ems.service; import java.time.LocalDate; /** * 综合能源分摊调度/执行服务 */ public interface IEnergyAllocationService { /** * 根据日期+能源类型触发一次分摊,若 energyTypeId 为空则针对所有已配置能源类型。 */ void dispatch(LocalDate calcDate, Long energyTypeId, String allocationScope); /** * 将指定任务标记为需要重新计算并立即执行。 */ void rerunTask(Long taskId); }